mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
14-agent parallel test expansion covering integration, unit, E2E, E2E-Docker, cross-format matrix, adversarial, GUI navigation/tools/settings/visual/a11y/perf. - Integration: expand 23 tool test files with HEIC, stress, batch, edge cases - Unit: close coverage gaps in image-engine, stores, lib (metadata, auto-enhance, connection-store, lazy-with-retry, collage/file-store HEIC preview) - AI bridge: 141 new tests for dispatcher buffering, crash recovery, OOM/segfault - Cross-format: 794 parameterized tests (16 formats x 12 tools + no-crash matrix) - Adversarial: memory stress (50x large file), zero-byte, corrupted headers, unicode - E2E-Docker: expand 8 spec files with dimension verification, pipeline chains - GUI E2E: tool UI settings/interactions for all 47 tools, remove all test.skip, RBAC per-role verification, visual screenshot naming, cross-browser smoke tests, a11y ARIA/focus/contrast, performance budgets, 15-tool stability test - Fix: replace-color.ts tolerance=0 caused division-by-zero producing NaN pixels Total: 8,958 tests passing across 202 files. Zero failures, zero skips.
343 lines
12 KiB
TypeScript
343 lines
12 KiB
TypeScript
import { expect, openSettings, test, uploadTestImage } from "./helpers";
|
|
|
|
const MOD = process.platform === "darwin" ? "Meta" : "Control";
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Helper: toggle theme and wait for CSS transition to settle
|
|
// ---------------------------------------------------------------------------
|
|
async function setTheme(page: import("@playwright/test").Page, theme: "light" | "dark") {
|
|
const isDark = await page.evaluate(() => document.documentElement.classList.contains("dark"));
|
|
const wantDark = theme === "dark";
|
|
if (isDark !== wantDark) {
|
|
const themeBtn = page.locator("button[title='Toggle Theme']");
|
|
// Fall back to keyboard shortcut if theme button is not visible (e.g. login page)
|
|
if (await themeBtn.isVisible({ timeout: 1000 }).catch(() => false)) {
|
|
await themeBtn.click();
|
|
} else {
|
|
await page.keyboard.press(`${MOD}+Shift+d`);
|
|
}
|
|
await page.waitForTimeout(300);
|
|
}
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Helper: take a themed screenshot pair (light + dark) for a given page state
|
|
// ---------------------------------------------------------------------------
|
|
async function takeThemedScreenshots(page: import("@playwright/test").Page, baseName: string) {
|
|
// Light theme
|
|
await setTheme(page, "light");
|
|
await expect(page).toHaveScreenshot(`desktop-${baseName}-light.png`, {
|
|
fullPage: false,
|
|
});
|
|
|
|
// Dark theme
|
|
await setTheme(page, "dark");
|
|
await expect(page).toHaveScreenshot(`desktop-${baseName}-dark.png`, {
|
|
fullPage: false,
|
|
});
|
|
|
|
// Reset to light for next test
|
|
await setTheme(page, "light");
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Desktop visual regression: 1280x720
|
|
// ---------------------------------------------------------------------------
|
|
test.describe("Visual Desktop (1280x720)", () => {
|
|
test.use({ viewport: { width: 1280, height: 720 } });
|
|
|
|
// ---- Login page (unauthenticated) ----
|
|
test.describe("Login page", () => {
|
|
test.use({ storageState: { cookies: [], origins: [] } });
|
|
|
|
test("login page empty form - light and dark", async ({ page }) => {
|
|
await page.goto("/login");
|
|
await page.waitForLoadState("networkidle");
|
|
await page.waitForTimeout(500);
|
|
|
|
// Light screenshot
|
|
await expect(page).toHaveScreenshot("desktop-login-empty-light.png", {
|
|
fullPage: false,
|
|
});
|
|
|
|
// Toggle to dark via keyboard shortcut (login page may lack footer toggle)
|
|
await page.keyboard.press(`${MOD}+Shift+d`);
|
|
await page.waitForTimeout(300);
|
|
|
|
await expect(page).toHaveScreenshot("desktop-login-empty-dark.png", {
|
|
fullPage: false,
|
|
});
|
|
});
|
|
|
|
test("login page filled with error - light and dark", async ({ page }) => {
|
|
await page.goto("/login");
|
|
await page.waitForLoadState("networkidle");
|
|
await page.waitForTimeout(500);
|
|
|
|
// Fill in invalid credentials and submit
|
|
await page.getByLabel("Username").fill("wronguser");
|
|
await page.getByLabel("Password").fill("wrongpassword");
|
|
await page.getByRole("button", { name: /login/i }).click();
|
|
|
|
// Wait for the error message to appear
|
|
await page.waitForTimeout(1000);
|
|
await expect(page.getByText(/invalid|incorrect|failed/i).first()).toBeVisible();
|
|
|
|
// Light screenshot with error
|
|
await expect(page).toHaveScreenshot("desktop-login-error-light.png", {
|
|
fullPage: false,
|
|
});
|
|
|
|
// Toggle to dark
|
|
await page.keyboard.press(`${MOD}+Shift+d`);
|
|
await page.waitForTimeout(300);
|
|
|
|
await expect(page).toHaveScreenshot("desktop-login-error-dark.png", {
|
|
fullPage: false,
|
|
});
|
|
});
|
|
});
|
|
|
|
// ---- Home page (empty, no file uploaded) ----
|
|
test("home page empty - light and dark", async ({ loggedInPage: page }) => {
|
|
await page.waitForLoadState("networkidle");
|
|
await page.waitForTimeout(500);
|
|
|
|
await takeThemedScreenshots(page, "home-empty");
|
|
});
|
|
|
|
// ---- Home page (file uploaded, Quick Actions visible) ----
|
|
test("home page with file uploaded - light and dark", async ({ loggedInPage: page }) => {
|
|
await uploadTestImage(page);
|
|
await page.waitForTimeout(500);
|
|
|
|
// Verify Quick Actions appeared before capturing
|
|
await expect(page.getByText("Quick Actions").first()).toBeVisible();
|
|
|
|
await takeThemedScreenshots(page, "home-uploaded");
|
|
});
|
|
|
|
// ---- Fullscreen grid page (details shown - default) ----
|
|
test("fullscreen grid details shown - light and dark", async ({ loggedInPage: page }) => {
|
|
await page.goto("/fullscreen");
|
|
await page.waitForLoadState("networkidle");
|
|
await page.waitForTimeout(500);
|
|
|
|
// Details are shown by default (showDetails = true)
|
|
await expect(page.getByText("Hide Details")).toBeVisible();
|
|
|
|
await takeThemedScreenshots(page, "fullscreen-details-shown");
|
|
});
|
|
|
|
// ---- Fullscreen grid page (details hidden) ----
|
|
test("fullscreen grid details hidden - light and dark", async ({ loggedInPage: page }) => {
|
|
await page.goto("/fullscreen");
|
|
await page.waitForLoadState("networkidle");
|
|
await page.waitForTimeout(500);
|
|
|
|
// Click "Hide Details" to toggle details off
|
|
await page.getByText("Hide Details").click();
|
|
await page.waitForTimeout(300);
|
|
await expect(page.getByText("Show Details")).toBeVisible();
|
|
|
|
await takeThemedScreenshots(page, "fullscreen-details-hidden");
|
|
});
|
|
|
|
// ---- Automate page (empty pipeline) ----
|
|
test("automate page empty pipeline - light and dark", async ({ loggedInPage: page }) => {
|
|
await page.goto("/automate");
|
|
await page.waitForLoadState("networkidle");
|
|
await page.waitForTimeout(500);
|
|
|
|
await expect(page.getByText("Pipeline Builder")).toBeVisible();
|
|
|
|
await takeThemedScreenshots(page, "automate-empty");
|
|
});
|
|
|
|
// ---- Automate page (3 steps added + file uploaded) ----
|
|
test("automate page with 3 steps and file - light and dark", async ({ loggedInPage: page }) => {
|
|
await page.goto("/automate");
|
|
await page.waitForLoadState("networkidle");
|
|
await page.waitForTimeout(500);
|
|
|
|
// Add 3 pipeline steps by clicking tool buttons
|
|
const resizeBtn = page.getByRole("button", { name: /resize/i }).first();
|
|
const compressBtn = page.getByRole("button", { name: /compress/i }).first();
|
|
const convertBtn = page.getByRole("button", { name: /convert/i }).first();
|
|
|
|
await resizeBtn.click();
|
|
await page.waitForTimeout(300);
|
|
await compressBtn.click();
|
|
await page.waitForTimeout(300);
|
|
await convertBtn.click();
|
|
await page.waitForTimeout(300);
|
|
|
|
// Upload a file to the pipeline
|
|
await uploadTestImage(page);
|
|
await page.waitForTimeout(500);
|
|
|
|
await takeThemedScreenshots(page, "automate-3steps-file");
|
|
});
|
|
|
|
// ---- Files page (empty) ----
|
|
test("files page empty - light and dark", async ({ loggedInPage: page }) => {
|
|
await page.goto("/files");
|
|
await page.waitForLoadState("networkidle");
|
|
await page.waitForTimeout(500);
|
|
|
|
await takeThemedScreenshots(page, "files-empty");
|
|
});
|
|
|
|
// ---- Settings dialog - General tab ----
|
|
test("settings dialog general tab - light and dark", async ({ loggedInPage: page }) => {
|
|
await openSettings(page);
|
|
await page.waitForTimeout(500);
|
|
|
|
await takeThemedScreenshots(page, "settings-general");
|
|
});
|
|
|
|
// ---- Settings dialog - People tab ----
|
|
test("settings dialog people tab - light and dark", async ({ loggedInPage: page }) => {
|
|
await openSettings(page);
|
|
|
|
// Navigate to People tab
|
|
await page.getByRole("button", { name: "People" }).click();
|
|
await page.waitForTimeout(500);
|
|
|
|
await takeThemedScreenshots(page, "settings-people");
|
|
});
|
|
|
|
// ---- Settings dialog - About tab ----
|
|
test("settings dialog about tab - light and dark", async ({ loggedInPage: page }) => {
|
|
await openSettings(page);
|
|
|
|
// Navigate to About tab
|
|
await page.getByRole("button", { name: "About" }).click();
|
|
await page.waitForTimeout(500);
|
|
|
|
await takeThemedScreenshots(page, "settings-about");
|
|
});
|
|
|
|
// ---- Help dialog ----
|
|
test("help dialog - light and dark", async ({ loggedInPage: page }) => {
|
|
await page.waitForLoadState("networkidle");
|
|
await page.waitForTimeout(500);
|
|
|
|
// Open help dialog from the sidebar
|
|
const sidebar = page.locator("aside");
|
|
await sidebar.getByText("Help").click();
|
|
await page.getByRole("dialog").waitFor({ state: "visible", timeout: 5000 });
|
|
await page.waitForTimeout(500);
|
|
|
|
await takeThemedScreenshots(page, "help-dialog");
|
|
});
|
|
|
|
// ---- Tool page - resize (empty, no file) ----
|
|
test("resize tool empty - light and dark", async ({ loggedInPage: page }) => {
|
|
await page.goto("/resize");
|
|
await page.waitForLoadState("networkidle");
|
|
await page.waitForTimeout(500);
|
|
|
|
await takeThemedScreenshots(page, "tool-resize-empty");
|
|
});
|
|
|
|
// ---- Tool page - resize (file uploaded, settings visible) ----
|
|
test("resize tool with file - light and dark", async ({ loggedInPage: page }) => {
|
|
await page.goto("/resize");
|
|
await uploadTestImage(page);
|
|
await page.waitForTimeout(500);
|
|
|
|
// Verify settings panel appeared
|
|
await expect(page.getByText("Settings").first()).toBeVisible();
|
|
|
|
await takeThemedScreenshots(page, "tool-resize-settings");
|
|
});
|
|
|
|
// ---- Tool page - compress (before-after result) ----
|
|
test("compress tool before-after result - light and dark", async ({ loggedInPage: page }) => {
|
|
await page.goto("/compress");
|
|
await page.waitForLoadState("networkidle");
|
|
|
|
// Upload image and wait for auto-processing
|
|
await uploadTestImage(page);
|
|
await page.waitForTimeout(1000);
|
|
|
|
// Wait for the before-after slider to appear (indicates processing complete)
|
|
const slider = page.locator("[class*='before-after'], [class*='BeforeAfter']").first();
|
|
await slider.waitFor({ state: "visible", timeout: 15000 }).catch(() => {});
|
|
await page.waitForTimeout(500);
|
|
|
|
await takeThemedScreenshots(page, "tool-compress-result");
|
|
});
|
|
|
|
// ---- Tool page - crop (interactive canvas) ----
|
|
test("crop tool interactive canvas - light and dark", async ({ loggedInPage: page }) => {
|
|
await page.goto("/crop");
|
|
await page.waitForLoadState("networkidle");
|
|
|
|
// Upload image to get the interactive crop canvas
|
|
await uploadTestImage(page);
|
|
await page.waitForTimeout(1000);
|
|
|
|
// Wait for the crop canvas to render
|
|
const canvas = page.locator("canvas").first();
|
|
await canvas.waitFor({ state: "visible", timeout: 10000 }).catch(() => {});
|
|
await page.waitForTimeout(500);
|
|
|
|
await takeThemedScreenshots(page, "tool-crop-canvas");
|
|
});
|
|
|
|
// ---- Tool page - qr-generate (no-dropzone, QR preview) ----
|
|
test("qr-generate tool with preview - light and dark", async ({ loggedInPage: page }) => {
|
|
await page.goto("/qr-generate");
|
|
await page.waitForLoadState("networkidle");
|
|
await page.waitForTimeout(500);
|
|
|
|
// QR generate is a no-dropzone tool; enter text to generate a QR code
|
|
const textInput = page.locator("input[type='text'], textarea").first();
|
|
await textInput.fill("https://snapotter.com");
|
|
await page.waitForTimeout(1000);
|
|
|
|
// Wait for QR preview to render
|
|
const preview = page.locator("img, canvas, svg").first();
|
|
await preview.waitFor({ state: "visible", timeout: 10000 }).catch(() => {});
|
|
await page.waitForTimeout(500);
|
|
|
|
await takeThemedScreenshots(page, "tool-qr-generate-preview");
|
|
});
|
|
|
|
// ---- Tool page - collage (template selection) ----
|
|
test("collage tool template selection - light and dark", async ({ loggedInPage: page }) => {
|
|
await page.goto("/collage");
|
|
await page.waitForLoadState("networkidle");
|
|
await page.waitForTimeout(500);
|
|
|
|
// Collage is a no-dropzone tool with template selection UI
|
|
await takeThemedScreenshots(page, "tool-collage-templates");
|
|
});
|
|
|
|
// ---- Analytics consent page ----
|
|
test.describe("Analytics consent page", () => {
|
|
test.use({ storageState: { cookies: [], origins: [] } });
|
|
|
|
test("analytics consent page - light and dark", async ({ page }) => {
|
|
await page.goto("/analytics-consent");
|
|
await page.waitForLoadState("networkidle");
|
|
await page.waitForTimeout(500);
|
|
|
|
// Light screenshot
|
|
await expect(page).toHaveScreenshot("desktop-analytics-consent-light.png", {
|
|
fullPage: false,
|
|
});
|
|
|
|
// Toggle to dark
|
|
await page.keyboard.press(`${MOD}+Shift+d`);
|
|
await page.waitForTimeout(300);
|
|
|
|
await expect(page).toHaveScreenshot("desktop-analytics-consent-dark.png", {
|
|
fullPage: false,
|
|
});
|
|
});
|
|
});
|
|
});
|