-
Notifications
You must be signed in to change notification settings - Fork 3.6k
/
Copy pathonboarding.test.ts
335 lines (246 loc) · 8.81 KB
/
onboarding.test.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
330
331
332
333
334
335
interface TestUser {
username: string
password: string
org: string
bucket: string
}
describe('Onboarding Redirect', () => {
beforeEach(() => {
cy.flush()
cy.visit('/')
})
it('Can redirect to onboarding page', () => {
cy.getByTestID('init-step--head-main')
cy.location('pathname').should('include', 'onboarding/0')
})
})
describe('Onboarding', () => {
let user: TestUser
beforeEach(() => {
cy.flush()
cy.fixture('user').then(u => {
user = u
})
cy.visit('onboarding/0')
})
it('Can Onboard to Quick Start', () => {
cy.server()
//Will want to capture response from this
cy.route('POST', 'api/v2/setup').as('orgSetup')
//Check and visit splash page
cy.getByTestID('init-step--head-main').contains('Welcome to InfluxDB')
cy.getByTestID('credits').contains('Powered by')
cy.getByTestID('credits').contains('InfluxData')
//Continue
cy.getByTestID('onboarding-get-started').click()
cy.location('pathname').should('include', 'onboarding/1')
//Check navigation bar
cy.getByTestID('nav-step--welcome').click()
//Check splash page
cy.getByTestID('init-step--head-main').contains('Welcome to InfluxDB 2.0')
cy.getByTestID('credits').contains('Powered by')
cy.getByTestID('credits').contains('InfluxData')
//Continue
cy.getByTestID('onboarding-get-started').click()
//Check onboarding page - nav bar
cy.getByTestID('nav-step--welcome').contains('Welcome')
cy.getByTestID('nav-step--welcome')
.parent()
.children('span')
.should($span => {
expect($span).to.have.class('checkmark')
})
cy.getByTestID('nav-step--setup')
.contains('Initial User Setup')
.should('be.visible')
cy.getByTestID('nav-step--setup').should('have.class', 'current')
cy.getByTestID('nav-step--complete')
.parent()
.should($el => {
expect($el).to.have.class('unclickable')
})
//Check onboarding page headers and controls
cy.getByTestID('admin-step--head-main').contains('Setup Initial User')
cy.getByTestID('next').should('be.disabled')
cy.getByTestID('next')
.children('.cf-button--label')
.contains('Continue')
//Input fields
cy.getByTestID('input-field--username').type(user.username)
cy.getByTestID('input-field--password').type(user.password)
cy.getByTestID('input-field--password-chk').type(user.password)
cy.getByTestID('input-field--orgname').type(user.org)
cy.getByTestID('input-field--bucketname').type(user.bucket)
cy.getByTestID('next')
.children('.cf-button--label')
.contains('Continue')
cy.getByTestID('next')
.should('be.enabled')
.click()
cy.wait('@orgSetup')
cy.get('@orgSetup').then(xhr => {
const orgId: string = xhr.responseBody.org.id
//wait for new page to load
cy.location('pathname').should('include', 'onboarding/2')
//check navbar
cy.getByTestID('nav-step--complete').should('have.class', 'current')
cy.getByTestID('nav-step--welcome').should('have.class', 'checkmark')
cy.getByTestID('nav-step--setup').should('have.class', 'checkmark')
cy.getByTestID('button--advanced').should('be.visible')
cy.getByTestID('button--conf-later').should('be.visible')
//advance to Quick Start
cy.getByTestID('button--quick-start').click()
cy.location('pathname').should('equal', '/orgs/' + orgId)
})
})
it('Can onboard to advanced', () => {
cy.server()
cy.route('POST', 'api/v2/setup').as('orgSetup')
//Continue
cy.getByTestID('onboarding-get-started').click()
cy.location('pathname').should('include', 'onboarding/1')
//Input fields
cy.getByTestID('input-field--username').type(user.username)
cy.getByTestID('input-field--password').type(user.password)
cy.getByTestID('input-field--password-chk').type(user.password)
cy.getByTestID('input-field--orgname').type(user.org)
cy.getByTestID('input-field--bucketname').type(user.bucket)
cy.getByTestID('next').click()
cy.wait('@orgSetup')
cy.get('@orgSetup').then(xhr => {
const orgId: string = xhr.responseBody.org.id
//wait for new page to load
cy.location('pathname').should('include', 'onboarding/2')
//advance to Advanced
cy.getByTestID('button--advanced').click()
//wait for new page to load
cy.location('pathname').should('match', /orgs\/.*\/buckets/)
cy.location('pathname').should('include', orgId)
})
})
it('Can onboard to configure later', () => {
cy.server()
cy.route('POST', 'api/v2/setup').as('orgSetup')
//Continue
cy.getByTestID('onboarding-get-started').click()
cy.location('pathname').should('include', 'onboarding/1')
//Input fields
cy.getByTestID('input-field--username').type(user.username)
cy.getByTestID('input-field--password').type(user.password)
cy.getByTestID('input-field--password-chk').type(user.password)
cy.getByTestID('input-field--orgname').type(user.org)
cy.getByTestID('input-field--bucketname').type(user.bucket)
cy.getByTestID('next').click()
cy.wait('@orgSetup')
cy.get('@orgSetup').then(xhr => {
const orgId: string = xhr.responseBody.org.id
//wait for new page to load
cy.location('pathname').should('include', 'onboarding/2')
//advance to Advanced
cy.getByTestID('button--conf-later').click()
cy.location('pathname').should('include', orgId)
})
})
it('respects field requirements', () => {
//Continue
cy.getByTestID('onboarding-get-started').click()
cy.getByTestID('input-field--username').type(user.username)
cy.getByTestID('next')
.should('be.disabled')
.children('.cf-button--label')
.contains('Continue')
cy.getByTestID('input-field--password').type(user.password)
cy.getByTestID('next')
.should('be.disabled')
.children('.cf-button--label')
.contains('Continue')
cy.getByTestID('input-field--password-chk').type('drowssap')
//check password mismatch
cy.getByTestID('form--element-error').should(
'have.text',
'Passwords do not match'
)
cy.getByTestID('input-field--password')
.clear()
.type('p1')
cy.getByTestID('input-field--password-chk')
.clear()
.type('p1')
// check password too short
cy.getByTestID('form--element-error').should('contain.text', '8')
cy.getByTestID('next')
.should('be.disabled')
.children('.cf-button--label')
.contains('Continue')
cy.getByTestID('input-field--orgname').type(user.org)
cy.getByTestID('input-field--bucketname').type(user.bucket)
cy.getByTestID('next')
.should('be.disabled')
.children('.cf-button--label')
.contains('Continue')
cy.getByTestID('input-field--password')
.clear()
.type(user.password)
cy.getByTestID('input-field--password-chk')
.clear()
.type(user.password)
cy.getByTestID('input-error').should('not.exist')
cy.getByTestID('next')
.should('be.enabled')
.children('.cf-button--label')
.contains('Continue')
//check cleared username
cy.getByTestID('input-field--username').clear()
cy.getByTestID('next')
.should('be.disabled')
.children('.cf-button--label')
.contains('Continue')
cy.getByTestID('input-field--username').type(user.username)
cy.getByTestID('next')
.should('be.enabled')
.children('.cf-button--label')
.contains('Continue')
//check cleared password
cy.getByTestID('input-field--password').clear()
cy.getByTestID('form--element-error').should(
'have.text',
'Passwords do not match'
)
cy.getByTestID('next')
.should('be.disabled')
.children('.cf-button--label')
.contains('Continue')
cy.getByTestID('input-field--password')
.clear()
.type(user.password)
cy.getByTestID('input-field--password-chk')
.clear()
.type(user.password)
cy.getByTestID('next')
.should('be.enabled')
.children('.cf-button--label')
.contains('Continue')
//check cleared org name
cy.getByTestID('input-field--orgname').clear()
cy.getByTestID('next')
.should('be.disabled')
.children('.cf-button--label')
.contains('Continue')
cy.getByTestID('input-field--orgname').type(user.org)
cy.getByTestID('next')
.should('be.enabled')
.children('.cf-button--label')
.contains('Continue')
//check cleared bucket name
cy.getByTestID('input-field--bucketname').clear()
cy.getByTestID('next')
.should('be.disabled')
.children('.cf-button--label')
.contains('Continue')
cy.getByTestID('input-field--bucketname').type(user.bucket)
cy.getByTestID('next')
.should('be.enabled')
.children('.cf-button--label')
.contains('Continue')
})
})