mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
Expand test coverage across all layers via 14 parallel agents: Unit tests (3,378 total, +534): - First-ever AI sidecar tests (157 tests covering bridge lifecycle, all 12 tool modules) - API route infrastructure (auth, pipeline, batch, settings, teams, roles, audit, api-keys, files, docs) - Lib coverage improvements (audit 7%->95%, worker-pool 33%->100%) - Web store/lib gap fills (features-store, tool-registry) Integration tests (4,403 total, +903): - Expanded 19 tool test files with parameter variations, format edge cases, boundary values - Cross-format matrix: 290 tests covering 14 tools x 17 formats - Adversarial/edge cases: 63 tests for extreme inputs, concurrent requests, corrupted files E2E-Docker (125 new tests): - Expanded 8 spec files + 1 new file covering all 49 tools - Added HEIC/format handling, auth failures, download verification GUI E2E (expanded 28 spec files): - Navigation, responsive layout, keyboard shortcuts - All 51 tool UIs with settings, processing, display modes - Batch/pipeline workflows, settings/RBAC, visual regression - Resilience, accessibility (ARIA, contrast, focus), performance budgets
553 lines
22 KiB
TypeScript
553 lines
22 KiB
TypeScript
import { expect, openSettings, test, uploadTestImage } from "./helpers";
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Viewport definitions
|
|
// ---------------------------------------------------------------------------
|
|
const DESKTOP = { width: 1280, height: 720 };
|
|
const TABLET = { width: 768, height: 1024 };
|
|
const MOBILE = { width: 375, height: 667 };
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Desktop (1280x720)
|
|
// ---------------------------------------------------------------------------
|
|
test.describe("Responsive - Desktop (1280x720)", () => {
|
|
test.use({ viewport: DESKTOP });
|
|
|
|
test("home page shows sidebar and tool panel", async ({ loggedInPage: page }) => {
|
|
const sidebar = page.locator("aside");
|
|
await expect(sidebar).toBeVisible();
|
|
|
|
// Tool panel with search
|
|
await expect(page.getByPlaceholder(/search/i).first()).toBeVisible();
|
|
|
|
// No mobile bottom nav
|
|
await expect(page.locator("nav.fixed").filter({ hasText: "Tools" })).not.toBeVisible();
|
|
});
|
|
|
|
test("home page has no horizontal overflow", async ({ loggedInPage: page }) => {
|
|
const scrollWidth = await page.evaluate(() => document.documentElement.scrollWidth);
|
|
const clientWidth = await page.evaluate(() => document.documentElement.clientWidth);
|
|
expect(scrollWidth).toBeLessThanOrEqual(clientWidth);
|
|
});
|
|
|
|
test("fullscreen grid shows category cards in multi-column layout", async ({
|
|
loggedInPage: page,
|
|
}) => {
|
|
await page.goto("/fullscreen");
|
|
|
|
await expect(page.getByText("Essentials")).toBeVisible();
|
|
await expect(page.getByPlaceholder(/search/i)).toBeVisible();
|
|
|
|
const scrollWidth = await page.evaluate(() => document.documentElement.scrollWidth);
|
|
const clientWidth = await page.evaluate(() => document.documentElement.clientWidth);
|
|
expect(scrollWidth).toBeLessThanOrEqual(clientWidth);
|
|
});
|
|
|
|
test("tool page shows side-by-side layout", async ({ loggedInPage: page }) => {
|
|
await page.goto("/resize");
|
|
|
|
// Tool name visible in the settings panel
|
|
await expect(page.getByText("Resize").first()).toBeVisible();
|
|
// Dropzone visible in main area
|
|
await expect(page.getByText("Upload from computer")).toBeVisible();
|
|
});
|
|
|
|
test("automate page shows tool palette and pipeline builder side by side", async ({
|
|
loggedInPage: page,
|
|
}) => {
|
|
await page.goto("/automate");
|
|
|
|
await expect(page.getByText("Tool Palette")).toBeVisible();
|
|
await expect(page.getByText("Pipeline Builder")).toBeVisible();
|
|
});
|
|
|
|
test("login page shows split layout with marketing panel", async ({ browser }) => {
|
|
const context = await browser.newContext({
|
|
storageState: { cookies: [], origins: [] },
|
|
viewport: DESKTOP,
|
|
});
|
|
const page = await context.newPage();
|
|
await page.goto("/login");
|
|
|
|
await expect(page.getByRole("heading", { name: /login/i })).toBeVisible();
|
|
await expect(page.getByText("Your one-stop-shop")).toBeVisible();
|
|
|
|
await context.close();
|
|
});
|
|
|
|
test("files page shows three-column layout", async ({ loggedInPage: page }) => {
|
|
await page.goto("/files");
|
|
|
|
// Left nav with "My Files"
|
|
await expect(page.getByText("My Files")).toBeVisible();
|
|
});
|
|
|
|
test("settings dialog fits within viewport", async ({ loggedInPage: page }) => {
|
|
await openSettings(page);
|
|
|
|
const dialogBox = page.locator("[class*='max-w']").filter({ hasText: "General" }).first();
|
|
const box = await dialogBox.boundingBox();
|
|
if (box) {
|
|
expect(box.x).toBeGreaterThanOrEqual(0);
|
|
expect(box.y).toBeGreaterThanOrEqual(0);
|
|
expect(box.x + box.width).toBeLessThanOrEqual(DESKTOP.width + 1);
|
|
expect(box.y + box.height).toBeLessThanOrEqual(DESKTOP.height + 1);
|
|
}
|
|
});
|
|
|
|
test("no horizontal overflow on automate page", async ({ loggedInPage: page }) => {
|
|
await page.goto("/automate");
|
|
|
|
const scrollWidth = await page.evaluate(() => document.documentElement.scrollWidth);
|
|
const clientWidth = await page.evaluate(() => document.documentElement.clientWidth);
|
|
expect(scrollWidth).toBeLessThanOrEqual(clientWidth);
|
|
});
|
|
|
|
test("tool page after upload has no overflow", async ({ loggedInPage: page }) => {
|
|
await page.goto("/resize");
|
|
await uploadTestImage(page);
|
|
|
|
const scrollWidth = await page.evaluate(() => document.documentElement.scrollWidth);
|
|
const clientWidth = await page.evaluate(() => document.documentElement.clientWidth);
|
|
expect(scrollWidth).toBeLessThanOrEqual(clientWidth);
|
|
});
|
|
|
|
test("all sidebar items are within viewport", async ({ loggedInPage: page }) => {
|
|
const sidebar = page.locator("aside");
|
|
const box = await sidebar.boundingBox();
|
|
if (box) {
|
|
expect(box.x).toBeGreaterThanOrEqual(0);
|
|
expect(box.x + box.width).toBeLessThanOrEqual(DESKTOP.width + 1);
|
|
}
|
|
});
|
|
|
|
test("footer buttons are within viewport", async ({ loggedInPage: page }) => {
|
|
const themeBtn = page.locator("button[title='Toggle Theme']");
|
|
await expect(themeBtn).toBeVisible();
|
|
const box = await themeBtn.boundingBox();
|
|
if (box) {
|
|
expect(box.x).toBeGreaterThanOrEqual(0);
|
|
expect(box.x + box.width).toBeLessThanOrEqual(DESKTOP.width + 1);
|
|
}
|
|
});
|
|
|
|
test("privacy page has no horizontal overflow", async ({ loggedInPage: page }) => {
|
|
await page.goto("/privacy");
|
|
|
|
const scrollWidth = await page.evaluate(() => document.documentElement.scrollWidth);
|
|
const clientWidth = await page.evaluate(() => document.documentElement.clientWidth);
|
|
expect(scrollWidth).toBeLessThanOrEqual(clientWidth);
|
|
});
|
|
});
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Tablet (768x1024)
|
|
// ---------------------------------------------------------------------------
|
|
test.describe("Responsive - Tablet (768x1024)", () => {
|
|
test.use({ viewport: TABLET });
|
|
|
|
test("home page layout renders without horizontal overflow", async ({ loggedInPage: page }) => {
|
|
const scrollWidth = await page.evaluate(() => document.documentElement.scrollWidth);
|
|
const clientWidth = await page.evaluate(() => document.documentElement.clientWidth);
|
|
expect(scrollWidth).toBeLessThanOrEqual(clientWidth);
|
|
});
|
|
|
|
test("fullscreen grid renders with no overflow", async ({ loggedInPage: page }) => {
|
|
await page.goto("/fullscreen");
|
|
|
|
await expect(page.getByPlaceholder(/search/i)).toBeVisible();
|
|
|
|
const scrollWidth = await page.evaluate(() => document.documentElement.scrollWidth);
|
|
const clientWidth = await page.evaluate(() => document.documentElement.clientWidth);
|
|
expect(scrollWidth).toBeLessThanOrEqual(clientWidth);
|
|
});
|
|
|
|
test("tool page is accessible", async ({ loggedInPage: page }) => {
|
|
await page.goto("/resize");
|
|
|
|
await expect(page.getByText("Resize").first()).toBeVisible();
|
|
await expect(page.getByText("Upload from computer")).toBeVisible();
|
|
});
|
|
|
|
test("automate page is accessible", async ({ loggedInPage: page }) => {
|
|
await page.goto("/automate");
|
|
|
|
// Pipeline builder or mobile heading should be visible
|
|
await expect(page.getByText(/pipeline|automate/i).first()).toBeVisible();
|
|
});
|
|
|
|
test("login page renders correctly", async ({ browser }) => {
|
|
const context = await browser.newContext({
|
|
storageState: { cookies: [], origins: [] },
|
|
viewport: TABLET,
|
|
});
|
|
const page = await context.newPage();
|
|
await page.goto("/login");
|
|
|
|
await expect(page.getByRole("heading", { name: /login/i })).toBeVisible();
|
|
await expect(page.getByLabel("Username")).toBeVisible();
|
|
await expect(page.getByLabel("Password")).toBeVisible();
|
|
|
|
await context.close();
|
|
});
|
|
|
|
test("files page is accessible at tablet width", async ({ loggedInPage: page }) => {
|
|
await page.goto("/files");
|
|
|
|
await expect(page.getByText("My Files")).toBeVisible();
|
|
await expect(page.getByRole("button", { name: /recent/i }).first()).toBeVisible();
|
|
|
|
const scrollWidth = await page.evaluate(() => document.documentElement.scrollWidth);
|
|
const clientWidth = await page.evaluate(() => document.documentElement.clientWidth);
|
|
expect(scrollWidth).toBeLessThanOrEqual(clientWidth);
|
|
});
|
|
|
|
test("no horizontal overflow on files page", async ({ loggedInPage: page }) => {
|
|
await page.goto("/files");
|
|
|
|
const scrollWidth = await page.evaluate(() => document.documentElement.scrollWidth);
|
|
const clientWidth = await page.evaluate(() => document.documentElement.clientWidth);
|
|
expect(scrollWidth).toBeLessThanOrEqual(clientWidth);
|
|
});
|
|
|
|
test("settings dialog fits within tablet viewport", async ({ loggedInPage: page }) => {
|
|
await openSettings(page);
|
|
|
|
const scrollWidth = await page.evaluate(() => document.documentElement.scrollWidth);
|
|
const clientWidth = await page.evaluate(() => document.documentElement.clientWidth);
|
|
expect(scrollWidth).toBeLessThanOrEqual(clientWidth);
|
|
});
|
|
|
|
test("no horizontal overflow on automate page", async ({ loggedInPage: page }) => {
|
|
await page.goto("/automate");
|
|
|
|
const scrollWidth = await page.evaluate(() => document.documentElement.scrollWidth);
|
|
const clientWidth = await page.evaluate(() => document.documentElement.clientWidth);
|
|
expect(scrollWidth).toBeLessThanOrEqual(clientWidth);
|
|
});
|
|
|
|
test("tool page after upload has no overflow", async ({ loggedInPage: page }) => {
|
|
await page.goto("/resize");
|
|
await uploadTestImage(page);
|
|
|
|
const scrollWidth = await page.evaluate(() => document.documentElement.scrollWidth);
|
|
const clientWidth = await page.evaluate(() => document.documentElement.clientWidth);
|
|
expect(scrollWidth).toBeLessThanOrEqual(clientWidth);
|
|
});
|
|
|
|
test("privacy page has no overflow at tablet width", async ({ loggedInPage: page }) => {
|
|
await page.goto("/privacy");
|
|
|
|
await expect(page.getByRole("heading", { name: "Privacy Policy" })).toBeVisible();
|
|
|
|
const scrollWidth = await page.evaluate(() => document.documentElement.scrollWidth);
|
|
const clientWidth = await page.evaluate(() => document.documentElement.clientWidth);
|
|
expect(scrollWidth).toBeLessThanOrEqual(clientWidth);
|
|
});
|
|
|
|
test("all text on home page is readable (font-size >= 12px)", async ({ loggedInPage: page }) => {
|
|
const smallText = await page.evaluate(() => {
|
|
const elements = document.querySelectorAll("p, span, a, button, label, h1, h2, h3, h4, h5");
|
|
let count = 0;
|
|
for (const el of elements) {
|
|
const style = window.getComputedStyle(el);
|
|
const fontSize = Number.parseFloat(style.fontSize);
|
|
if (fontSize < 12 && el.textContent && el.textContent.trim().length > 0) {
|
|
count++;
|
|
}
|
|
}
|
|
return count;
|
|
});
|
|
// Allow a small number of decorative/badge elements with smaller text
|
|
expect(smallText).toBeLessThanOrEqual(5);
|
|
});
|
|
});
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Mobile (375x667)
|
|
// ---------------------------------------------------------------------------
|
|
test.describe("Responsive - Mobile (375x667)", () => {
|
|
test.use({ viewport: MOBILE });
|
|
|
|
test("home page shows top bar with hamburger menu", async ({ loggedInPage: page }) => {
|
|
// Hamburger menu button (Menu icon)
|
|
const hamburger = page
|
|
.locator("button")
|
|
.filter({ has: page.locator("svg") })
|
|
.first();
|
|
await expect(hamburger).toBeVisible();
|
|
|
|
// SnapOtter branding in top bar
|
|
await expect(page.getByText("SnapOtter").first()).toBeVisible();
|
|
});
|
|
|
|
test("bottom navigation bar is visible with correct items", async ({ loggedInPage: page }) => {
|
|
// Bottom nav bar
|
|
const bottomNav = page.locator("nav.fixed");
|
|
await expect(bottomNav).toBeVisible();
|
|
|
|
// Check for nav items: Tools, Automate, Files, Settings
|
|
await expect(bottomNav.getByText("Tools")).toBeVisible();
|
|
await expect(bottomNav.getByText("Automate")).toBeVisible();
|
|
await expect(bottomNav.getByText("Files")).toBeVisible();
|
|
await expect(bottomNav.getByText("Settings")).toBeVisible();
|
|
});
|
|
|
|
test("desktop sidebar is not visible on mobile", async ({ loggedInPage: page }) => {
|
|
// The aside element used by desktop sidebar should not be visible
|
|
await expect(page.locator("aside")).not.toBeVisible();
|
|
});
|
|
|
|
test("hamburger opens sidebar overlay", async ({ loggedInPage: page }) => {
|
|
// Click the hamburger button (first button in the top bar)
|
|
const topBar = page.locator(".fixed").filter({ hasText: "SnapOtter" }).first();
|
|
const hamburger = topBar.locator("button").first();
|
|
await hamburger.click();
|
|
|
|
// Expanded sidebar overlay should appear with nav items
|
|
await expect(page.getByText("Tools").nth(1)).toBeVisible();
|
|
await expect(page.getByText("Automate").nth(1)).toBeVisible();
|
|
});
|
|
|
|
test("no horizontal overflow on home page", async ({ loggedInPage: page }) => {
|
|
const scrollWidth = await page.evaluate(() => document.documentElement.scrollWidth);
|
|
const clientWidth = await page.evaluate(() => document.documentElement.clientWidth);
|
|
expect(scrollWidth).toBeLessThanOrEqual(clientWidth);
|
|
});
|
|
|
|
test("no horizontal overflow on fullscreen page", async ({ loggedInPage: page }) => {
|
|
await page.goto("/fullscreen");
|
|
|
|
const scrollWidth = await page.evaluate(() => document.documentElement.scrollWidth);
|
|
const clientWidth = await page.evaluate(() => document.documentElement.clientWidth);
|
|
expect(scrollWidth).toBeLessThanOrEqual(clientWidth);
|
|
});
|
|
|
|
test("no horizontal overflow on tool page", async ({ loggedInPage: page }) => {
|
|
await page.goto("/resize");
|
|
|
|
const scrollWidth = await page.evaluate(() => document.documentElement.scrollWidth);
|
|
const clientWidth = await page.evaluate(() => document.documentElement.clientWidth);
|
|
expect(scrollWidth).toBeLessThanOrEqual(clientWidth);
|
|
});
|
|
|
|
test("no horizontal overflow on automate page", async ({ loggedInPage: page }) => {
|
|
await page.goto("/automate");
|
|
|
|
const scrollWidth = await page.evaluate(() => document.documentElement.scrollWidth);
|
|
const clientWidth = await page.evaluate(() => document.documentElement.clientWidth);
|
|
expect(scrollWidth).toBeLessThanOrEqual(clientWidth);
|
|
});
|
|
|
|
test("login page renders without marketing panel on mobile", async ({ browser }) => {
|
|
const context = await browser.newContext({
|
|
storageState: { cookies: [], origins: [] },
|
|
viewport: MOBILE,
|
|
});
|
|
const page = await context.newPage();
|
|
await page.goto("/login");
|
|
|
|
// Login form should be visible
|
|
await expect(page.getByRole("heading", { name: /login/i })).toBeVisible();
|
|
await expect(page.getByLabel("Username")).toBeVisible();
|
|
|
|
// Marketing panel is hidden on mobile (lg:flex means only visible at lg+)
|
|
await expect(page.getByText("Your one-stop-shop")).not.toBeVisible();
|
|
|
|
const scrollWidth = await page.evaluate(() => document.documentElement.scrollWidth);
|
|
const clientWidth = await page.evaluate(() => document.documentElement.clientWidth);
|
|
expect(scrollWidth).toBeLessThanOrEqual(clientWidth);
|
|
|
|
await context.close();
|
|
});
|
|
|
|
test("bottom nav Tools link navigates to home", async ({ loggedInPage: page }) => {
|
|
await page.goto("/automate");
|
|
const bottomNav = page.locator("nav.fixed");
|
|
await bottomNav.getByText("Tools").click();
|
|
|
|
await expect(page).toHaveURL("/");
|
|
});
|
|
|
|
test("bottom nav Automate link navigates to /automate", async ({ loggedInPage: page }) => {
|
|
const bottomNav = page.locator("nav.fixed");
|
|
await bottomNav.getByText("Automate").click();
|
|
|
|
await expect(page).toHaveURL("/automate");
|
|
});
|
|
|
|
test("bottom nav Files link navigates to /files", async ({ loggedInPage: page }) => {
|
|
const bottomNav = page.locator("nav.fixed");
|
|
await bottomNav.getByText("Files").click();
|
|
|
|
await expect(page).toHaveURL("/files");
|
|
});
|
|
|
|
test("bottom nav Settings opens settings dialog", async ({ loggedInPage: page }) => {
|
|
const bottomNav = page.locator("nav.fixed");
|
|
await bottomNav.getByText("Settings").click();
|
|
|
|
await expect(page.getByRole("heading", { name: "General" })).toBeVisible();
|
|
});
|
|
|
|
test("fullscreen grid tools are accessible on mobile", async ({ loggedInPage: page }) => {
|
|
await page.goto("/fullscreen");
|
|
|
|
await expect(page.getByPlaceholder(/search/i)).toBeVisible();
|
|
await expect(page.getByText("Essentials")).toBeVisible();
|
|
|
|
// Tool links should still work
|
|
const resizeLink = page.getByRole("link", { name: /^Resize/ }).first();
|
|
await expect(resizeLink).toBeVisible();
|
|
});
|
|
|
|
test("tool page is usable on mobile", async ({ loggedInPage: page }) => {
|
|
await page.goto("/resize");
|
|
|
|
await expect(page.getByText("Resize").first()).toBeVisible();
|
|
await expect(page.getByText("Upload from computer")).toBeVisible();
|
|
});
|
|
|
|
test("automate page mobile layout shows process button", async ({ loggedInPage: page }) => {
|
|
await page.goto("/automate");
|
|
|
|
await expect(page.getByText("Automate").first()).toBeVisible();
|
|
const processBtn = page.getByRole("button", { name: /process/i }).first();
|
|
await expect(processBtn).toBeVisible();
|
|
await expect(processBtn).toBeDisabled();
|
|
});
|
|
|
|
test("help dialog fits within mobile viewport", async ({ loggedInPage: page }) => {
|
|
// Open sidebar, then help
|
|
const topBar = page.locator(".fixed").filter({ hasText: "SnapOtter" }).first();
|
|
const hamburger = topBar.locator("button").first();
|
|
await hamburger.click();
|
|
|
|
// Click Help in expanded sidebar
|
|
await page.locator(".fixed").filter({ hasText: "Help" }).getByText("Help").click();
|
|
|
|
await expect(page.getByRole("heading", { name: "Help" })).toBeVisible();
|
|
|
|
const scrollWidth = await page.evaluate(() => document.documentElement.scrollWidth);
|
|
const clientWidth = await page.evaluate(() => document.documentElement.clientWidth);
|
|
expect(scrollWidth).toBeLessThanOrEqual(clientWidth);
|
|
});
|
|
|
|
test("files page shows mobile tabs instead of desktop nav", async ({ loggedInPage: page }) => {
|
|
await page.goto("/files");
|
|
|
|
// Mobile tabs: "Recent" and "Upload"
|
|
await expect(page.getByRole("button", { name: "Recent" })).toBeVisible();
|
|
await expect(page.getByRole("button", { name: "Upload" })).toBeVisible();
|
|
|
|
// Desktop nav "My Files" heading should not be visible
|
|
await expect(page.getByText("My Files")).not.toBeVisible();
|
|
});
|
|
|
|
test("no horizontal overflow on files page", async ({ loggedInPage: page }) => {
|
|
await page.goto("/files");
|
|
|
|
const scrollWidth = await page.evaluate(() => document.documentElement.scrollWidth);
|
|
const clientWidth = await page.evaluate(() => document.documentElement.clientWidth);
|
|
expect(scrollWidth).toBeLessThanOrEqual(clientWidth);
|
|
});
|
|
|
|
test("dropzone is accessible and clickable on mobile", async ({ loggedInPage: page }) => {
|
|
// The dropzone should be visible and have the upload button
|
|
const dropzone = page.locator("section[aria-label='File drop zone']");
|
|
await expect(dropzone).toBeVisible();
|
|
await expect(page.getByText("Upload from computer")).toBeVisible();
|
|
});
|
|
|
|
test("privacy policy page renders on mobile without overflow", async ({ loggedInPage: page }) => {
|
|
await page.goto("/privacy");
|
|
|
|
await expect(page.getByRole("heading", { name: "Privacy Policy" })).toBeVisible();
|
|
|
|
const scrollWidth = await page.evaluate(() => document.documentElement.scrollWidth);
|
|
const clientWidth = await page.evaluate(() => document.documentElement.clientWidth);
|
|
expect(scrollWidth).toBeLessThanOrEqual(clientWidth);
|
|
});
|
|
|
|
test("footer theme and language buttons are hidden on mobile", async ({ loggedInPage: page }) => {
|
|
// Footer is rendered only on desktop (!isMobile)
|
|
await expect(page.locator("button[title='Toggle Theme']")).not.toBeVisible();
|
|
await expect(page.locator("button[title='Language']")).not.toBeVisible();
|
|
});
|
|
|
|
test("settings dialog fits within mobile viewport", async ({ loggedInPage: page }) => {
|
|
const bottomNav = page.locator("nav.fixed");
|
|
await bottomNav.getByText("Settings").click();
|
|
|
|
await expect(page.getByRole("heading", { name: "General" })).toBeVisible();
|
|
|
|
const scrollWidth = await page.evaluate(() => document.documentElement.scrollWidth);
|
|
const clientWidth = await page.evaluate(() => document.documentElement.clientWidth);
|
|
expect(scrollWidth).toBeLessThanOrEqual(clientWidth);
|
|
});
|
|
|
|
test("tool page after upload has no overflow on mobile", async ({ loggedInPage: page }) => {
|
|
await page.goto("/resize");
|
|
await uploadTestImage(page);
|
|
|
|
const scrollWidth = await page.evaluate(() => document.documentElement.scrollWidth);
|
|
const clientWidth = await page.evaluate(() => document.documentElement.clientWidth);
|
|
expect(scrollWidth).toBeLessThanOrEqual(clientWidth);
|
|
});
|
|
|
|
test("all text on mobile home page is readable (font-size >= 12px)", async ({
|
|
loggedInPage: page,
|
|
}) => {
|
|
const smallText = await page.evaluate(() => {
|
|
const elements = document.querySelectorAll("p, span, a, button, label, h1, h2, h3, h4, h5");
|
|
let count = 0;
|
|
for (const el of elements) {
|
|
const style = window.getComputedStyle(el);
|
|
const fontSize = Number.parseFloat(style.fontSize);
|
|
if (fontSize < 12 && el.textContent && el.textContent.trim().length > 0) {
|
|
count++;
|
|
}
|
|
}
|
|
return count;
|
|
});
|
|
// Allow a small number of decorative/badge elements with smaller text
|
|
expect(smallText).toBeLessThanOrEqual(5);
|
|
});
|
|
|
|
test("bottom nav items are all within viewport bounds", async ({ loggedInPage: page }) => {
|
|
const bottomNav = page.locator("nav.fixed");
|
|
const box = await bottomNav.boundingBox();
|
|
if (box) {
|
|
expect(box.x).toBeGreaterThanOrEqual(0);
|
|
expect(box.x + box.width).toBeLessThanOrEqual(MOBILE.width + 1);
|
|
expect(box.y + box.height).toBeLessThanOrEqual(MOBILE.height + 1);
|
|
}
|
|
});
|
|
|
|
test("SnapOtter branding text is readable on mobile", async ({ loggedInPage: page }) => {
|
|
const branding = page.getByText("SnapOtter").first();
|
|
await expect(branding).toBeVisible();
|
|
|
|
const fontSize = await branding.evaluate((el) =>
|
|
Number.parseFloat(window.getComputedStyle(el).fontSize),
|
|
);
|
|
// Branding text should be at least 14px to be readable
|
|
expect(fontSize).toBeGreaterThanOrEqual(14);
|
|
});
|
|
|
|
test("no horizontal overflow on login page", async ({ browser }) => {
|
|
const context = await browser.newContext({
|
|
storageState: { cookies: [], origins: [] },
|
|
viewport: MOBILE,
|
|
});
|
|
const page = await context.newPage();
|
|
await page.goto("/login");
|
|
|
|
const scrollWidth = await page.evaluate(() => document.documentElement.scrollWidth);
|
|
const clientWidth = await page.evaluate(() => document.documentElement.clientWidth);
|
|
expect(scrollWidth).toBeLessThanOrEqual(clientWidth);
|
|
|
|
await context.close();
|
|
});
|
|
});
|