-
Notifications
You must be signed in to change notification settings - Fork 87
/
email-submission.spec.ts
329 lines (299 loc) · 8.33 KB
/
email-submission.spec.ts
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
import { Page } from '@playwright/test'
import mongoose from 'mongoose'
import { BasicField, LogicConditionState, LogicType } from 'shared/types'
import { IFormModel } from 'src/types'
import { expect, test } from './fixtures/auth'
import {
ALL_FIELDS,
E2eFieldMetadata,
E2eForm,
E2eLogic,
NO_LOGIC,
SAMPLE_FIELD,
} from './constants'
import { createForm, fillForm, submitForm, verifySubmission } from './helpers'
import {
deleteDocById,
getBlankVersion,
getOptionalVersion,
getSettings,
makeModel,
makeMongooseFixtures,
} from './utils'
let db: mongoose.Connection
let Form: IFormModel
test.describe('Email form submission', () => {
test.beforeAll(async () => {
// Create models
db = await makeMongooseFixtures()
Form = makeModel(db, 'form.server.model', 'Form')
})
test.afterAll(async () => {
// Clean up db
db.models = {}
await db.close()
})
test('Create and submit email mode form with all fields', async ({
page,
}) => {
// Define
const formFields = ALL_FIELDS
const formLogics = NO_LOGIC
const formSettings = getSettings()
// Test
await runTest(page, { formFields, formLogics, formSettings })
})
test('Create and submit email mode form with all fields optional', async ({
page,
}) => {
// Define
const formFields = ALL_FIELDS.map((ff) =>
getBlankVersion(getOptionalVersion(ff)),
)
const formLogics = NO_LOGIC
const formSettings = getSettings()
// Test
await runTest(page, { formFields, formLogics, formSettings })
})
test('Create and submit email mode form with identical attachment names', async ({
page,
}) => {
// Define
const baseField = SAMPLE_FIELD[BasicField.Attachment]
const formFields = new Array(3).fill('').map(
(_, i) =>
({
...baseField,
title: `Attachment ${i}`,
path: `__tests__/e2e/files/att-folder-${i}/test-att.txt`,
val: `${i === 2 ? '' : `${2 - i}-`}test-att.txt`,
} as E2eFieldMetadata),
)
const formLogics = NO_LOGIC
const formSettings = getSettings()
// Test
await runTest(page, { formFields, formLogics, formSettings })
})
test('Create and submit email mode form with optional and required attachments', async ({
page,
}) => {
// Define
const baseField = SAMPLE_FIELD[BasicField.Attachment]
const formFields = [
{
...baseField,
title: 'Attachment 0',
path: '__tests__/e2e/files/att-folder-0/test-att.txt',
val: '1-test-att.txt',
} as E2eFieldMetadata,
{
...getBlankVersion(getOptionalVersion(baseField)),
title: 'Attachment 1',
} as E2eFieldMetadata,
{
...baseField,
title: 'Attachment 2',
path: '__tests__/e2e/files/att-folder-2/test-att.txt',
val: 'test-att.txt',
} as E2eFieldMetadata,
]
const formLogics = NO_LOGIC
const formSettings = getSettings()
// Test
await runTest(page, { formFields, formLogics, formSettings })
})
// TODO: Uncomment these tests when mockpass has been fixed.
// test('Create and submit email mode form with Singpass authentication', async ({
// page,
// }) => {
// // Define
// const formFields = ALL_FIELDS
// const formLogics = NO_LOGIC
// const formSettings = getSettings({
// authType: FormAuthType.SP,
// esrvcId: process.env.SINGPASS_ESRVC_ID,
// })
// // Test
// await runTest(page, { formFields, formLogics, formSettings })
// })
// test('Create and submit email mode form with Corppass authentication', async ({
// page,
// }) => {
// // Define
// const formFields = ALL_FIELDS
// const formLogics = NO_LOGIC
// const formSettings = getSettings({
// authType: FormAuthType.CP,
// esrvcId: process.env.CORPPASS_ESRVC_ID,
// })
// // Test
// await runTest(page, { formFields, formLogics, formSettings })
// })
// test('Create and submit email mode form with SGID authentication', async ({
// page,
// }) => {
// // Define
// const formFields = ALL_FIELDS
// const formLogics = NO_LOGIC
// const formSettings = getSettings({
// authType: FormAuthType.SGID,
// })
// // Test
// await runTest(page, { formFields, formLogics, formSettings })
// })
// TODO: Add test for MyInfo when mockpass has been fixed.
test('Create and submit email mode form with all fields shown by logic', async ({
page,
}) => {
// Define
const formFields: E2eFieldMetadata[] = [
{
title: 'Do you want to show the fields?',
fieldType: BasicField.YesNo,
val: 'Yes',
},
...ALL_FIELDS,
]
const formLogics: E2eLogic[] = [
// Single logic block: if "yes", show the fields.
{
conditions: [
{
field: 0,
state: LogicConditionState.Equal,
value: 'Yes',
},
],
logicType: LogicType.ShowFields,
show: Array.from(formFields, (_, i) => i).slice(1),
},
]
const formSettings = getSettings()
// Test
await runTest(page, { formFields, formLogics, formSettings })
})
test('Create and submit email mode form with a field hidden by logic', async ({
page,
}) => {
// Define
const formFields: E2eFieldMetadata[] = [
{
title: 'Do you want to show the fields?',
fieldType: BasicField.YesNo,
val: 'No',
},
{
title: 'This field should be hidden',
fieldType: BasicField.ShortText,
ValidationOptions: {
selectedValidation: null,
customVal: null,
},
val: '',
hidden: true,
},
]
const formLogics: E2eLogic[] = [
// Single logic block: if "yes", show the fields.
{
conditions: [
{
field: 0,
state: LogicConditionState.Equal,
value: 'Yes',
},
],
logicType: LogicType.ShowFields,
show: Array.from(formFields, (_, i) => i).slice(1),
},
]
const formSettings = getSettings()
// Test
await runTest(page, { formFields, formLogics, formSettings })
})
test('Create email mode form with submission disabled by chained logic', async ({
page,
}) => {
const preventSubmitMessage = 'You shall not pass!'
// Define
const formFields: E2eFieldMetadata[] = [
{
title: 'Enter a number at least 10',
fieldType: BasicField.Number,
ValidationOptions: {
selectedValidation: null,
customVal: null,
},
val: '10',
},
{
title: 'Favorite food',
fieldType: BasicField.Dropdown,
fieldOptions: ['Rice', 'Chocolate', 'Ice-Cream'],
val: 'Chocolate',
},
{
title: 'Do you want to submit this form?',
fieldType: BasicField.YesNo,
val: 'Yes',
},
]
const formLogics: E2eLogic[] = [
{
conditions: [
{
field: 0,
state: LogicConditionState.Gte,
value: '10',
},
],
logicType: LogicType.ShowFields,
show: [1],
},
{
conditions: [
{
field: 1,
state: LogicConditionState.Either,
value: ['Rice', 'Chocolate'],
},
],
logicType: LogicType.ShowFields,
show: [2],
},
{
conditions: [
{
field: 2,
state: LogicConditionState.Equal,
value: 'Yes',
},
],
logicType: LogicType.PreventSubmit,
message: preventSubmitMessage,
},
]
const formSettings = getSettings()
// Test
const form = await createForm(page, Form, {
formFields,
formLogics,
formSettings,
})
await fillForm(page, { form, formFields, formSettings })
await expect(
page.locator('button:has-text("Submission disabled")'),
).toBeDisabled()
await expect(page.getByText(preventSubmitMessage)).toBeVisible()
await deleteDocById(Form, form._id)
})
})
const runTest = async (page: Page, formDef: E2eForm): Promise<void> => {
const form = await createForm(page, Form, formDef)
const responseId = await submitForm(page, {
form,
...formDef,
})
await verifySubmission(page, { form, responseId, ...formDef })
await deleteDocById(Form, form._id)
}