-
Notifications
You must be signed in to change notification settings - Fork 86
/
email-submission.spec.ts
289 lines (262 loc) · 6.95 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
/* eslint-disable playwright/expect-expect -- assertions are in helper */
import mongoose from 'mongoose'
import {
BasicField,
FormAuthType,
FormResponseMode,
MyInfoAttribute,
} from 'shared/types'
import { IFormModel } from 'src/types'
import {
ALL_FIELDS,
E2eFieldMetadata,
NO_LOGIC,
SAMPLE_FIELD,
TEST_ALL_FIELDS_SHOWN_BY_LOGIC,
TEST_FIELD_HIDDEN_BY_LOGIC,
TEST_SUBMISSION_DISABLED_BY_CHAINED_LOGIC,
} from './constants'
import { test } from './fixtures'
import {
createForm,
createSubmissionTestRunnerForResponseMode,
verifySubmissionDisabled,
} from './helpers'
import {
createBlankVersion,
createMyInfoField,
createOptionalVersion,
deleteDocById,
getEmailSettings,
makeModel,
makeMongooseFixtures,
} from './utils'
const runEmailSubmissionTest = createSubmissionTestRunnerForResponseMode(
FormResponseMode.Email,
)
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
await db.dropCollection(Form.collection.name)
await db.close()
})
test('Create and submit email mode form with all fields', async ({
page,
}) => {
test.setTimeout(60 * 1000)
// Define
const formFields = ALL_FIELDS
const formLogics = NO_LOGIC
const formSettings = getEmailSettings()
// Test
await runEmailSubmissionTest(page, Form, {
formFields,
formLogics,
formSettings,
})
})
test('Create and submit email mode form with all fields optional', async ({
page,
}) => {
test.setTimeout(60 * 1000)
// Define
const formFields = ALL_FIELDS.map((ff) =>
createBlankVersion(createOptionalVersion(ff)),
)
const formLogics = NO_LOGIC
const formSettings = getEmailSettings()
// Test
await runEmailSubmissionTest(page, Form, {
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 = getEmailSettings()
// Test
await runEmailSubmissionTest(page, Form, {
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,
{
...createBlankVersion(createOptionalVersion(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 = getEmailSettings()
// Test
await runEmailSubmissionTest(page, Form, {
formFields,
formLogics,
formSettings,
})
})
test('Create and submit email mode form with Singpass authentication', async ({
page,
}) => {
test.setTimeout(60 * 1000)
// Define
const formFields = ALL_FIELDS
const formLogics = NO_LOGIC
const formSettings = getEmailSettings({
authType: FormAuthType.SP,
})
// Test
await runEmailSubmissionTest(page, Form, {
formFields,
formLogics,
formSettings,
})
})
test('Create and submit email mode form with Corppass authentication', async ({
page,
}) => {
test.setTimeout(60 * 1000)
// Define
const formFields = ALL_FIELDS
const formLogics = NO_LOGIC
const formSettings = getEmailSettings({
authType: FormAuthType.CP,
})
// Test
await runEmailSubmissionTest(page, Form, {
formFields,
formLogics,
formSettings,
})
})
test('Create and submit email mode form with SGID authentication', async ({
page,
}) => {
test.setTimeout(60 * 1000)
// Define
const formFields = ALL_FIELDS
const formLogics = NO_LOGIC
const formSettings = getEmailSettings({
authType: FormAuthType.SGID,
})
// Test
await runEmailSubmissionTest(page, Form, {
formFields,
formLogics,
formSettings,
})
})
test('Create and submit email mode form with MyInfo fields', async ({
page,
}) => {
// Define
const formFields = [
// Short answer
createMyInfoField(MyInfoAttribute.Name, 'LIM YONG XIANG', true),
// Dropdown
createMyInfoField(MyInfoAttribute.Sex, 'MALE', true),
// Date
createMyInfoField(MyInfoAttribute.DateOfBirth, '06/10/1980', true),
// Mobile
createMyInfoField(MyInfoAttribute.MobileNo, '97399245', false),
// Unverified
createMyInfoField(MyInfoAttribute.WorkpassStatus, 'Live', false),
]
const formLogics = NO_LOGIC
const formSettings = getEmailSettings({
authType: FormAuthType.MyInfo,
})
// Test
await runEmailSubmissionTest(page, Form, {
formFields,
formLogics,
formSettings,
})
})
test('Create and submit email mode form with all fields shown by logic', async ({
page,
}) => {
test.setTimeout(60 * 1000)
// Define
const { formFields, formLogics } = TEST_ALL_FIELDS_SHOWN_BY_LOGIC
const formSettings = getEmailSettings()
// Test
await runEmailSubmissionTest(page, Form, {
formFields,
formLogics,
formSettings,
})
})
test('Create and submit email mode form with a field hidden by logic', async ({
page,
}) => {
// Define
const { formFields, formLogics } = TEST_FIELD_HIDDEN_BY_LOGIC
const formSettings = getEmailSettings()
// Test
await runEmailSubmissionTest(page, Form, {
formFields,
formLogics,
formSettings,
})
})
test('Create email mode form with submission disabled by chained logic', async ({
page,
}) => {
// Define
const { formFields, formLogics, preventSubmitMessage } =
TEST_SUBMISSION_DISABLED_BY_CHAINED_LOGIC
const formSettings = getEmailSettings()
// Test
const { form } = await createForm(page, Form, FormResponseMode.Email, {
formFields,
formLogics,
formSettings,
})
await verifySubmissionDisabled(
page,
{ form, formFields, formSettings },
preventSubmitMessage,
)
await deleteDocById(Form, form._id)
})
})