40 lines
1.5 KiB
TypeScript
40 lines
1.5 KiB
TypeScript
import { expect, test } from "@playwright/test";
|
|
|
|
test("renders live overview data from query service without global object list", async ({ page }) => {
|
|
const apiRequests: string[] = [];
|
|
const consoleErrors: string[] = [];
|
|
|
|
page.on("request", (request) => {
|
|
const path = new URL(request.url()).pathname;
|
|
if (path.startsWith("/api/v1")) {
|
|
apiRequests.push(path);
|
|
}
|
|
});
|
|
page.on("console", (message) => {
|
|
if (message.type() === "error") {
|
|
consoleErrors.push(message.text());
|
|
}
|
|
});
|
|
|
|
await page.goto("/");
|
|
|
|
await expect(page.getByText("run 7144")).toBeVisible();
|
|
await expect(page.getByText("963,779")).toBeVisible();
|
|
await expect(page.getByText("534,760")).toBeVisible();
|
|
await expect(page.getByText("Top repositories by workload")).toBeVisible();
|
|
await expect(page.locator(".issue-card").first().getByText("Reject")).toBeVisible();
|
|
|
|
expect(apiRequests).toContain("/api/v1/latest_run");
|
|
expect(apiRequests).toContain("/api/v1/runs/run_7144/stats/object-types");
|
|
expect(apiRequests).toContain("/api/v1/runs/run_7144/stats/validation");
|
|
expect(apiRequests).toContain("/api/v1/runs/run_7144/stats/reasons");
|
|
expect(apiRequests).toContain("/api/v1/runs/run_7144/repos");
|
|
expect(apiRequests).not.toContain("/api/v1/runs/run_7144/objects");
|
|
expect(consoleErrors).toEqual([]);
|
|
|
|
await page.screenshot({
|
|
path: "../../../../specs/develop/20260617/m3_playwright/rpki-explorer-overview-live.png",
|
|
fullPage: true
|
|
});
|
|
});
|