-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpagination.e2e.ts
69 lines (54 loc) · 2.44 KB
/
pagination.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
/*
* 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, type Page } from '@playwright/test'
import { expectScrollTop, scrollTo } from './utils'
// expectRowVisible is too have for all this
const expectCell = (page: Page, name: string) =>
expect(page.getByRole('cell', { name, exact: true })).toBeVisible()
test('pagination', async ({ page }) => {
await page.goto('/projects/mock-project/snapshots')
const table = page.getByRole('table')
const rows = table.getByRole('rowgroup').last().getByRole('row')
const nextButton = page.getByRole('button', { name: 'next' })
const prevButton = page.getByRole('button', { name: 'prev', exact: true })
const spinner = page.getByLabel('Pagination').getByLabel('Spinner')
await expect(spinner).toBeHidden()
await expect(prevButton).toBeDisabled() // we're on the first page
await expectCell(page, 'snapshot-1')
await expectCell(page, 'disk-1-snapshot-25')
await expect(rows).toHaveCount(25)
await scrollTo(page, 100)
await nextButton.click()
// spinner goes while the data is fetching...
await expect(spinner).toBeVisible()
await expectScrollTop(page, 100) // scroll resets to top on page change
// ...and goes away roughly when scroll resets
await expect(spinner).toBeHidden()
await expectScrollTop(page, 0) // scroll resets to top on page change
await expectCell(page, 'disk-1-snapshot-26')
await expectCell(page, 'disk-1-snapshot-50')
await expect(rows).toHaveCount(25)
await nextButton.click()
await expectCell(page, 'disk-1-snapshot-51')
await expectCell(page, 'disk-1-snapshot-75')
await expect(rows).toHaveCount(25)
await nextButton.click()
await expectCell(page, 'disk-1-snapshot-76')
await expectCell(page, 'disk-1-snapshot-86')
await expect(rows).toHaveCount(12)
await expect(nextButton).toBeDisabled() // no more pages
await scrollTo(page, 250)
await prevButton.click()
await expect(spinner).toBeHidden({ timeout: 10 }) // no spinner, cached page
await expect(rows).toHaveCount(25)
await expectCell(page, 'disk-1-snapshot-51')
await expectCell(page, 'disk-1-snapshot-75')
await expectScrollTop(page, 0) // scroll resets to top on prev too
await nextButton.click()
await expect(spinner).toBeHidden({ timeout: 10 }) // no spinner, cached page
})