-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathspaE2E.test.js
613 lines (454 loc) · 20.5 KB
/
spaE2E.test.js
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
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
/*
* @jest-environment node
*/
import puppeteer from 'puppeteer';
const URL = 'http://localhost:5173/NoteWorthy/';
let browser;
let page;
function delay(time) {
return new Promise(function executor(resolve) {
setTimeout(resolve, time);
});
}
const beforebefore = async () => {
// Change headless to false when testing locally if you want the browser to
// pop up, before commiting, change back to "new" otherwise github actions will
// fail
browser = await puppeteer.launch({ headless: 'new' });
page = await browser.newPage();
page.setDefaultTimeout(0);
await page.goto(URL);
await delay(1000);
};
const afterafter = async () => {
await page.close();
await browser.close();
};
async function fillInputAndEditor(inputText, editorText) {
// Fill input field
let inputElement = await page.$('#title-input');
await inputElement.click({ clickCount: 1 });
await page.type('#title-input', inputText);
// Fill editor
let editorElement = await page.$('.ql-editor');
await editorElement.click({ clickCount: 1 });
await page.type('.ql-editor', editorText);
}
/**
* Fetches and returns classlist of element in dom of page
* @param { String } tag tag of HTMLElement to fetch
* @returns {Promise Array<Class> }
*/
async function getClassList(tag) {
const arr = await page.waitForSelector(tag);
const result = await page.evaluate((el) => el.classList, arr);
return Object.values(result);
} /* getClassList */
/**
* presses the new note button
*/
async function createNewNote() {
const newNote = '#newNote';
await page.waitForSelector(newNote).then((el) => el.click());
}
describe('Dashboard tests', () => {
beforeEach(beforebefore);
test('New Note button toggles editor/dashboard view', async () => {
let dashboard = await getClassList('.dashboard');
let editor = await getClassList('.editor');
expect(editor).toContain('hidden');
expect(dashboard).not.toContain('hidden');
await createNewNote();
dashboard = await getClassList('.dashboard');
editor = await getClassList('.editor');
expect(editor).not.toContain('hidden');
expect(dashboard).toContain('hidden');
expect(page.url()).toBe(`${URL}?id=9999`);
}, 5000);
test('New Note is added to dashboard', async () => {
await createNewNote();
await delay(200);
expect(page.url()).toBe(`${URL}?id=9999`);
let titleText = await page.$eval('#notes-title', (el) => el.innerHTML);
expect(titleText).toBe(`<input type="text" class="" id="title-input" placeholder="Untitled Note">`);
const inputTxt = await page.$('#title-input');
await inputTxt.click({ clickCount: 1 });
await page.type('#title-input', 'title text');
titleText = await page.$eval('#title-input', (e) => e.value);
expect(titleText).toBe('title text');
const editor = await page.$('.ql-editor');
await editor.click({ clickCount: 1 });
await page.type('.ql-editor', 'editor text');
await page.waitForSelector('#back-button').then((el) => el.click());
await delay(200);
const numNotes = await page.$$eval('dashboard-row', (noteItems) => noteItems.length);
expect(numNotes).toBe(1);
}, 5000);
test('New Note on dashboard contains correct title and content', async () => {
await createNewNote();
await delay(200);
expect(page.url()).toBe(`${URL}?id=9999`);
const inputTxt = await page.$('#title-input');
await inputTxt.click({ clickCount: 1 });
await page.type('#title-input', 'title text');
const editor = await page.$('.ql-editor');
await editor.click({ clickCount: 1 });
await page.type('.ql-editor', 'editor text');
await page.waitForSelector('#back-button').then((el) => el.click());
await delay(200);
const title = await page.$eval('>>> .note-title', (el) => el.innerHTML);
expect(title).toBe('title text');
const content = await page.$eval('>>> .note-text > p', (el) => el.innerHTML);
expect(content).toBe('editor text');
expect(page.url()).toBe(URL);
}, 5000);
test('Dashboard note fliping', async () => {
await createNewNote();
const inputTxt = await page.$('#title-input');
await inputTxt.click({ clickCount: 1 });
await page.type('#title-input', 'title text');
const editor = await page.$('.ql-editor');
await editor.click({ clickCount: 1 });
await page.type('.ql-editor', 'editor text');
await page.waitForSelector('#back-button').then((el) => el.click());
await delay(200);
let front = await getClassList('>>> .note-front');
expect(front).not.toContain('flipped');
await page.waitForSelector('>>> .note-more').then((el) => el.click());
front = await getClassList('>>> .note-front');
expect(front).toContain('flipped');
}, 5000);
test('Duplicating notes', async () => {
await createNewNote();
const inputTxt = await page.$('#title-input');
await inputTxt.click({ clickCount: 1 });
await page.type('#title-input', 'title text');
const editor = await page.$('.ql-editor');
await editor.click({ clickCount: 1 });
await page.type('.ql-editor', 'editor text');
await page.waitForSelector('#back-button').then((el) => el.click());
await delay(200);
await page.waitForSelector('>>> .note-more').then((el) => el.click());
await page.waitForSelector('>>> .note-copy-button').then((el) => el.click());
await delay(200);
const numNotes = await page.$$eval('dashboard-row', (noteItems) => noteItems.length);
expect(numNotes).toBe(2);
}, 5000);
test('Custom Dialog opens when deleting note', async () => {
await createNewNote();
const inputTxt = await page.$('#title-input');
await inputTxt.click({ clickCount: 1 });
await page.type('#title-input', 'title text');
const editor = await page.$('.ql-editor');
await editor.click({ clickCount: 1 });
await page.type('.ql-editor', 'editor text');
await page.waitForSelector('#back-button').then((el) => el.click());
await delay(200);
await page.waitForSelector('>>> .note-more').then((el) => el.click());
await page.waitForSelector('>>> .note-delete-button').then((el) => el.click());
const dialogElement = await page.$('dialog');
const isDialogOpen = await dialogElement.isVisible();
expect(isDialogOpen).toBe(true);
});
test('Pressing Yes on custom dialog deletes note', async () => {
await createNewNote();
const inputTxt = await page.$('#title-input');
await inputTxt.click({ clickCount: 1 });
await page.type('#title-input', 'title text');
const editor = await page.$('.ql-editor');
await editor.click({ clickCount: 1 });
await page.type('.ql-editor', 'editor text');
await page.waitForSelector('#back-button').then((el) => el.click());
await delay(200);
await page.waitForSelector('>>> .note-more').then((el) => el.click());
await page.waitForSelector('>>> .note-delete-button').then((el) => el.click());
const dialogElement = await page.$('dialog');
const isDialogOpen = await dialogElement.isVisible();
expect(isDialogOpen).toBe(true);
await page.waitForSelector('>>> .dialog-confirm').then((el) => el.click());
await delay(400);
const numNotes = await page.$$eval('dashboard-row', (noteItems) => noteItems.length);
expect(numNotes).toBe(0);
});
test('Pressing No on custom dialog deletes note', async () => {
await createNewNote();
const inputTxt = await page.$('#title-input');
await inputTxt.click({ clickCount: 1 });
await page.type('#title-input', 'title text');
const editor = await page.$('.ql-editor');
await editor.click({ clickCount: 1 });
await page.type('.ql-editor', 'editor text');
await page.waitForSelector('#back-button').then((el) => el.click());
await delay(200);
await page.waitForSelector('>>> .note-more').then((el) => el.click());
await page.waitForSelector('>>> .note-delete-button').then((el) => el.click());
const dialogElement = await page.$('dialog');
const isDialogOpen = await dialogElement.isVisible();
expect(isDialogOpen).toBe(true);
await page.waitForSelector('>>> .dialog-cancel').then((el) => el.click());
await delay(400);
const numNotes = await page.$$eval('dashboard-row', (noteItems) => noteItems.length);
expect(numNotes).toBe(1);
});
afterEach(afterafter);
}, 30000);
describe('Editor tests', () => {
beforeEach(beforebefore);
test('Clicking on top left logo redirects to dashboard', async () => {
await createNewNote();
const inputTxt = await page.$('#title-input');
await inputTxt.click({ clickCount: 1 });
await page.type('#title-input', 'title text');
const editor = await page.$('.ql-editor');
await editor.click({ clickCount: 1 });
await page.type('.ql-editor', 'editor text');
await page.waitForSelector('.header > h1').then((el) => el.click());
await delay(200);
expect(page.url()).toBe(`${URL}`);
});
test('Custom Dialog opens when deleting note', async () => {
await createNewNote();
const inputTxt = await page.$('#title-input');
await inputTxt.click({ clickCount: 1 });
await page.type('#title-input', 'title text');
const editor = await page.$('.ql-editor');
await editor.click({ clickCount: 1 });
await page.type('.ql-editor', 'editor text');
await page.waitForSelector('#back-button').then((el) => el.click());
await delay(200);
await page.waitForSelector('>>> .note-front').then((el) => el.click());
await delay(200);
await page.waitForSelector('#delete-button').then((el) => el.click());
await delay(200);
const dialogElement = await page.$('dialog');
const isDialogOpen = await dialogElement.isVisible();
expect(isDialogOpen).toBe(true);
});
test('Pressing Yes on custom dialog deletes note', async () => {
await createNewNote();
const inputTxt = await page.$('#title-input');
await inputTxt.click({ clickCount: 1 });
await page.type('#title-input', 'title text');
const editor = await page.$('.ql-editor');
await editor.click({ clickCount: 1 });
await page.type('.ql-editor', 'editor text');
await page.waitForSelector('#back-button').then((el) => el.click());
await delay(200);
await page.waitForSelector('>>> .note-front').then((el) => el.click());
await delay(200);
await page.waitForSelector('#delete-button').then((el) => el.click());
await delay(200);
const dialogElement = await page.$('dialog');
const isDialogOpen = await dialogElement.isVisible();
expect(isDialogOpen).toBe(true);
await page.waitForSelector('.dialog-confirm').then((el) => el.click());
await delay(200);
const numNotes = await page.$$eval('dashboard-row', (noteItems) => noteItems.length);
expect(numNotes).toBe(0);
});
test('Pressing No on custom dialog does not delete note', async () => {
await createNewNote();
const inputTxt = await page.$('#title-input');
await inputTxt.click({ clickCount: 1 });
await page.type('#title-input', 'title text');
const editor = await page.$('.ql-editor');
await editor.click({ clickCount: 1 });
await page.type('.ql-editor', 'editor text');
await page.waitForSelector('#back-button').then((el) => el.click());
await delay(200);
await page.waitForSelector('>>> .note-front').then((el) => el.click());
await delay(200);
await page.waitForSelector('#delete-button').then((el) => el.click());
await delay(200);
const dialogElement = await page.$('dialog');
const isDialogOpen = await dialogElement.isVisible();
expect(isDialogOpen).toBe(true);
await page.waitForSelector('.dialog-cancel').then((el) => el.click());
await page.waitForSelector('#back-button').then((el) => el.click());
await delay(200);
const numNotes = await page.$$eval('dashboard-row', (noteItems) => noteItems.length);
expect(numNotes).toBe(1);
});
test('Saving note without title triggers alert', async () => {
await createNewNote();
const inputTxt = await page.$('#title-input');
await inputTxt.click({ clickCount: 1 });
await page.type('#title-input', '');
const editor = await page.$('.ql-editor');
await editor.click({ clickCount: 1 });
await page.type('.ql-editor', 'editor text');
await page.waitForSelector('#back-button').then((el) => el.click());
await delay(200);
const dialogElement = await page.$('dialog');
let isDialogOpen = await dialogElement.isVisible();
expect(isDialogOpen).toBe(true);
await page.waitForSelector('.dialog-cancel').then((el) => el.click());
isDialogOpen = await dialogElement.isVisible();
expect(isDialogOpen).toBe(false);
});
afterEach(afterafter);
}, 30000);
describe('Tag Tests', () => {
beforeEach(beforebefore);
test('Adding tag to appears on dashboard note card', async () => {
await createNewNote();
await fillInputAndEditor('title text', 'editor text');
await page.waitForSelector('label[for="tag-personal"]').then((el) => el.click());
await page.waitForSelector('#back-button').then((el) => el.click());
await delay(200);
const numTags = await page.$$eval('>>> .note-tags', (noteItems) => noteItems.length);
expect(numTags).toBe(1);
}, 10000)
test('Adding tag to appears on sidebar', async () => {
await createNewNote();
await fillInputAndEditor('title text', 'editor text');
await page.waitForSelector('label[for="tag-personal"]').then((el) => el.click());
await page.waitForSelector('#back-button').then((el) => el.click());
await delay(200);
const numTags = await page.$eval('label[for="sidebar-tag-personal"] > div > .tags-count', (noteItems) => noteItems.textContent);
expect(numTags).toBe("1");
}, 10000)
test('Adding multiple tag to appears on dashboard note card', async () => {
await createNewNote();
await fillInputAndEditor('title text', 'editor text');
await page.waitForSelector('label[for="tag-personal"]').then((el) => el.click());
await page.waitForSelector('label[for="tag-work"]').then((el) => el.click());
await page.waitForSelector('label[for="tag-school"]').then((el) => el.click());
await page.waitForSelector('#back-button').then((el) => el.click());
await delay(200);
await page.waitForSelector('>>> .note-more').then((el) => el.click());
const numTags = await page.$eval('>>> .note-tags', (noteItems) => noteItems.childElementCount);
expect(numTags).toBe(3);
}, 10000)
test('Adding custom tag appends to tag list', async () => {
await createNewNote();
await fillInputAndEditor('title text', 'editor text');
let tagInput = await page.$('#tag-input');
await tagInput.click({ clickCount: 1 });
await page.type('#tag-input', 'CustomTag');
await page.keyboard.press('Enter');
const numTags = await page.$eval('#notes-tags', (noteItems) => noteItems.childElementCount);
expect(numTags).toBe(5);
}, 10000)
test('Adding custom tag appears on dashboard card', async () => {
await createNewNote();
await fillInputAndEditor('title text', 'editor text');
let tagInput = await page.$('#tag-input');
await tagInput.click({ clickCount: 1 });
await page.type('#tag-input', 'CustomTag');
await page.keyboard.press('Enter');
await page.waitForSelector('#back-button').then((el) => el.click());
await delay(200);
await page.waitForSelector('>>> .note-more').then((el) => el.click());
const numTags = await page.$eval('>>> .note-tags', (noteItems) => noteItems.childElementCount);
expect(numTags).toBe(1);
// const numTags = await page.$eval('label[for="sidebar-tag-CustomTag"] > div > .tags-count', (noteItems) => noteItems.textContent);
// expect(numTags).toBe("1");
}, 10000)
test('Adding custom tag appears on sidebar', async () => {
await createNewNote();
await fillInputAndEditor('title text', 'editor text');
let tagInput = await page.$('#tag-input');
await tagInput.click({ clickCount: 1 });
await page.type('#tag-input', 'CustomTag');
await page.keyboard.press('Enter');
await page.waitForSelector('#back-button').then((el) => el.click());
await delay(200);
const numTags = await page.$eval('label[for="sidebar-tag-CustomTag"] > div > .tags-count', (noteItems) => noteItems.textContent);
expect(numTags).toBe("1");
const numList = await page.$eval('.tags-list', (noteItems) => noteItems.childElementCount);
expect(numList).toBe(5);
}, 10000)
test('Tag with the highest count is at the top of the sidebar', async () => {
await createNewNote();
await fillInputAndEditor('title text', 'editor text');
let tagInput = await page.$('#tag-input');
await tagInput.click({ clickCount: 1 });
await page.type('#tag-input', 'CustomTag');
await page.keyboard.press('Enter');
await page.waitForSelector('#back-button').then((el) => el.click());
await delay(200);
const firstTag = await page.$eval('label[for="sidebar-tag-CustomTag"]', (label) => label.htmlFor);
expect(firstTag).toBe("sidebar-tag-CustomTag");
const numList = await page.$eval('.tags-list', (noteItems) => noteItems.childElementCount);
expect(numList).toBe(5);
}, 10000)
test('Adding Tag then removing results in 0 total tags', async () => {
await createNewNote();
await fillInputAndEditor('title text', 'editor text');
await page.waitForSelector('label[for="tag-personal"]').then((el) => el.click());
await page.waitForSelector('#back-button').then((el) => el.click());
await delay(200);
await page.waitForSelector('>>> .note-front').then((el) => el.click());
await delay(200);
await page.waitForSelector('label[for="tag-personal"]').then((el) => el.click());
await page.waitForSelector('#back-button').then((el) => el.click());
await delay(200);
let numTags = await page.$$eval('>>> .note-tags', (noteItems) => noteItems.length);
expect(numTags).toBe(1);
numTags = await page.$eval('label[for="sidebar-tag-personal"] > div > .tags-count', (noteItems) => noteItems.textContent);
expect(numTags).toBe("0");
}, 10000)
afterEach(afterafter);
}, 30000);
describe('Multiple Concurrent Notes test', () => {
beforeEach(beforebefore);
test('Modifying saved note content persists', async () => {
await createNewNote();
let inputTxt = await page.$('#title-input');
await inputTxt.click({ clickCount: 1 });
await page.type('#title-input', 'title text');
let editor = await page.$('.ql-editor');
await editor.click({ clickCount: 1 });
await page.type('.ql-editor', 'editor text');
await page.waitForSelector('#back-button').then((el) => el.click());
await delay(200);
let title = await page.$eval('>>> .note-title', (el) => el.innerHTML);
expect(title).toBe('title text');
let content = await page.$eval('>>> .note-text > p', (el) => el.innerHTML);
expect(content).toBe('editor text');
expect(page.url()).toBe(URL);
await page.waitForSelector('>>> .note-front').then((el) => el.click());
inputTxt = await page.$('#title-input');
await inputTxt.click({ clickCount: 3 });
await page.type('#title-input', 'edited title');
editor = await page.$('.ql-editor');
await editor.click({ clickCount: 3 });
await page.type('.ql-editor', 'edited text');
await page.waitForSelector('#back-button').then((el) => el.click());
await delay(200);
title = await page.$eval('>>> .note-title', (el) => el.innerHTML);
expect(title).toBe('edited title');
content = await page.$eval('>>> .note-text > p', (el) => el.innerHTML);
expect(content).toBe('edited text');
expect(page.url()).toBe(URL);
const numNotes = await page.$$eval('dashboard-row', (noteItems) => noteItems.length);
expect(numNotes).toBe(1);
});
test('Multiple Notes added persist on dashboard (20)', async () => {
const NUM = 20;
for (let i = 0; i < NUM; i += 1) {
// eslint-disable-next-line
await createNewNote();
// eslint-disable-next-line
const inputTxt = await page.$('#title-input');
// eslint-disable-next-line
await inputTxt.click({ clickCount: 1 });
// eslint-disable-next-line
await page.type('#title-input', 'title text');
// eslint-disable-next-line
const editor = await page.$('.ql-editor');
// eslint-disable-next-line
await editor.click({ clickCount: 1 });
// eslint-disable-next-line
await page.type('.ql-editor', 'editor text');
// eslint-disable-next-line
await page.waitForSelector('#back-button').then((el) => el.click());
// eslint-disable-next-line
await delay(200);
}
const numNotes = await page.$$eval('dashboard-row', (noteItems) => noteItems.length);
expect(numNotes).toBe(NUM);
}, 100000);
afterEach(afterafter);
}, 30000);