mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
- Add tool-specific suffix to output filenames so downloads don't overwrite originals (batch & single-tool routes) - Skip deleting shared models when uninstalling a bundle that shares models with another installed bundle - Auto-detect NVIDIA GPU and swap GPU-only pip packages (onnxruntime-gpu, paddlepaddle-gpu) for CPU equivalents - Refactor docker-compose with YAML anchors and explicit cpu/gpu profiles - Add libheif-plugin-x265 to Dockerfile - Fix install-all queue logic to handle concurrent individual installs and clear stale errors - Unify playwright docker config to use same test dir with API_URL env var - Fix flaky e2e selectors, rename Strip Metadata → Remove Metadata, handle collage custom dropzone, improve fallback test image generation Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
49 lines
1.8 KiB
TypeScript
49 lines
1.8 KiB
TypeScript
import path from "node:path";
|
|
import { expect, test } from "./helpers";
|
|
|
|
function fixturePath(name: string): string {
|
|
return path.join(process.cwd(), "tests", "fixtures", name);
|
|
}
|
|
|
|
async function uploadFile(page: import("@playwright/test").Page, filePath: string) {
|
|
const fileChooserPromise = page.waitForEvent("filechooser");
|
|
const dropzone = page.locator("[class*='border-dashed']").first();
|
|
await dropzone.click();
|
|
const fileChooser = await fileChooserPromise;
|
|
await fileChooser.setFiles(filePath);
|
|
await page.waitForTimeout(1000);
|
|
}
|
|
|
|
test.describe("Blur Faces tool", () => {
|
|
test("page loads with correct UI controls", async ({ loggedInPage: page }) => {
|
|
await page.goto("/blur-faces");
|
|
|
|
await expect(page.getByText("Blur Radius")).toBeVisible();
|
|
await expect(page.getByText("Detection Sensitivity")).toBeVisible();
|
|
await expect(page.getByTestId("blur-faces-submit")).toBeVisible();
|
|
});
|
|
|
|
test("HEIC image processes without error", async ({ loggedInPage: page }) => {
|
|
await page.goto("/blur-faces");
|
|
await uploadFile(page, fixturePath("test-portrait.heic"));
|
|
|
|
await page.getByTestId("blur-faces-submit").click();
|
|
|
|
// Should complete without the old "cannot identify image file" error
|
|
await expect(
|
|
page.getByTestId("blur-faces-download").or(page.getByText("No faces detected")).first(),
|
|
).toBeVisible({ timeout: 120_000 });
|
|
|
|
await expect(page.locator("text=cannot identify image")).not.toBeVisible();
|
|
});
|
|
|
|
test("no-face image shows warning message", async ({ loggedInPage: page }) => {
|
|
await page.goto("/blur-faces");
|
|
await uploadFile(page, fixturePath("test-blank.png"));
|
|
|
|
await page.getByTestId("blur-faces-submit").click();
|
|
|
|
await expect(page.getByText("No faces detected")).toBeVisible({ timeout: 120_000 });
|
|
});
|
|
});
|