-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathrow-select.e2e.ts
84 lines (68 loc) · 3 KB
/
row-select.e2e.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
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
*
* Copyright Oxide Computer Company
*/
import { expect, test } from '@playwright/test'
import { forEach } from './utils'
// This could easily be done as a testing-lib test but I want it in a real
// table. The .is-selected asserts are slightly brittle (and contrary to our
// usual testing philosophy), but they let us make sure selection is being
// passed through to the UI Table.
// skipped for now because we no longer have any live multiselect tables to test
// with. TODO: make it a testing-lib test instead?
// eslint-disable-next-line playwright/no-skipped-test
test.skip('Row multiselect works as expected', async ({ page }) => {
// SETUP
const headCheckbox = page.locator('thead >> role=checkbox')
const headMixed = page.locator('thead >> role=checkbox[checked="mixed"]')
const expectHeadMixed = async () => {
await expect(headCheckbox).not.toBeChecked()
await expect(headMixed).toHaveCount(1)
}
const expectHeadNotMixed = async () => {
await expect(headCheckbox).not.toBeChecked()
await expect(headMixed).toHaveCount(0)
}
const bodyCheckboxes = page.locator('tbody >> role=checkbox')
const expectRowsAllChecked = () =>
forEach(bodyCheckboxes, (ch) => expect(ch).toBeChecked())
const expectRowsAllUnchecked = () =>
forEach(bodyCheckboxes, (ch) => expect(ch).not.toBeChecked())
// ACTUAL TEST
await page.goto('/projects/mock-project/vpcs/mock-vpc?tab=firewall-rules')
// baseline empty state
await expect(headCheckbox).toHaveCount(1)
await expect(headCheckbox).not.toBeChecked()
await expectHeadNotMixed()
await expect(bodyCheckboxes).toHaveCount(4)
await expectRowsAllUnchecked()
await expect(page.locator('.is-selected')).toHaveCount(0)
// check first row, header is now mixed
await bodyCheckboxes.first().check()
await expect(page.locator('.is-selected')).toHaveCount(1)
await expectHeadMixed()
// uncheck first row, header goes back to empty
await bodyCheckboxes.first().uncheck()
await expectHeadNotMixed()
await expect(page.locator('.is-selected')).toHaveCount(0)
// can also uncheck the row by checking and unchecking the header checkbox
await bodyCheckboxes.first().check()
await headCheckbox.click() // first click selects all
await expectRowsAllChecked()
await expect(page.locator('.is-selected')).toHaveCount(4)
await headCheckbox.click() // second click unselects all
await expectRowsAllUnchecked()
// check 3 checkboxes, header stays mixed
await bodyCheckboxes.nth(0).check()
await bodyCheckboxes.nth(1).check()
await bodyCheckboxes.nth(2).check()
await expect(page.locator('.is-selected')).toHaveCount(3)
await expectHeadMixed()
// check the 4th and it switches to checked
await bodyCheckboxes.nth(3).check()
await expect(headCheckbox).toBeChecked()
await expect(page.locator('.is-selected')).toHaveCount(4)
})