Skip to content

Commit 48e0539

Browse files
committed
test: cleaned up pagination tests (#4078)
1 parent 469bfbd commit 48e0539

File tree

4 files changed

+232
-151
lines changed

4 files changed

+232
-151
lines changed

explorer/e2e/anvil/anvil-pagination-content.spec.ts

-78
This file was deleted.
+22-67
Original file line numberDiff line numberDiff line change
@@ -1,79 +1,34 @@
1-
import { expect, test } from "@playwright/test";
2-
import { anvilTabs } from "./anvil-tabs";
3-
4-
const pageCountRegex = /Page [0-9]+ of [0-9]+/;
5-
const BackButtonTestID = "WestRoundedIcon";
6-
const ForwardButtonTestID = "EastRoundedIcon";
7-
8-
test.beforeEach(async ({ page }) => {
9-
// Navigate to the Donors page
10-
await page.goto(anvilTabs.donors.url);
11-
await expect(
12-
page.getByRole("tab").getByText(anvilTabs.donors.tabName)
13-
).toBeVisible();
14-
});
1+
import { test } from "@playwright/test";
2+
import {
3+
filterAndTestLastPagePagination,
4+
testFirstPagePagination,
5+
testPaginationContent,
6+
} from "../testFunctions";
7+
import { anvilFilterNames, anvilTabs, FILE_FORMAT_INDEX } from "./anvil-tabs";
158

169
test("Check first page has disabled back and enabled forward pagination buttons on Donors Page", async ({
1710
page,
1811
}) => {
19-
// Should start on first page
20-
await expect(page.getByText(pageCountRegex, { exact: true })).toHaveText(
21-
/Page 1 of [0-9]+/
22-
);
23-
// Forward button should start enabled
24-
await expect(
25-
page
26-
.getByRole("button")
27-
.filter({ has: page.getByTestId(ForwardButtonTestID) })
28-
).toBeEnabled();
29-
// Back Button should start disabled
30-
await expect(
31-
page.getByRole("button").filter({ has: page.getByTestId(BackButtonTestID) })
32-
).toBeDisabled();
12+
await testFirstPagePagination(page, anvilTabs.donors);
3313
});
3414

35-
test("Check that forward pagination increments the current page and that page count stays static for the first five pages on the donors tab", async ({
15+
test("Paginate through the entire Files tab to confirm that the page number stays consistent and that paginating forwards is disabled on the last page. Uses filters to reduce the amount of calls necessary", async ({
3616
page,
3717
}) => {
3818
test.setTimeout(500000);
39-
// Should start on first page, and there should be multiple pages available
40-
await expect(page.getByText(pageCountRegex, { exact: true })).toHaveText(
41-
/Page 1 of [0-9]+/
42-
);
43-
await expect(page.getByText(pageCountRegex, { exact: true })).not.toHaveText(
44-
"Page 1 of 1"
45-
);
46-
47-
// Detect number of pages
48-
const SplitStartingPageText = (
49-
await page.getByText(pageCountRegex, { exact: true }).innerText()
50-
).split(" ");
51-
const max_pages = parseInt(
52-
SplitStartingPageText[SplitStartingPageText.length - 1]
19+
const result = await filterAndTestLastPagePagination(
20+
page,
21+
anvilTabs.files,
22+
anvilFilterNames[FILE_FORMAT_INDEX]
5323
);
54-
// Paginate forwards
55-
for (let i = 2; i < max_pages + 1; i++) {
56-
await page
57-
.getByRole("button")
58-
.filter({ has: page.getByTestId(ForwardButtonTestID) })
59-
.click();
60-
// Expect the page count to have incremented
61-
await expect(page.getByText(pageCountRegex, { exact: true })).toHaveText(
62-
`Page ${i} of ${max_pages}`
63-
);
24+
if (!result) {
25+
test.fail();
6426
}
65-
// Expect to be on the last page
66-
await expect(page.getByText(pageCountRegex, { exact: true })).toContainText(
67-
`Page ${max_pages} of ${max_pages}`
68-
);
69-
// Expect the back button to be enabled on the last page
70-
await expect(
71-
page.getByRole("button").filter({ has: page.getByTestId(BackButtonTestID) })
72-
).toBeEnabled();
73-
// Expect the forward button to be disabled
74-
await expect(
75-
page
76-
.getByRole("button")
77-
.filter({ has: page.getByTestId(ForwardButtonTestID) })
78-
).toBeDisabled();
27+
});
28+
29+
test("Check forward and backwards pagination causes the page content to change on the Biosamples page", async ({
30+
page,
31+
}) => {
32+
test.setTimeout(90000);
33+
await testPaginationContent(page, anvilTabs.biosamples);
7934
});

0 commit comments

Comments
 (0)