Add tenant admin account edit page
This commit is contained in:
141
resources/js/admin/mobile/__tests__/ProfileAccountPage.test.tsx
Normal file
141
resources/js/admin/mobile/__tests__/ProfileAccountPage.test.tsx
Normal file
@@ -0,0 +1,141 @@
|
||||
import React from 'react';
|
||||
import { describe, expect, it, vi } from 'vitest';
|
||||
import { act, fireEvent, render, screen, waitFor } from '@testing-library/react';
|
||||
|
||||
const backMock = vi.fn();
|
||||
|
||||
vi.mock('../hooks/useBackNavigation', () => ({
|
||||
useBackNavigation: () => backMock,
|
||||
}));
|
||||
|
||||
vi.mock('../../api', () => ({
|
||||
fetchTenantProfile: vi.fn(),
|
||||
updateTenantProfile: vi.fn(),
|
||||
}));
|
||||
|
||||
vi.mock('react-hot-toast', () => ({
|
||||
default: {
|
||||
error: vi.fn(),
|
||||
success: vi.fn(),
|
||||
},
|
||||
}));
|
||||
|
||||
vi.mock('../components/MobileShell', () => ({
|
||||
MobileShell: ({ children }: { children: React.ReactNode }) => <div>{children}</div>,
|
||||
}));
|
||||
|
||||
vi.mock('../components/Primitives', () => ({
|
||||
MobileCard: ({ children }: { children: React.ReactNode }) => <div>{children}</div>,
|
||||
PillBadge: ({ children }: { children: React.ReactNode }) => <div>{children}</div>,
|
||||
CTAButton: ({
|
||||
label,
|
||||
onPress,
|
||||
disabled,
|
||||
}: {
|
||||
label: string;
|
||||
onPress?: () => void;
|
||||
disabled?: boolean;
|
||||
}) => (
|
||||
<button type="button" onClick={disabled ? undefined : onPress} disabled={disabled}>
|
||||
{label}
|
||||
</button>
|
||||
),
|
||||
}));
|
||||
|
||||
vi.mock('../components/FormControls', () => ({
|
||||
MobileField: ({ children }: { children: React.ReactNode }) => <div>{children}</div>,
|
||||
MobileInput: ({ hasError, compact, ...props }: React.InputHTMLAttributes<HTMLInputElement> & { hasError?: boolean; compact?: boolean }) => (
|
||||
<input {...props} />
|
||||
),
|
||||
MobileSelect: ({ children, ...props }: { children: React.ReactNode }) => <select {...props}>{children}</select>,
|
||||
}));
|
||||
|
||||
vi.mock('@tamagui/stacks', () => ({
|
||||
YStack: ({ children }: { children: React.ReactNode }) => <div>{children}</div>,
|
||||
XStack: ({ children }: { children: React.ReactNode }) => <div>{children}</div>,
|
||||
}));
|
||||
|
||||
vi.mock('@tamagui/text', () => ({
|
||||
SizableText: ({ children }: { children: React.ReactNode }) => <span>{children}</span>,
|
||||
}));
|
||||
|
||||
vi.mock('../theme', () => ({
|
||||
useAdminTheme: () => ({
|
||||
text: '#111827',
|
||||
muted: '#6b7280',
|
||||
subtle: '#94a3b8',
|
||||
danger: '#b91c1c',
|
||||
border: '#e5e7eb',
|
||||
surface: '#ffffff',
|
||||
primary: '#ff5a5f',
|
||||
accentSoft: '#fde7ea',
|
||||
}),
|
||||
}));
|
||||
|
||||
import { fetchTenantProfile, updateTenantProfile } from '../../api';
|
||||
import MobileProfileAccountPage from '../ProfileAccountPage';
|
||||
|
||||
const profileFixture = {
|
||||
id: 1,
|
||||
name: 'Test Admin',
|
||||
email: 'admin@example.com',
|
||||
preferred_locale: null,
|
||||
email_verified: true,
|
||||
email_verified_at: '2024-01-02T00:00:00.000Z',
|
||||
};
|
||||
|
||||
describe('MobileProfileAccountPage', () => {
|
||||
it('submits account updates with name, email, and locale', async () => {
|
||||
vi.mocked(fetchTenantProfile).mockResolvedValue(profileFixture);
|
||||
vi.mocked(updateTenantProfile).mockResolvedValue(profileFixture);
|
||||
|
||||
await act(async () => {
|
||||
render(<MobileProfileAccountPage />);
|
||||
});
|
||||
await screen.findByDisplayValue('Test Admin');
|
||||
|
||||
await act(async () => {
|
||||
fireEvent.click(screen.getByText('profile.actions.save'));
|
||||
});
|
||||
|
||||
expect(updateTenantProfile).toHaveBeenCalledWith({
|
||||
name: 'Test Admin',
|
||||
email: 'admin@example.com',
|
||||
preferred_locale: null,
|
||||
});
|
||||
});
|
||||
|
||||
it('submits password updates when all password fields are provided', async () => {
|
||||
vi.mocked(fetchTenantProfile).mockResolvedValue(profileFixture);
|
||||
vi.mocked(updateTenantProfile).mockResolvedValue(profileFixture);
|
||||
|
||||
await act(async () => {
|
||||
render(<MobileProfileAccountPage />);
|
||||
});
|
||||
await screen.findByDisplayValue('Test Admin');
|
||||
|
||||
const passwordInputs = screen.getAllByPlaceholderText('••••••••');
|
||||
await act(async () => {
|
||||
fireEvent.change(passwordInputs[0], { target: { value: 'old-pass' } });
|
||||
fireEvent.change(passwordInputs[1], { target: { value: 'new-pass-123' } });
|
||||
fireEvent.change(passwordInputs[2], { target: { value: 'new-pass-123' } });
|
||||
});
|
||||
|
||||
await waitFor(() => {
|
||||
expect(screen.getByText('profile.actions.updatePassword')).not.toBeDisabled();
|
||||
});
|
||||
|
||||
await act(async () => {
|
||||
fireEvent.click(screen.getByText('profile.actions.updatePassword'));
|
||||
});
|
||||
|
||||
expect(updateTenantProfile).toHaveBeenCalledWith({
|
||||
name: 'Test Admin',
|
||||
email: 'admin@example.com',
|
||||
preferred_locale: null,
|
||||
current_password: 'old-pass',
|
||||
password: 'new-pass-123',
|
||||
password_confirmation: 'new-pass-123',
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user