-
-
Notifications
You must be signed in to change notification settings - Fork 268
Expand file tree
/
Copy pathjoin.spec.ts
More file actions
490 lines (406 loc) · 19.4 KB
/
join.spec.ts
File metadata and controls
490 lines (406 loc) · 19.4 KB
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
import { test, expect, type Page } from '@playwright/test';
import existingUser from '../test-utils/mocks/existingUser';
import { mockUser } from '../test-utils/mockGenerators/mockUser';
import { validationErrorMessages } from '../common/constants/messages';
import {
SUCCESS_PAGE_MESSAGE,
REGISTRATION_FORM_INITIAL_SUBMIT_BUTTON,
MULTI_STEP_STEP_BUTTON,
MULTI_STEP_SUBMIT_BUTTON,
MULTI_STEP_PREVIOUS_BUTTON,
} from '../common/constants/testIDs';
const getValidUser = () => mockUser();
const getInput = (page: Page, fieldName: string) => page.locator(`input[name="${fieldName}"]`);
const getCheckbox = (page: Page, regex: RegExp) => page.getByLabel(regex);
const assertError = async (
page: Page,
{
numberOfErrors = 1,
errorMessage = validationErrorMessages.required,
}: { numberOfErrors?: number; errorMessage?: string } = {},
) => {
const alerts = page.locator('#__next').getByRole('alert');
await expect(alerts).toHaveCount(numberOfErrors);
await expect(alerts.first()).toContainText(errorMessage);
};
const assertFailedLogin = async (
page: Page,
{
numberOfErrors = 1,
errorMessage = validationErrorMessages.required,
}: { numberOfErrors?: number; errorMessage?: string } = {},
) => {
await page.getByTestId(REGISTRATION_FORM_INITIAL_SUBMIT_BUTTON).click();
await expect(page).toHaveURL(/\/join/);
await assertError(page, { numberOfErrors, errorMessage });
const cookies = await page.context().cookies();
expect(cookies).toHaveLength(0);
};
test.describe('join', () => {
test.beforeEach(async ({ page }) => {
await page.goto('/join');
const cookies = await page.context().cookies();
expect(cookies).toHaveLength(0);
await expect(page.locator('h1')).toHaveText('Join');
});
/**
* Test Invalid Entries
*/
/**
* E-mail & ConfrimEmail fields
*/
test('should NOT be able to register when blurring past email', async ({ page }) => {
const validUser = getValidUser();
await getInput(page, 'email').focus();
await getInput(page, 'email').blur();
await assertError(page);
await getInput(page, 'confirm-email').fill(validUser.email);
await getInput(page, 'firstName').fill(validUser.firstName);
await getInput(page, 'lastName').fill(validUser.lastName);
await getInput(page, 'zipcode').fill(String(validUser.zipcode));
await getCheckbox(page, /Code of Conduct/).check();
await getCheckbox(page, /Slack Community Guidelines/).check();
await assertFailedLogin(page, { numberOfErrors: 2 });
});
test('should NOT be able to register when email contains only spaces', async ({ page }) => {
const validUser = getValidUser();
await getInput(page, 'email').fill(' ');
await getInput(page, 'email').blur();
await assertError(page);
await getInput(page, 'confirm-email').fill(validUser.email);
await getInput(page, 'firstName').fill(validUser.firstName);
await getInput(page, 'lastName').fill(validUser.lastName);
await getInput(page, 'zipcode').fill(String(validUser.zipcode));
await getCheckbox(page, /Code of Conduct/).check();
await getCheckbox(page, /Slack Community Guidelines/).check();
await assertFailedLogin(page, { numberOfErrors: 2 });
});
test('should NOT be able to register with an invalid email', async ({ page }) => {
const invalidUser = mockUser('invalidemail@.com');
await getInput(page, 'email').fill(invalidUser.email);
await getInput(page, 'email').blur();
await assertError(page, { errorMessage: validationErrorMessages.email });
await getInput(page, 'confirm-email').fill(invalidUser.email);
await getInput(page, 'firstName').fill(invalidUser.firstName);
await getInput(page, 'lastName').fill(invalidUser.lastName);
await getInput(page, 'zipcode').fill(String(invalidUser.zipcode));
await getCheckbox(page, /Code of Conduct/).check();
await getCheckbox(page, /Slack Community Guidelines/).check();
await assertFailedLogin(page, { errorMessage: validationErrorMessages.email });
});
test('should NOT be able to register when blurring past confirmEmail', async ({ page }) => {
const validUser = getValidUser();
await getInput(page, 'email').fill(validUser.email);
await getInput(page, 'confirm-email').focus();
await getInput(page, 'confirm-email').blur();
await assertError(page);
await getInput(page, 'firstName').fill(validUser.firstName);
await getInput(page, 'lastName').fill(validUser.lastName);
await getInput(page, 'zipcode').fill(String(validUser.zipcode));
await getCheckbox(page, /Code of Conduct/).check();
await getCheckbox(page, /Slack Community Guidelines/).check();
await assertFailedLogin(page);
});
test('should NOT be able to register when emails do not match', async ({ page }) => {
const validUser = getValidUser();
await getInput(page, 'email').fill(validUser.email);
await getInput(page, 'confirm-email').fill(existingUser.email);
await getInput(page, 'firstName').fill(validUser.firstName);
await assertError(page, { errorMessage: validationErrorMessages.emailsMatch });
await getInput(page, 'lastName').fill(validUser.lastName);
await getInput(page, 'zipcode').fill(String(validUser.zipcode));
await getCheckbox(page, /Code of Conduct/).check();
await getCheckbox(page, /Slack Community Guidelines/).check();
await assertFailedLogin(page, { errorMessage: validationErrorMessages.emailsMatch });
});
test('should NOT be able to register with an existing email', async ({ page }) => {
await getInput(page, 'email').fill(existingUser.email);
await getInput(page, 'confirm-email').fill(existingUser.email);
await getInput(page, 'firstName').fill(existingUser.firstName);
await getInput(page, 'lastName').fill(existingUser.lastName);
await getInput(page, 'zipcode').fill(String(existingUser.zipcode));
await getCheckbox(page, /Code of Conduct/).check();
await getCheckbox(page, /Slack Community Guidelines/).check();
await assertFailedLogin(page, { errorMessage: validationErrorMessages.emailExists });
});
/**
* FirstName & LastName Fields
*/
test('should NOT be able to register when blurring past firstName', async ({ page }) => {
const validUser = getValidUser();
await getInput(page, 'email').fill(validUser.email);
await getInput(page, 'confirm-email').fill(validUser.email);
await getInput(page, 'firstName').focus();
await getInput(page, 'firstName').blur();
await assertError(page);
await getInput(page, 'lastName').fill(validUser.lastName);
await getInput(page, 'zipcode').fill(String(validUser.zipcode));
await getCheckbox(page, /Code of Conduct/).check();
await getCheckbox(page, /Slack Community Guidelines/).check();
await assertFailedLogin(page);
});
test('should NOT be able to register when firstName contains only spaces', async ({ page }) => {
const validUser = getValidUser();
await getInput(page, 'email').fill(validUser.email);
await getInput(page, 'confirm-email').fill(validUser.email);
await getInput(page, 'firstName').fill(' ');
await getInput(page, 'firstName').blur();
await assertError(page);
await getInput(page, 'lastName').fill(validUser.lastName);
await getInput(page, 'zipcode').fill(String(validUser.zipcode));
await getCheckbox(page, /Code of Conduct/).check();
await getCheckbox(page, /Slack Community Guidelines/).check();
await assertFailedLogin(page);
});
test('should NOT be able to register when blurring past lastName', async ({ page }) => {
const validUser = getValidUser();
await getInput(page, 'email').fill(validUser.email);
await getInput(page, 'confirm-email').fill(validUser.email);
await getInput(page, 'firstName').fill(validUser.firstName);
await getInput(page, 'lastName').focus();
await getInput(page, 'lastName').blur();
await assertError(page);
await getInput(page, 'zipcode').fill(String(validUser.zipcode));
await getCheckbox(page, /Code of Conduct/).check();
await getCheckbox(page, /Slack Community Guidelines/).check();
await assertFailedLogin(page);
});
test('should NOT be able to register when lastName contains only spaces', async ({ page }) => {
const validUser = getValidUser();
await getInput(page, 'email').fill(validUser.email);
await getInput(page, 'confirm-email').fill(validUser.email);
await getInput(page, 'firstName').fill(validUser.firstName);
await getInput(page, 'lastName').fill(' ');
await getInput(page, 'lastName').blur();
await assertError(page);
await getInput(page, 'zipcode').fill(String(validUser.zipcode));
await getCheckbox(page, /Code of Conduct/).check();
await getCheckbox(page, /Slack Community Guidelines/).check();
await assertFailedLogin(page);
});
/**
* Zipcode field
*/
test('should NOT be able to register when blurring past zipcode', async ({ page }) => {
const validUser = getValidUser();
await getInput(page, 'email').fill(validUser.email);
await getInput(page, 'confirm-email').fill(validUser.email);
await getInput(page, 'firstName').fill(validUser.firstName);
await getInput(page, 'lastName').fill(validUser.lastName);
await getInput(page, 'zipcode').focus();
await getInput(page, 'zipcode').blur();
await assertError(page);
await getCheckbox(page, /Code of Conduct/).check();
await getCheckbox(page, /Slack Community Guidelines/).check();
await assertFailedLogin(page);
});
test('should NOT be able to register when zipcode contains only spaces', async ({ page }) => {
const validUser = getValidUser();
await getInput(page, 'email').fill(validUser.email);
await getInput(page, 'confirm-email').fill(validUser.email);
await getInput(page, 'firstName').fill(validUser.firstName);
await getInput(page, 'lastName').fill(validUser.lastName);
await getInput(page, 'zipcode').fill(' ');
await getInput(page, 'zipcode').blur();
await assertError(page);
await getCheckbox(page, /Code of Conduct/).check();
await getCheckbox(page, /Slack Community Guidelines/).check();
await assertFailedLogin(page);
});
test('should NOT be able to register when Code of Conduct is not agreed to', async ({ page }) => {
const validUser = getValidUser();
await getInput(page, 'email').fill(validUser.email);
await getInput(page, 'confirm-email').fill(validUser.email);
await getInput(page, 'firstName').fill(validUser.firstName);
await getInput(page, 'lastName').fill(validUser.lastName);
await getInput(page, 'zipcode').fill(String(validUser.zipcode));
await getCheckbox(page, /Code of Conduct/).focus();
await getCheckbox(page, /Code of Conduct/).blur();
await getCheckbox(page, /Slack Community Guidelines/).check();
await assertError(page, {
numberOfErrors: 1,
errorMessage: validationErrorMessages.codeOfConduct,
});
await assertFailedLogin(page, {
numberOfErrors: 1,
errorMessage: validationErrorMessages.codeOfConduct,
});
});
test('should NOT be able to register when Slack Community Guidelines is not agreed to', async ({
page,
}) => {
const validUser = getValidUser();
await getInput(page, 'email').fill(validUser.email);
await getInput(page, 'confirm-email').fill(validUser.email);
await getInput(page, 'firstName').fill(validUser.firstName);
await getInput(page, 'lastName').fill(validUser.lastName);
await getInput(page, 'zipcode').fill(String(validUser.zipcode));
await getCheckbox(page, /Code of Conduct/).check();
await getCheckbox(page, /Slack Community Guidelines/).focus();
await getCheckbox(page, /Slack Community Guidelines/).blur();
await assertError(page, {
numberOfErrors: 1,
errorMessage: validationErrorMessages.slackGuidelines,
});
await assertFailedLogin(page, {
numberOfErrors: 1,
errorMessage: validationErrorMessages.slackGuidelines,
});
});
/**
* Registration without all fields
*/
test('should NOT be able to register without filling all required fields', async ({ page }) => {
await assertFailedLogin(page, { numberOfErrors: 7 });
});
/**
* Test Valid User
*/
test('should be able to register with valid data', async ({ page }) => {
test.slow(); // this test takes a long time
const validUser = getValidUser();
await getInput(page, 'email').fill(validUser.email);
await getInput(page, 'confirm-email').fill(validUser.email);
await getInput(page, 'firstName').fill(validUser.firstName);
await getInput(page, 'lastName').fill(validUser.lastName);
await getInput(page, 'zipcode').fill(String(validUser.zipcode));
await getCheckbox(page, /Code of Conduct/).check();
await getCheckbox(page, /Slack Community Guidelines/).check();
await page.getByTestId(REGISTRATION_FORM_INITIAL_SUBMIT_BUTTON).click();
await page.waitForURL(/\/join\/form/, { timeout: 30000 });
await expect(page.locator('h1')).toHaveText('Update Profile');
// Professional Details
await page.getByLabel('Employment Status*').fill('Full-Time');
await page.keyboard.press('Enter');
await page.getByLabel('Company Name').fill('Test Company');
await page.getByLabel('Company Role').fill('Test Title');
await page.getByTestId(MULTI_STEP_STEP_BUTTON).click();
// Military Status
await page.getByLabel('Military Affiliation*').fill('Non');
await page.keyboard.press('Enter');
await page.getByTestId(MULTI_STEP_STEP_BUTTON).click();
// Assert that we see Personal Details (not Military Details)
await expect(page.getByText('Personal Details')).toBeVisible({
// sometimes long API response time
timeout: 15000,
});
// Go back
await page
.locator('form')
.getByRole('button', { name: /back|previous/i })
.click();
// Military Status
await expect(page.getByText('Military Status')).toBeVisible();
await page.getByLabel('Military Affiliation*').fill('Active');
await page.keyboard.press('Enter');
await page.getByTestId(MULTI_STEP_STEP_BUTTON).click();
// Assert that we see Military Details (not Personal Details)
await expect(page.getByText('Military Details')).toBeVisible({
// sometimes long API response time
timeout: 15000,
});
// Military Details
await page.getByLabel('Branch Of Service*').fill('Army');
await page.keyboard.press('Enter');
await page.getByLabel('Pay Grade*').fill('E1-E5');
await page.keyboard.press('Enter');
await page.getByTestId(MULTI_STEP_STEP_BUTTON).click();
// Assert that we see Personal Details again
await expect(page.getByText('Personal Details')).toBeVisible({
// sometimes long API response time
timeout: 15000,
});
// Personal Details
await page.getByLabel('Join Reason*').fill('None');
await page.keyboard.press('Enter');
await page.getByLabel('Gender*').fill('Male');
await page.keyboard.press('Enter');
await page.getByLabel('Ethnicity*').fill('Caucasian');
await page.keyboard.press('Enter');
await page.getByLabel('Ethnicity*').fill('Hispanic');
await page.keyboard.press('Enter');
await page.getByLabel('Education Level*').fill('High school');
await page.keyboard.press('Enter');
await page.getByTestId(MULTI_STEP_SUBMIT_BUTTON).click();
// Success UI
await expect(page.getByTestId(SUCCESS_PAGE_MESSAGE)).toBeVisible({
// sometimes long API response time
timeout: 15000,
});
});
test('should allow completing registration after filling the last step and going back to change earlier answers', async ({
page,
}) => {
test.slow();
const validUser = getValidUser();
const updateResponses: { status: number }[] = [];
page.on('response', response => {
if (
response.url().includes('/api/registration/update') &&
response.request().method() === 'PATCH'
) {
updateResponses.push({ status: response.status() });
}
});
// --- Registration form ---
await getInput(page, 'email').fill(validUser.email);
await getInput(page, 'confirm-email').fill(validUser.email);
await getInput(page, 'firstName').fill(validUser.firstName);
await getInput(page, 'lastName').fill(validUser.lastName);
await getInput(page, 'zipcode').fill(String(validUser.zipcode));
await getCheckbox(page, /Code of Conduct/).check();
await getCheckbox(page, /Slack Community Guidelines/).check();
await page.getByTestId(REGISTRATION_FORM_INITIAL_SUBMIT_BUTTON).click();
await page.waitForURL(/\/join\/form/, { timeout: 30000 });
// Step 1: Professional Details
await page.getByLabel('Employment Status*').fill('Full-Time');
await page.keyboard.press('Enter');
await page.getByLabel('Company Name').fill('Test Company');
await page.getByLabel('Company Role').fill('Engineer');
await page.getByTestId(MULTI_STEP_STEP_BUTTON).click();
// Step 2: Military Status (Active — ensures all payload fields exist)
await expect(page.getByText('Military Status')).toBeVisible({ timeout: 15000 });
await page.getByLabel('Military Affiliation*').fill('Active');
await page.keyboard.press('Enter');
await page.getByTestId(MULTI_STEP_STEP_BUTTON).click();
// Step 3: Military Details
await expect(page.getByText('Military Details')).toBeVisible({ timeout: 15000 });
await page.getByLabel('Branch Of Service*').fill('Army');
await page.keyboard.press('Enter');
await page.getByLabel('Pay Grade*').fill('E1-E5');
await page.keyboard.press('Enter');
await page.getByTestId(MULTI_STEP_STEP_BUTTON).click();
// Step 4: Fill Personal Details fields — but DO NOT click Submit
await expect(page.getByText('Personal Details')).toBeVisible({ timeout: 15000 });
await page.getByLabel('Join Reason*').fill('None');
await page.keyboard.press('Enter');
await page.getByLabel('Gender*').fill('Male');
await page.keyboard.press('Enter');
await page.getByLabel('Ethnicity*').fill('Caucasian');
await page.keyboard.press('Enter');
await page.getByLabel('Education Level*').fill('High school');
await page.keyboard.press('Enter');
// Go back to Professional Details (Formik still holds ALL filled values)
await page.getByTestId(MULTI_STEP_PREVIOUS_BUTTON).click();
await expect(page.getByText('Military Details')).toBeVisible();
await page.getByTestId(MULTI_STEP_PREVIOUS_BUTTON).click();
await expect(page.getByText('Military Status')).toBeVisible();
await page.getByTestId(MULTI_STEP_PREVIOUS_BUTTON).click();
await expect(page.getByText('Professional Details')).toBeVisible();
// Change an answer and re-submit forward through every step.
// Each "Next" sends ALL Formik values (including Personal Details) via PATCH.
// The cookie must NOT be cleared on these intermediate steps.
await page.getByLabel('Company Role').fill('Senior Engineer');
await page.getByTestId(MULTI_STEP_STEP_BUTTON).click();
await expect(page.getByText('Military Status')).toBeVisible({ timeout: 15000 });
await page.getByTestId(MULTI_STEP_STEP_BUTTON).click();
await expect(page.getByText('Military Details')).toBeVisible({ timeout: 15000 });
await page.getByTestId(MULTI_STEP_STEP_BUTTON).click();
await expect(page.getByText('Personal Details')).toBeVisible({ timeout: 15000 });
await page.getByTestId(MULTI_STEP_SUBMIT_BUTTON).click();
await expect(page.getByTestId(SUCCESS_PAGE_MESSAGE)).toBeVisible({ timeout: 15000 });
for (const response of updateResponses) {
expect(response.status).toBe(200);
}
});
});