-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.test.tsx
505 lines (468 loc) · 19 KB
/
index.test.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
import { axe } from 'jest-axe';
import {
expectToCreateYouthApplication,
expectToGetSchoolsErrorFromBackend,
expectToGetSchoolsFromBackend,
expectToReplyErrorWhenCreatingYouthApplication,
expectToReplyValidationErrorWhenCreatingYouthApplication,
} from 'kesaseteli/youth/__tests__/utils/backend/backend-nocks';
import getIndexPageApi from 'kesaseteli/youth/__tests__/utils/components/get-index-page-api';
import renderPage from 'kesaseteli/youth/__tests__/utils/components/render-page';
import { REDIRECT_ERROR_TYPES } from 'kesaseteli/youth/components/constants/creation-error-types';
import YouthIndex from 'kesaseteli/youth/pages';
import headerApi from 'kesaseteli-shared/__tests__/utils/component-apis/header-api';
import renderComponent from 'kesaseteli-shared/__tests__/utils/components/render-component';
import { fakeBackendValidationErrorResponse } from 'kesaseteli-shared/__tests__/utils/fake-objects';
import YOUTH_FORM_FIELDS from 'kesaseteli-shared/constants/youth-form-fields';
import YouthFormFields from 'kesaseteli-shared/types/youth-form-fields';
import { collectErrorFieldsFromResponse } from 'kesaseteli-shared/utils/youth-form-data.utils';
import React from 'react';
import { waitFor } from 'shared/__tests__/utils/test-utils';
import { DEFAULT_LANGUAGE, Language } from 'shared/i18n/i18n';
import { difference } from 'shared/utils/array.utils';
describe('frontend/kesaseteli/youth/src/pages/index.tsx', () => {
it('should not violate accessibility', async () => {
expectToGetSchoolsFromBackend();
const {
renderResult: { container },
} = renderComponent(<YouthIndex />);
const results = await axe(container);
expect(results).toHaveNoViolations();
});
it('loads school list from backend', async () => {
const loadSchools = expectToGetSchoolsFromBackend();
renderPage(YouthIndex);
await waitFor(() => {
loadSchools.done();
});
});
it('shows error toast if loading school list from backend fails', async () => {
const loadSchools = expectToGetSchoolsErrorFromBackend(404);
renderPage(YouthIndex);
await waitFor(() => {
loadSchools.done();
});
await headerApi.expectations.errorToastIsShown();
});
describe('validating application', () => {
it('shows required validation errors', async () => {
expectToGetSchoolsFromBackend();
renderPage(YouthIndex);
const indexPageApi = getIndexPageApi();
await indexPageApi.expectations.pageIsLoaded();
await indexPageApi.actions.clickSaveButton();
await indexPageApi.expectations.textInputHasError(
'first_name',
'required'
);
await indexPageApi.expectations.textInputHasError(
'last_name',
'required'
);
await indexPageApi.expectations.textInputHasError(
'social_security_number',
'required'
);
await indexPageApi.expectations.selectedSchoolHasError('required');
await indexPageApi.expectations.textInputHasError('email', 'required');
await indexPageApi.expectations.textInputHasError(
'phone_number',
'required'
);
await indexPageApi.expectations.checkboxHasError(
'termsAndConditions',
'required'
);
});
it('shows min length too short validation errors', async () => {
expectToGetSchoolsFromBackend();
renderPage(YouthIndex);
const indexPageApi = getIndexPageApi();
await indexPageApi.expectations.pageIsLoaded();
await indexPageApi.actions.typeInput('postcode', '0123'); // min limit is 5
await indexPageApi.actions.clickSaveButton();
await indexPageApi.expectations.textInputHasError(
'postcode',
'minLength'
);
});
it('shows max length exceeded validation errors', async () => {
expectToGetSchoolsFromBackend();
renderPage(YouthIndex);
const indexPageApi = getIndexPageApi();
await indexPageApi.expectations.pageIsLoaded();
await indexPageApi.actions.typeInput('first_name', 'a'.repeat(129)); // max limit is 128
await indexPageApi.actions.typeInput('last_name', 'a'.repeat(129)); // max limit is 128
await indexPageApi.actions.typeInput('postcode', '123456'); // max limit is 5
await indexPageApi.actions.typeInput('phone_number', 'a'.repeat(65)); // max limit is 254
await indexPageApi.actions.typeInput('email', 'a'.repeat(255)); // max limit is 254
await indexPageApi.actions.clickSaveButton();
await indexPageApi.expectations.textInputHasError(
'first_name',
'maxLength'
);
await indexPageApi.expectations.textInputHasError(
'last_name',
'maxLength'
);
await indexPageApi.expectations.textInputHasError(
'postcode',
'maxLength'
);
await indexPageApi.expectations.textInputHasError(
'phone_number',
'maxLength'
);
await indexPageApi.expectations.textInputHasError('email', 'maxLength');
});
it('shows invalid format errors', async () => {
expectToGetSchoolsFromBackend();
renderPage(YouthIndex);
const indexPageApi = getIndexPageApi();
await indexPageApi.expectations.pageIsLoaded();
await indexPageApi.actions.typeInput('first_name', ' leading whitespace');
await indexPageApi.actions.typeInput('last_name', '\tleading whitespace');
// Note! 170915-915L is a fake ssn. See more info (in finnish only):
// https://www.tuomas.salste.net/doc/tunnus/henkilotunnus.html#keinotunnus
await indexPageApi.actions.typeInput(
'social_security_number',
'170915-915L'
);
await indexPageApi.actions.typeInput('postcode', 'abcde');
await indexPageApi.actions.typeInput('phone_number', '+44-20-7011-5555');
await indexPageApi.actions.typeInput('email', 'aaaa@bbb');
await indexPageApi.actions.clickSaveButton();
await indexPageApi.expectations.textInputHasError(
'first_name',
'pattern'
);
await indexPageApi.expectations.textInputHasError('last_name', 'pattern');
await indexPageApi.expectations.textInputHasError('postcode', 'pattern');
await indexPageApi.expectations.textInputHasError(
'social_security_number',
'pattern'
);
await indexPageApi.expectations.textInputHasError(
'phone_number',
'pattern'
);
await indexPageApi.expectations.textInputHasError('email', 'pattern');
});
it('shows error messages for unlisted school', async () => {
expectToGetSchoolsFromBackend();
renderPage(YouthIndex);
const indexPageApi = getIndexPageApi();
await indexPageApi.expectations.pageIsLoaded();
await indexPageApi.expectations.inputIsNotPresent('unlistedSchool');
await indexPageApi.actions.clickSaveButton();
await indexPageApi.expectations.selectedSchoolHasError('required');
await indexPageApi.actions.toggleCheckbox('is_unlisted_school');
await indexPageApi.expectations.selectedSchoolIsDisabled();
await indexPageApi.expectations.selectedSchoolIsValid();
await indexPageApi.expectations.inputIsPresent('unlistedSchool');
await indexPageApi.actions.clickSaveButton();
await indexPageApi.expectations.textInputHasError(
'unlistedSchool',
'required'
);
await indexPageApi.actions.typeInput('unlistedSchool', 'a'.repeat(257)); // max limit is 257
await indexPageApi.expectations.textInputHasError(
'unlistedSchool',
'maxLength'
);
await indexPageApi.actions.typeInput('unlistedSchool', ' ');
await indexPageApi.expectations.textInputHasError(
'unlistedSchool',
'pattern'
);
await indexPageApi.actions.toggleCheckbox('is_unlisted_school');
await indexPageApi.expectations.selectedSchoolIsEnabled();
await indexPageApi.actions.clickSaveButton();
await indexPageApi.expectations.selectedSchoolHasError('required');
await indexPageApi.expectations.inputIsNotPresent('unlistedSchool');
});
});
describe('when valid application', () => {
it('saves the application with listed school', async () => {
expectToGetSchoolsFromBackend();
const spyPush = jest.fn();
renderPage(YouthIndex, { push: spyPush });
const indexPageApi = getIndexPageApi();
await indexPageApi.expectations.pageIsLoaded();
await indexPageApi.actions.fillTheFormWithListedSchoolAndSave({
backendExpectation: expectToCreateYouthApplication,
});
await waitFor(() =>
expect(spyPush).toHaveBeenCalledWith(
`${DEFAULT_LANGUAGE}/thankyou`,
undefined,
{ shallow: false }
)
);
});
it('saves the application with unlisted school', async () => {
expectToGetSchoolsFromBackend();
const spyPush = jest.fn();
renderPage(YouthIndex, { push: spyPush });
const indexPageApi = getIndexPageApi();
await indexPageApi.expectations.pageIsLoaded();
await indexPageApi.actions.fillTheFormWithUnlistedSchoolAndSave({
backendExpectation: expectToCreateYouthApplication,
});
await waitFor(() =>
expect(spyPush).toHaveBeenCalledWith(
`${DEFAULT_LANGUAGE}/thankyou`,
undefined,
{ shallow: false }
)
);
});
it('saves the application with application language and redirects to thank you page', async () => {
expectToGetSchoolsFromBackend();
const language: Language = 'sv';
const spyPush = jest.fn();
renderPage(YouthIndex, { locale: language, push: spyPush });
const indexPageApi = getIndexPageApi();
await indexPageApi.expectations.pageIsLoaded();
await indexPageApi.actions.fillTheFormWithListedSchoolAndSave({
language,
backendExpectation: expectToCreateYouthApplication,
});
await waitFor(() =>
expect(spyPush).toHaveBeenCalledWith(
`${language}/thankyou`,
undefined,
{ shallow: false }
)
);
});
it('shows error toaster when backend gives unknown bad request -error', async () => {
expectToGetSchoolsFromBackend();
renderPage(YouthIndex);
const indexPageApi = getIndexPageApi();
await indexPageApi.expectations.pageIsLoaded();
await indexPageApi.actions.fillTheFormWithListedSchoolAndSave({
backendExpectation: expectToReplyErrorWhenCreatingYouthApplication(400),
});
await headerApi.expectations.errorToastIsShown();
});
it('redirects to error page when backend gives internal server error', async () => {
expectToGetSchoolsFromBackend();
const spyPush = jest.fn();
renderPage(YouthIndex, { push: spyPush });
const indexPageApi = getIndexPageApi();
await indexPageApi.expectations.pageIsLoaded();
await indexPageApi.actions.fillTheFormWithListedSchoolAndSave({
backendExpectation: expectToReplyErrorWhenCreatingYouthApplication(500),
});
await waitFor(() =>
expect(spyPush).toHaveBeenCalledWith(
`${DEFAULT_LANGUAGE}/500`,
undefined,
{ shallow: false }
)
);
});
for (const errorType of REDIRECT_ERROR_TYPES) {
it(`redirects to ${errorType} error page when backend returns respective bad request type`, async () => {
expectToGetSchoolsFromBackend();
const spyPush = jest.fn();
renderPage(YouthIndex, { push: spyPush });
const indexPageApi = getIndexPageApi();
await indexPageApi.expectations.pageIsLoaded();
await indexPageApi.actions.fillTheFormWithListedSchoolAndSave({
backendExpectation: expectToReplyErrorWhenCreatingYouthApplication(
400,
errorType
),
});
await waitFor(() =>
expect(spyPush).toHaveBeenCalledWith(
`${DEFAULT_LANGUAGE}/${errorType}`
)
);
});
}
});
describe('when recheck error', () => {
it(`shows 'please recheck' summary and 'send it anyway' -link when backend returns 'please_recheck_data'-error`, async () => {
expectToGetSchoolsFromBackend();
const spyPush = jest.fn();
renderPage(YouthIndex, { push: spyPush });
const indexPageApi = getIndexPageApi();
await indexPageApi.expectations.pageIsLoaded();
await indexPageApi.actions.fillTheFormWithListedSchoolAndSave({
backendExpectation: expectToReplyErrorWhenCreatingYouthApplication(
400,
'please_recheck_data'
),
});
await indexPageApi.expectations.pleaseRecheckNotificationIsPresent();
await indexPageApi.expectations.forceSubmitLinkIsPresent();
});
it(`hides 'send it anyway' -link when user changes form value`, async () => {
expectToGetSchoolsFromBackend();
const spyPush = jest.fn();
renderPage(YouthIndex, { push: spyPush });
const indexPageApi = getIndexPageApi();
await indexPageApi.expectations.pageIsLoaded();
await indexPageApi.actions.fillTheFormWithListedSchoolAndSave({
backendExpectation: expectToReplyErrorWhenCreatingYouthApplication(
400,
'please_recheck_data'
),
});
await indexPageApi.expectations.forceSubmitLinkIsPresent();
await indexPageApi.actions.typeInput('email', 'other@mail.com');
indexPageApi.expectations.forceSubmitLinkIsNotPresent();
});
describe('when clicking force submit link', () => {
it('saves the application with request_additional_information and redirects to thank you page', async () => {
expectToGetSchoolsFromBackend();
const language: Language = 'sv';
const spyPush = jest.fn();
renderPage(YouthIndex, { locale: language, push: spyPush });
const indexPageApi = getIndexPageApi();
await indexPageApi.expectations.pageIsLoaded();
await indexPageApi.actions.fillTheFormWithListedSchoolAndSave({
language,
backendExpectation: expectToReplyErrorWhenCreatingYouthApplication(
400,
'please_recheck_data'
),
});
await indexPageApi.actions.clickForceSubmitLink({
language,
backendExpectation: expectToCreateYouthApplication,
});
await waitFor(() =>
expect(spyPush).toHaveBeenCalledWith(
`${language}/thankyou`,
undefined,
{ shallow: false }
)
);
});
it('shows error toaster when backend gives unknown bad request -error', async () => {
expectToGetSchoolsFromBackend();
renderPage(YouthIndex);
const indexPageApi = getIndexPageApi();
await indexPageApi.expectations.pageIsLoaded();
await indexPageApi.actions.fillTheFormWithListedSchoolAndSave({
backendExpectation: expectToReplyErrorWhenCreatingYouthApplication(
400,
'please_recheck_data'
),
});
await indexPageApi.actions.clickForceSubmitLink({
backendExpectation:
expectToReplyErrorWhenCreatingYouthApplication(400),
});
await headerApi.expectations.errorToastIsShown();
});
it('redirects to error page when backend gives internal server error', async () => {
expectToGetSchoolsFromBackend();
const spyPush = jest.fn();
renderPage(YouthIndex, { push: spyPush });
const indexPageApi = getIndexPageApi();
await indexPageApi.expectations.pageIsLoaded();
await indexPageApi.actions.fillTheFormWithListedSchoolAndSave({
backendExpectation: expectToReplyErrorWhenCreatingYouthApplication(
400,
'please_recheck_data'
),
});
await indexPageApi.actions.clickForceSubmitLink({
backendExpectation:
expectToReplyErrorWhenCreatingYouthApplication(500),
});
await waitFor(() =>
expect(spyPush).toHaveBeenCalledWith(
`${DEFAULT_LANGUAGE}/500`,
undefined,
{ shallow: false }
)
);
});
for (const errorType of REDIRECT_ERROR_TYPES) {
it(`redirects to ${errorType} error page when backend returns respective bad request type`, async () => {
expectToGetSchoolsFromBackend();
const spyPush = jest.fn();
renderPage(YouthIndex, { push: spyPush });
const indexPageApi = getIndexPageApi();
await indexPageApi.expectations.pageIsLoaded();
await indexPageApi.actions.fillTheFormWithListedSchoolAndSave({
backendExpectation: expectToReplyErrorWhenCreatingYouthApplication(
400,
'please_recheck_data'
),
});
await indexPageApi.actions.clickForceSubmitLink({
backendExpectation: expectToReplyErrorWhenCreatingYouthApplication(
400,
errorType
),
});
await waitFor(() =>
expect(spyPush).toHaveBeenCalledWith(
`${DEFAULT_LANGUAGE}/${errorType}`
)
);
});
}
});
});
describe('when backend returns validation error', () => {
it('shows validation error notification and invalid field names (with listed school)', async () => {
expectToGetSchoolsFromBackend();
renderPage(YouthIndex);
const indexPageApi = getIndexPageApi();
await indexPageApi.expectations.pageIsLoaded();
const randomValidationError = fakeBackendValidationErrorResponse();
const invalidFields = collectErrorFieldsFromResponse(
randomValidationError,
false
);
// eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion
const validFields = difference(YOUTH_FORM_FIELDS, [
...invalidFields,
'unlistedSchool',
]) as YouthFormFields[];
await indexPageApi.actions.fillTheFormWithListedSchoolAndSave({
backendExpectation:
expectToReplyValidationErrorWhenCreatingYouthApplication(
randomValidationError
),
});
await indexPageApi.expectations.validationErrorNotificationIsPresent(
invalidFields
);
for (const field of invalidFields) {
await indexPageApi.expectations.textInputHasError(field, 'pattern');
}
for (const field of validFields) {
await indexPageApi.expectations.textInputIsValid(field);
}
});
it('shows invalid unlisted school field when unlistedSchool in the error repsonse', async () => {
expectToGetSchoolsFromBackend();
renderPage(YouthIndex);
const indexPageApi = getIndexPageApi();
await indexPageApi.expectations.pageIsLoaded();
const unlistedSchoolValidationError = { unlistedSchool: ['is invalid'] };
await indexPageApi.actions.fillTheFormWithUnlistedSchoolAndSave({
backendExpectation:
expectToReplyValidationErrorWhenCreatingYouthApplication(
unlistedSchoolValidationError
),
});
await indexPageApi.expectations.validationErrorNotificationIsPresent([
'unlistedSchool',
]);
await indexPageApi.expectations.textInputHasError(
'unlistedSchool',
'pattern'
);
});
});
});