Files
SnapOtter/tests/e2e/gui-format-support.spec.ts
T
SnapOtterandGitHub 63a03d26f2 feat: pipeline templates, analytics opt-out, 83 conversion presets, positioning + e2e modernization
Lands five integrated branches: pipeline templates (#355), analytics opt-out (#354), 83 conversion presets bringing the catalog to 240 tools (#356), self-hosted positioning (#353), and e2e modernization (#351).

Integration fixes: aligned stale web analytics tests with the opt-out/allow-list model, closed 3 CodeQL incomplete-sanitization alerts in the i18n generator, resolved settings/index/docs/format-matrix conflicts, and corrected tool counts to 240.
2026-06-28 18:57:53 +08:00

160 lines
5.8 KiB
TypeScript

import path from "node:path";
import { expect, test, uploadTestImage, waitForProcessing } from "./helpers";
const fixtureFormat = (name: string) =>
path.join(process.cwd(), "tests", "fixtures", "image", "formats", name);
const fixtureImage = (name: string) =>
path.join(process.cwd(), "tests", "fixtures", "image", "valid", name);
async function uploadFixture(page: import("@playwright/test").Page, filePath: string) {
const fileChooserPromise = page.waitForEvent("filechooser");
await page.locator("[class*='border-dashed']").first().click();
const fileChooser = await fileChooserPromise;
await fileChooser.setFiles(filePath);
await page.waitForTimeout(500);
}
test.describe("Format upload and resize processing", () => {
test.describe.configure({ timeout: 60_000 });
const formats: [string, string][] = [
["PNG", "sample.png"],
["JPEG", "sample.jpg"],
["WebP", "sample.webp"],
["BMP", "sample.bmp"],
["AVIF", "sample.avif"],
["GIF", "sample.gif"],
["SVG", "sample.svg"],
["TIFF", "sample.tiff"],
];
for (const [label, fileName] of formats) {
test(`${label} uploads and resizes`, async ({ loggedInPage: page }) => {
await page.goto("/image/resize");
await uploadFixture(page, fixtureFormat(fileName));
await page.locator("input[placeholder='Auto']").first().fill("25");
await page.getByRole("button", { name: "Resize" }).click();
await waitForProcessing(page);
await expect(page.getByRole("link", { name: /download/i }).first()).toBeVisible({
timeout: 15_000,
});
});
}
test("HEIC uploads and resizes", async ({ loggedInPage: page }) => {
await page.goto("/image/resize");
await uploadFixture(page, fixtureImage("test-200x150.heic"));
await page.locator("input[placeholder='Auto']").first().fill("25");
await page.getByRole("button", { name: "Resize" }).click();
await waitForProcessing(page);
await expect(page.getByRole("link", { name: /download/i }).first()).toBeVisible({
timeout: 15_000,
});
});
});
test.describe("Convert tool - new output formats", () => {
test.describe.configure({ timeout: 60_000 });
for (const fmt of ["bmp", "ico", "jp2", "qoi", "jxl"]) {
test(`converts PNG to ${fmt.toUpperCase()}`, async ({ loggedInPage: page }) => {
await page.goto("/image/convert");
await uploadTestImage(page);
await page.selectOption("#convert-target-format", fmt);
await page.getByRole("button", { name: /convert/i }).click();
await waitForProcessing(page);
const ok = await page
.getByRole("link", { name: /download/i })
.first()
.waitFor({ state: "visible", timeout: 15_000 })
.then(() => true)
.catch(() => false);
const err = !ok
? await page
.getByText(/error|unsupported|failed|not available/i)
.first()
.waitFor({ state: "visible", timeout: 5_000 })
.then(() => true)
.catch(() => false)
: false;
expect(ok || err, `${fmt}: expected download or error`).toBe(true);
});
}
});
test.describe("Convert tool - format dropdown", () => {
test("contains all 13 output formats", async ({ loggedInPage: page }) => {
await page.goto("/image/convert");
// The settings panel (with the format dropdown) mounts only after a file is loaded.
await uploadTestImage(page);
await page.waitForSelector("#convert-target-format", { timeout: 10_000 });
const options = await page
.locator("#convert-target-format option")
.evaluateAll((els) => els.map((el) => (el as HTMLOptionElement).value));
for (const fmt of [
"jpg",
"png",
"webp",
"avif",
"tiff",
"gif",
"heic",
"heif",
"jxl",
"bmp",
"ico",
"jp2",
"qoi",
]) {
expect(options, `missing: ${fmt}`).toContain(fmt);
}
});
});
test.describe("HEIC-to-JPG conversion", () => {
test.describe.configure({ timeout: 60_000 });
test("uploads HEIC, converts to JPG", async ({ loggedInPage: page }) => {
await page.goto("/image/convert");
await uploadFixture(page, fixtureImage("test-200x150.heic"));
await expect(page.getByText(/heic/i).first()).toBeVisible({ timeout: 10_000 });
await page.selectOption("#convert-target-format", "jpg");
await page.getByRole("button", { name: /convert/i }).click();
await waitForProcessing(page);
await expect(page.getByRole("link", { name: /download/i }).first()).toBeVisible({
timeout: 15_000,
});
});
});
test.describe("Exotic format upload acceptance", () => {
test.describe.configure({ timeout: 60_000 });
const exoticFormats: [string, string][] = [
["SVGZ", "sample.svgz"],
["EPS", "sample.eps"],
["PPM", "sample.ppm"],
["PGM", "sample.pgm"],
["PBM", "sample.pbm"],
["CUR", "sample.cur"],
["APNG", "sample.apng"],
];
for (const [label, fileName] of exoticFormats) {
test(`${label} uploads to info without crashing`, async ({ loggedInPage: page }) => {
await page.goto("/image/info");
await uploadFixture(page, fixtureFormat(fileName));
await page.getByRole("button", { name: /read info/i }).click();
await waitForProcessing(page);
const meta = await page
.getByText(/width|height|format|dimensions|size|resolution|channels|pixel/i)
.first()
.waitFor({ state: "visible", timeout: 15_000 })
.then(() => true)
.catch(() => false);
const err = !meta
? await page
.getByText(/error|unsupported|failed|not supported|cannot|invalid/i)
.first()
.waitFor({ state: "visible", timeout: 5_000 })
.then(() => true)
.catch(() => false)
: false;
expect(meta || err, `${label}: expected metadata or error`).toBe(true);
});
}
});