-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathlabels.cy.ts
More file actions
422 lines (360 loc) · 13.7 KB
/
labels.cy.ts
File metadata and controls
422 lines (360 loc) · 13.7 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
import {Organization} from '../../../src/types'
describe('labels', () => {
beforeEach(() => {
cy.flush()
cy.signin()
cy.get('@org').then(({id}: Organization) =>
cy.fixture('routes').then(({orgs}) => {
cy.visit(`${orgs}/${id}/settings/labels`)
cy.getByTestID('tree-nav')
})
)
})
function hex2BgColor(hex: string): string {
hex = hex.replace('#', '')
const subvals = hex.match(/.{1,2}/g) as string[]
const red: number = parseInt(subvals[0], 16)
const green: number = parseInt(subvals[1], 16)
const blue: number = parseInt(subvals[2], 16)
// background-color: rgb(50, 107, 186);
return `background-color: rgb(${red}, ${green}, ${blue});`
}
it('can create a label', () => {
const newLabelName = 'Substantia'
const labelNameWith43Characters =
'Substantia Substantia Substantia Substantia'
const newLabelDescription =
'(\u03943) quod in se est et per se concipitur hoc est id cujus conceptus non indiget conceptu alterius rei a quo formari debeat. '
const newLabelColor = '#D4AF37'
cy.getByTestID('table-row').should('have.length', 0)
// open create - first button
cy.getByTestID('button-create-initial').click()
cy.getByTestID('overlay--container').within(() => {
cy.getByTestID('overlay--header')
.contains('Create Label')
.should('be.visible')
// dismiss
cy.getByTestID('overlay--header').children('button').click()
})
// open create 2 - by standard button
cy.getByTestID('button-create').click()
cy.getByTestID('overlay--container').should('be.visible')
// cancel
cy.getByTestID('create-label-form--cancel').click()
cy.getByTestID('label-card').should('have.length', 0)
// open create - and proceed with overlay
cy.getByTestID('button-create-initial').click()
// Try to save without name (required field) button should be disabled
cy.getByTestID('create-label-form--submit').should('be.disabled')
// check that input limits name to 30 characters
cy.getByTestID('create-label-form--name').type(labelNameWith43Characters)
cy.getByTestID('create-label-form--name').should(
'not.have.value',
labelNameWith43Characters
)
cy.getByTestID('create-label-form--name').clear()
// enter name
cy.getByTestID('create-label-form--name').type(newLabelName)
// enter description
cy.getByTestID('create-label-form--description').type(newLabelDescription)
// select color
cy.getByTestID('color-picker--input')
.invoke('attr', 'value')
.should('contain', '#326BBA')
cy.getByTestID('color-picker--swatch').should('have.length', 50)
cy.getByTestID('color-picker--swatch').eq(23).trigger('mouseover')
cy.getByTestID('color-picker--swatch')
.eq(23)
.invoke('attr', 'title')
.should('contain', 'Honeydew')
cy.getByTestID('color-picker--swatch').eq(33).trigger('mouseover')
cy.getByTestID('color-picker--swatch')
.eq(33)
.invoke('attr', 'title')
.should('contain', 'Thunder')
cy.getByTestID('color-picker--swatch').eq(33).click()
cy.getByTestID('color-picker--input')
.invoke('attr', 'value')
.should('equal', '#FFD255')
cy.getByTestID('color-picker--input')
.parent()
.parent()
.children('div.cf-color-preview')
.invoke('attr', 'style')
.should('equal', 'background-color: rgb(255, 210, 85);')
// clear color select
cy.getByTestID('color-picker--input').clear()
cy.getByTestID('form--element-error').should(
'contain',
'Please enter a hexcode'
)
// Type nonsense string - color input
cy.getByTestID('color-picker--input').type('zzzzzz')
cy.getByTestID('form--element-error').should(
'contain',
'Please enter a hexcode'
)
// feel lucky
cy.getByTestID('color-picker--randomize').click()
cy.getByTestID('color-picker--input')
.invoke('val')
.then(hex => {
cy.getByTestID('color-picker--input')
.parent()
.parent()
.children('div.cf-color-preview')
.invoke('attr', 'style')
.should('equal', hex2BgColor(hex))
})
// enter color
cy.getByTestID('color-picker--input').clear()
cy.getByTestID('color-picker--input').type(newLabelColor)
cy.getByTestID('color-picker--input').invoke('val')
cy.getByTestID('color-picker--input')
.parent()
.parent()
.children('div.cf-color-preview')
.invoke('attr', 'style')
.should('equal', hex2BgColor(newLabelColor))
// save
cy.getByTestID('create-label-form--submit').click()
// verify name, descr, color
cy.getByTestID('label-card').should('have.length', 1)
cy.getByTestID('label-card')
.contains(newLabelName.trim())
.should('be.visible')
cy.getByTestID('label-card')
.contains(newLabelDescription.trim())
.should('be.visible')
cy.getByTestID('label-card')
.children('div.cf-flex-box')
.children('div.cf-label')
.invoke('attr', 'style')
.should('contain', hex2BgColor(newLabelColor))
})
describe('updating', () => {
const oldLabelName = 'attributum (атрибут)'
const oldLabelDescription =
'(\u03944) Per attributum intelligo id quod intellectus de substantia percipit tanquam ejusdem essentiam constituens. '
const oldLabelColor = '#D0D0F8'
const newLabelName = 'attribut (атрибут)'
const newLabelDescription =
"(\u03944) J'entends par attribut ce que l'entendement perçoit d'une substance comme constituant son essence. "
const newLabelColor = '#B0D0FF'
beforeEach(() => {
// create label
cy.get<Organization>('@org').then(({id}) => {
cy.createLabel(oldLabelName, id, {
description: oldLabelDescription,
color: oldLabelColor,
})
})
cy.get<Organization>('@org').then(({id}) => {
cy.visit(`orgs/${id}/settings/labels`)
cy.getByTestID('tree-nav')
})
})
it('can update a label', () => {
// verify name, descr, color
cy.getByTestID('label-card').should('have.length', 1)
cy.getByTestID('label-card')
.contains(oldLabelName.trim())
.should('be.visible')
cy.getByTestID('label-card')
.contains(oldLabelDescription.trim())
.should('be.visible')
cy.getByTestID('label-card')
.children('div.cf-flex-box')
.children('div.cf-label')
.invoke('attr', 'style')
.should('contain', hex2BgColor(oldLabelColor))
cy.getByTestID('label-card').contains(oldLabelName).click()
cy.getByTestID('overlay--header')
.children('div')
.invoke('text')
.should('equal', 'Edit Label')
// dismiss
cy.getByTestID('overlay--header').children('button').click()
// modify
cy.getByTestID('label-card').contains(oldLabelName).click()
cy.getByTestID('overlay--container').should('be.visible')
cy.getByTestID('create-label-form--name').clear().type(newLabelName)
cy.getByTestID('create-label-form--description')
.clear()
.type(newLabelDescription)
cy.getByTestID('color-picker--input').clear().type(newLabelColor)
cy.getByTestID('create-label-form--submit').click()
// verify name, descr, color
cy.getByTestID('label-card').should('have.length', 1)
cy.getByTestID('label-card')
.contains(newLabelName.trim())
.should('be.visible')
cy.getByTestID('label-card')
.contains(newLabelDescription.trim())
.should('be.visible')
cy.getByTestID('label-card')
.children('div.cf-flex-box')
.children('div.cf-label')
.invoke('attr', 'style')
.should('contain', hex2BgColor(newLabelColor))
})
})
it('can sort labels by name', () => {
// Create labels
let names: {name: string; description: string; color: string}[] = [
{name: 'Baboon', description: 'Savanah primate', color: '#FFAA88'},
{name: 'Chimpanzee', description: 'Pan the forest ape', color: '#445511'},
{name: 'Gorilla', description: 'Greatest ape', color: '#114455'},
{name: 'Orangutan', description: 'Asian ape', color: '#F96A2D'},
{name: 'Macaque', description: 'Universal monkey', color: '#AA8888'},
{name: 'Lemur', description: 'Madagascar primate', color: '#BBBBBB'},
]
cy.get('@org').then(({id}: Organization) => {
names.forEach(n => {
cy.createLabel(n.name, id, {description: n.description, color: n.color})
})
})
cy.reload()
// set sort of local names
names = names.sort((a, b) =>
// eslint-disable-next-line
a.name < b.name ? -1 : a.name > b.name ? 1 : 0
)
// check initial sort asc
cy.getByTestIDSubStr('label--pill').then(labels => {
for (let i = 0; i < labels.length; i++) {
cy.getByTestIDSubStr('label--pill')
.eq(i)
.should('have.text', names[i].name)
}
})
cy.getByTestID('resource-sorter--button').click()
cy.getByTestID('resource-sorter--name-desc').click()
// check sort desc
cy.getByTestIDSubStr('label--pill').then(labels => {
for (let i = 0; i < labels.length; i++) {
cy.getByTestIDSubStr('label--pill')
.eq(i)
.should('have.text', names[labels.length - (i + 1)].name)
}
})
// reset to asc
cy.getByTestID('resource-sorter--button').click()
cy.getByTestID('resource-sorter--name-asc').click()
cy.getByTestIDSubStr('label--pill').then(labels => {
for (let i = 0; i < labels.length; i++) {
cy.getByTestIDSubStr('label--pill')
.eq(i)
.should('have.text', names[i].name)
}
})
})
it('can sort labels by description', () => {
// Create labels
let names: {name: string; description: string; color: string}[] = [
{name: 'Baboon', description: 'Savanah primate', color: '#FFAA88'},
{name: 'Chimpanzee', description: 'Pan the forest ape', color: '#445511'},
{name: 'Gorilla', description: 'Greatest ape', color: '#114455'},
{name: 'Orangutan', description: 'Asian ape', color: '#F96A2D'},
{name: 'Macaque', description: 'Universal monkey', color: '#AA8888'},
{name: 'Lemur', description: 'Madagascar primate', color: '#BBBBBB'},
]
cy.get<Organization>('@org').then(({id}) => {
names.forEach(n => {
cy.createLabel(n.name, id, {description: n.description, color: n.color})
})
})
cy.reload()
// set sort of local descriptions
names = names.sort((a, b) =>
// eslint-disable-next-line
a.description < b.description ? -1 : a.description > b.description ? 1 : 0
)
// check sort asc
cy.getByTestID('resource-sorter--button').click()
cy.getByTestID('resource-sorter--properties.description-asc').click()
cy.getByTestID('label-card').then(labels => {
for (let i = 0; i < labels.length; i++) {
cy.getByTestID('label-card--description')
.eq(i)
.should('have.text', names[i].description)
}
})
// check sort desc
cy.getByTestID('resource-sorter--button').click()
cy.getByTestID('resource-sorter--properties.description-desc').click()
cy.getByTestID('label-card').then(labels => {
for (let i = 0; i < labels.length; i++) {
cy.getByTestID('label-card--description')
.eq(i)
.should('have.text', names[labels.length - (i + 1)].description)
}
})
})
it('can filter labels', () => {
// Create labels
const names: {name: string; description: string; color: string}[] = [
{
name: 'Chocolate bread',
description: 'chocolate filled flour product',
color: '#FFAA88',
},
{name: 'Pannini', description: 'Italian hot sandwich', color: '#445511'},
{
name: 'Crissonti',
description: 'French breakfast bread',
color: '#114455',
},
{name: 'ApfelKuchen', description: 'German apple cake', color: '#F96A2D'},
{name: 'Torta', description: 'Mexican sandwich', color: '#AA8888'},
{
name: 'Apfelstrudel',
description: 'German apple flaky pastry',
color: '#BBBBBB',
},
]
cy.get<Organization>('@org').then(({id}) => {
names.forEach(n => {
cy.createLabel(n.name, id, {description: n.description, color: n.color})
})
})
cy.reload()
// input the search for titles check
cy.getByTestID('search-widget').clear().type('Apfel')
cy.getByTestID('label-card').should('have.length', 2)
// input the search for description check
cy.getByTestID('search-widget').clear().type('sandwich')
cy.getByTestID('label-card').should('have.length', 2)
// input the search for checking both name and description
cy.getByTestID('search-widget').clear().type('bread')
cy.getByTestID('label-card').should('have.length', 2)
})
describe('label destruction', () => {
const labelName = 'Modus (目录)'
const labelDescription =
'(\u03945) Per modum intelligo substantiae affectiones sive id quod in alio est, per quod etiam concipitur.'
const labelColor = '#88AACC'
beforeEach(() => {
// Create labels
cy.get('@org').then(({id}: Organization) => {
cy.createLabel(labelName, id, {
description: labelDescription,
color: labelColor,
})
})
})
it('can delete a label', () => {
cy.reload()
cy.getByTestID('label-card').should('have.length', 1)
cy.getByTestID('empty-state').should('not.exist')
// Delete a label
cy.getByTestID(`context-delete-label ${labelName}--button`)
.first()
.click()
cy.getByTestID(`context-delete-label ${labelName}--confirm-button`)
.first()
.click()
cy.getByTestID('empty-state').should('exist')
})
})
})