-
Notifications
You must be signed in to change notification settings - Fork 87
/
encrypt-submission.spec.ts
176 lines (158 loc) · 4.33 KB
/
encrypt-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
/* 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 as _ALL_FIELDS,
NO_LOGIC,
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,
getEncryptSettings,
makeModel,
makeMongooseFixtures,
} from './utils'
// TODO: Attachment fields don't work on storage mode unless we spin up localstack.
const ALL_FIELDS = _ALL_FIELDS.filter(
(field) => field.fieldType !== BasicField.Attachment,
)
const runEncryptSubmissionTest = createSubmissionTestRunnerForResponseMode(
FormResponseMode.Encrypt,
)
let db: mongoose.Connection
let Form: IFormModel
test.describe('Storage 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 storage mode form with all fields', async ({
page,
}) => {
test.setTimeout(60 * 1000)
// Define
const formFields = ALL_FIELDS
const formLogics = NO_LOGIC
const formSettings = getEncryptSettings()
// Test
await runEncryptSubmissionTest(page, Form, {
formFields,
formLogics,
formSettings,
})
})
test('Create and submit storage 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 = getEncryptSettings()
// Test
await runEncryptSubmissionTest(page, Form, {
formFields,
formLogics,
formSettings,
})
})
test('Create and submit storage 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 = getEncryptSettings()
// Test
await runEncryptSubmissionTest(page, Form, {
formFields,
formLogics,
formSettings,
})
})
test('Create and submit storage mode form with a field hidden by logic', async ({
page,
}) => {
// Define
const { formFields, formLogics } = TEST_FIELD_HIDDEN_BY_LOGIC
const formSettings = getEncryptSettings()
// Test
await runEncryptSubmissionTest(page, Form, {
formFields,
formLogics,
formSettings,
})
})
test('Create storage mode form with submission disabled by chained logic', async ({
page,
}) => {
// Define
const { formFields, formLogics, preventSubmitMessage } =
TEST_SUBMISSION_DISABLED_BY_CHAINED_LOGIC
const formSettings = getEncryptSettings()
// Test
const { form } = await createForm(page, Form, FormResponseMode.Encrypt, {
formFields,
formLogics,
formSettings,
})
await verifySubmissionDisabled(
page,
{ form, formFields, formSettings },
preventSubmitMessage,
)
await deleteDocById(Form, form._id)
})
test('Create and submit storage 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 = getEncryptSettings({
authType: FormAuthType.MyInfo,
})
// Test
await runEncryptSubmissionTest(page, Form, {
formFields,
formLogics,
formSettings,
})
})
})