[test(auth)]: Add unit tests for useSignInUpForm hook (#9648)

Introduce unit tests to validate the behavior of the useSignInUpForm
hook. Tests cover default initialization, handling of developer
defaults, and prefilled values based on state.
This commit is contained in:
Antoine Moreaux
2025-01-15 18:07:06 +01:00
committed by GitHub
parent 585212b441
commit 266b771a5b

View File

@ -0,0 +1,68 @@
import { RecoilRoot, useSetRecoilState } from 'recoil';
import { renderHook } from '@testing-library/react';
import { useSignInUpForm } from '@/auth/sign-in-up/hooks/useSignInUpForm';
import { ReactNode } from 'react';
import { MemoryRouter } from 'react-router-dom';
import { isDeveloperDefaultSignInPrefilledState } from '@/client-config/states/isDeveloperDefaultSignInPrefilledState';
describe('useSignInUpForm', () => {
beforeEach(() => {
jest.clearAllMocks();
});
it('should initialize the form with default values', async () => {
const { result } = renderHook(() => useSignInUpForm(), {
wrapper: ({ children }: { children: ReactNode }) => (
<MemoryRouter>
<RecoilRoot>{children}</RecoilRoot>
</MemoryRouter>
),
});
expect(result.current.form).toBeDefined();
});
it('should not prefill sign-in developer defaults when state is false', () => {
const { result } = renderHook(() => useSignInUpForm(), {
wrapper: ({ children }: { children: ReactNode }) => (
<MemoryRouter initialEntries={['?email=test@test.com']}>
<RecoilRoot>{children}</RecoilRoot>
</MemoryRouter>
),
});
expect(result.current.form.getValues()).toEqual({
exist: false,
email: 'test@test.com',
password: '',
captchaToken: '',
});
});
it('should prefill developer defaults when the state is true', () => {
const { result } = renderHook(
() => {
const setIsDeveloperDefaultSignInPrefilledState = useSetRecoilState(
isDeveloperDefaultSignInPrefilledState,
);
setIsDeveloperDefaultSignInPrefilledState(true);
return useSignInUpForm();
},
{
wrapper: ({ children }: { children: ReactNode }) => (
<MemoryRouter initialEntries={['?email=test@test.com']}>
<RecoilRoot>{children}</RecoilRoot>
</MemoryRouter>
),
},
);
expect(result.current.form.getValues()).toEqual({
exist: false,
email: 'test@test.com',
password: 'Applecar2025',
captchaToken: '',
});
});
});