|
| 1 | +/** |
| 2 | + * @jest-environment jsdom |
| 3 | + */ |
| 4 | + |
| 5 | +import React from 'react' |
| 6 | +import { afterEach, beforeEach, describe, expect, jest, test } from '@jest/globals'; |
| 7 | +import { render, screen, waitFor } from '@testing-library/react'; |
| 8 | +import userEvent from '@testing-library/user-event' |
| 9 | +import '@testing-library/jest-dom/jest-globals' |
| 10 | +import 'jest-styled-components'; |
| 11 | +import { formatISO, getDate, getMonth, getYear, startOfDay, subYears } from 'date-fns'; |
| 12 | + |
| 13 | +import type { Config } from '../../../../src/types'; |
| 14 | + |
| 15 | +import { createForm } from '../../../../src/components/form/formComponent' |
| 16 | +import birthdayField from '../../../../src/components/form/fields/birthdayField' |
| 17 | +import { I18nMessages } from '../../../../src/core/i18n'; |
| 18 | +import { WidgetContext } from '../WidgetContext'; |
| 19 | + |
| 20 | +const defaultConfig: Config = { |
| 21 | + clientId: 'local', |
| 22 | + domain: 'local.reach5.net', |
| 23 | + sso: false, |
| 24 | + sms: false, |
| 25 | + webAuthn: false, |
| 26 | + language: 'fr', |
| 27 | + pkceEnforced: false, |
| 28 | + isPublic: true, |
| 29 | + socialProviders: ['facebook', 'google'], |
| 30 | + customFields: [], |
| 31 | + resourceBaseUrl: 'http://localhost', |
| 32 | + mfaSmsEnabled: false, |
| 33 | + mfaEmailEnabled: false, |
| 34 | + rbaEnabled: false, |
| 35 | + consentsVersions: {}, |
| 36 | + passwordPolicy: { |
| 37 | + minLength: 8, |
| 38 | + minStrength: 2, |
| 39 | + allowUpdateWithAccessTokenOnly: true, |
| 40 | + } |
| 41 | +}; |
| 42 | + |
| 43 | +const defaultI18n: I18nMessages = { |
| 44 | + date: 'Date', |
| 45 | + year: 'Année', |
| 46 | + month: 'Mois', |
| 47 | + day: 'Jour', |
| 48 | +} |
| 49 | + |
| 50 | +type Model = { date: string } |
| 51 | + |
| 52 | +describe('DOM testing', () => { |
| 53 | + |
| 54 | + beforeEach(() => { |
| 55 | + jest.useFakeTimers(); |
| 56 | + }) |
| 57 | + |
| 58 | + afterEach(() => { |
| 59 | + jest.runOnlyPendingTimers() |
| 60 | + jest.useRealTimers(); |
| 61 | + }); |
| 62 | + |
| 63 | + test('default settings', async () => { |
| 64 | + const user = userEvent.setup({ advanceTimers: jest.advanceTimersByTime }) |
| 65 | + |
| 66 | + const key = 'birthday' |
| 67 | + const label = 'birthday' |
| 68 | + |
| 69 | + const onFieldChange = jest.fn() |
| 70 | + const onSubmit = jest.fn<(data: Model) => Promise<Model>>(data => Promise.resolve(data)) |
| 71 | + |
| 72 | + const Form = createForm<Model>({ |
| 73 | + fields: [ |
| 74 | + birthdayField({ key, label }, defaultConfig) |
| 75 | + ], |
| 76 | + }) |
| 77 | + |
| 78 | + await waitFor(async () => { |
| 79 | + return render( |
| 80 | + <WidgetContext |
| 81 | + config={defaultConfig} |
| 82 | + defaultMessages={defaultI18n} |
| 83 | + > |
| 84 | + <Form |
| 85 | + fieldValidationDebounce={0} // trigger validation instantly |
| 86 | + onFieldChange={onFieldChange} |
| 87 | + handler={onSubmit} |
| 88 | + /> |
| 89 | + </WidgetContext> |
| 90 | + ) |
| 91 | + }) |
| 92 | + |
| 93 | + const yearInput = screen.getByTestId('birthday.year') |
| 94 | + const monthInput = screen.getByTestId('birthday.month') |
| 95 | + const dayInput = screen.getByTestId('birthday.day') |
| 96 | + |
| 97 | + const fiveYearsOld = subYears(new Date(), 5) |
| 98 | + await user.clear(yearInput) |
| 99 | + await user.type(yearInput, String(getYear(fiveYearsOld))) |
| 100 | + |
| 101 | + // Fast-forward until all timers have been executed (handle year debounced value) |
| 102 | + await jest.runOnlyPendingTimersAsync(); |
| 103 | + |
| 104 | + await user.selectOptions(monthInput, String(getMonth(fiveYearsOld))) |
| 105 | + await user.selectOptions(dayInput, String(getDate(fiveYearsOld))) |
| 106 | + |
| 107 | + await waitFor(() => expect(onFieldChange).toHaveBeenLastCalledWith( |
| 108 | + expect.objectContaining({ |
| 109 | + birthday: expect.objectContaining({ |
| 110 | + isDirty: true, |
| 111 | + value: startOfDay(fiveYearsOld), |
| 112 | + validation: { |
| 113 | + valid: false, |
| 114 | + error: "validation.birthdate.yearLimit" |
| 115 | + } |
| 116 | + }) |
| 117 | + }) |
| 118 | + )) |
| 119 | + |
| 120 | + const eighteenYearsOld = subYears(new Date(), 18) |
| 121 | + await user.clear(yearInput) |
| 122 | + await user.type(yearInput, String(getYear(eighteenYearsOld))) |
| 123 | + |
| 124 | + // Fast-forward until all timers have been executed (handle year debounced value) |
| 125 | + await jest.runOnlyPendingTimersAsync(); |
| 126 | + |
| 127 | + await user.selectOptions(monthInput, String(getMonth(eighteenYearsOld))) |
| 128 | + await user.selectOptions(dayInput, String(getDate(eighteenYearsOld))) |
| 129 | + |
| 130 | + await waitFor(() => expect(onFieldChange).toHaveBeenLastCalledWith( |
| 131 | + expect.objectContaining({ |
| 132 | + birthday: expect.objectContaining({ |
| 133 | + isDirty: true, |
| 134 | + value: startOfDay(eighteenYearsOld), |
| 135 | + }) |
| 136 | + }) |
| 137 | + )) |
| 138 | + |
| 139 | + const submitBtn = screen.getByRole('button') |
| 140 | + await user.click(submitBtn) |
| 141 | + |
| 142 | + await waitFor(() => expect(onSubmit).toHaveBeenCalled()) |
| 143 | + |
| 144 | + expect(onSubmit).toBeCalledWith( |
| 145 | + expect.objectContaining({ |
| 146 | + birthday: formatISO(eighteenYearsOld, { representation: 'date' }) // value is formatted in handler data |
| 147 | + }) |
| 148 | + ) |
| 149 | + }) |
| 150 | +}) |
0 commit comments