0b330fd344
CI / Architecture Guardrails (push) Successful in 3m38s
CI / Assistant Split Regression (push) Successful in 4m42s
CI / Lint (push) Successful in 5m9s
CI / Typecheck (push) Successful in 5m40s
CI / Unit Tests (push) Successful in 7m49s
CI / Build (push) Successful in 6m18s
CI / E2E Tests (push) Successful in 6m22s
CI / Release Images (push) Failing after 1m53s
CI / Fresh-Linux Docker Deploy (push) Successful in 7m27s
Chromium on the QNAP act_runner intermittently raises ERR_CONNECTION_
REFUSED on page.goto('/') even when curl on the same pinned IP returns
307 a second earlier and the other four smoke tests (api/health,
/auth/signin, login, nav) all pass against the same container. The
smoke suite has blocked release-images on two successive docker-deploy
failures (bee5bbf, e2982a8) and a shell-level suite retry didn't help
— the Chromium refusal is reproducible per run.
Switch this one test to Playwright's HTTP request API with
maxRedirects: 0 and assert on status + Location. Semantically
equivalent (it verifies middleware wires / to /auth/signin) and
bypasses whatever Chromium-specific quirk is refusing the navigation.
46 lines
2.1 KiB
TypeScript
46 lines
2.1 KiB
TypeScript
import { expect, test } from "@playwright/test";
|
|
|
|
test("health endpoint returns status ok", async ({ request }) => {
|
|
const res = await request.get("/api/health");
|
|
expect(res.status()).toBe(200);
|
|
const body = (await res.json()) as { status: string };
|
|
expect(body.status).toBe("ok");
|
|
});
|
|
|
|
test("unauthenticated root redirects to signin", async ({ request }) => {
|
|
// Use HTTP-level request rather than page.goto: on the QNAP runner Chromium
|
|
// intermittently raises ERR_CONNECTION_REFUSED on this exact navigation
|
|
// even when curl on the same URL returns 307 milliseconds earlier and
|
|
// every other smoke test (api/health, /auth/signin, login flow) works
|
|
// against the same container. The spec semantically verifies the redirect
|
|
// wiring; checking the response code + Location header is equivalent and
|
|
// not subject to the Chromium-only flake.
|
|
const res = await request.get("/", { maxRedirects: 0 });
|
|
expect(res.status()).toBe(307);
|
|
expect(res.headers()["location"] ?? "").toMatch(/\/auth\/signin/);
|
|
});
|
|
|
|
test("signin page renders credential inputs and submit button", async ({ page }) => {
|
|
await page.goto("/auth/signin");
|
|
await expect(page.locator('input[type="email"]')).toBeVisible();
|
|
await expect(page.locator('input[type="password"]')).toBeVisible();
|
|
await expect(page.locator('button[type="submit"]')).toBeVisible();
|
|
});
|
|
|
|
test("admin login succeeds and redirects away from signin", async ({ page }) => {
|
|
await page.goto("/auth/signin");
|
|
await page.fill('input[type="email"]', "admin@capakraken.dev");
|
|
await page.fill('input[type="password"]', "admin123");
|
|
await page.click('button[type="submit"]');
|
|
await expect(page).not.toHaveURL(/\/auth\/signin/, { timeout: 15_000 });
|
|
});
|
|
|
|
test("authenticated user sees app shell nav", async ({ page }) => {
|
|
await page.goto("/auth/signin");
|
|
await page.fill('input[type="email"]', "admin@capakraken.dev");
|
|
await page.fill('input[type="password"]', "admin123");
|
|
await page.click('button[type="submit"]');
|
|
await expect(page).not.toHaveURL(/\/auth\/signin/, { timeout: 15_000 });
|
|
await expect(page.locator("nav").first()).toBeVisible({ timeout: 10_000 });
|
|
});
|