Files
SnapOtter/tests/e2e/image-to-pdf-target-size.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

129 lines
4.7 KiB
TypeScript

import { expect, test } from "@playwright/test";
import { getTestImagePath, waitForProcessing } from "./helpers";
async function uploadViaButton(page: import("@playwright/test").Page) {
const testImagePath = getTestImagePath();
const fileChooserPromise = page.waitForEvent("filechooser");
await page.getByRole("button", { name: /upload from computer/i }).click();
const fileChooser = await fileChooserPromise;
await fileChooser.setFiles(testImagePath);
await page.waitForTimeout(500);
}
test.describe("Image to PDF - Target File Size", () => {
test.beforeEach(async ({ page }) => {
await page.goto("/image/image-to-pdf");
await page.waitForLoadState("networkidle");
});
test("target size controls are visible", async ({ page }) => {
// The settings panel (with the target-size controls) renders after upload.
await uploadViaButton(page);
const valueInput = page.getByTestId("image-to-pdf-target-size-value");
const unitSelect = page.getByTestId("image-to-pdf-target-size-unit");
await expect(valueInput).toBeVisible();
await expect(unitSelect).toBeVisible();
await expect(unitSelect).toHaveValue("MB");
});
test("creates PDF with target size and shows success result", async ({ page }) => {
await uploadViaButton(page);
const valueInput = page.getByTestId("image-to-pdf-target-size-value");
await valueInput.fill("2");
const unitSelect = page.getByTestId("image-to-pdf-target-size-unit");
await expect(unitSelect).toHaveValue("MB");
const submitBtn = page.getByTestId("image-to-pdf-submit");
await submitBtn.click();
await waitForProcessing(page, 60_000);
const downloadLink = page.getByTestId("image-to-pdf-download");
await expect(downloadLink).toBeVisible({ timeout: 30_000 });
const compressionResult = page.getByTestId("image-to-pdf-compression-result");
await expect(compressionResult).toBeVisible();
await expect(compressionResult).toContainText("Target met");
await expect(compressionResult).toContainText("JPEG quality");
});
test("creates PDF with KB unit and shows success result", async ({ page }) => {
await uploadViaButton(page);
const valueInput = page.getByTestId("image-to-pdf-target-size-value");
await valueInput.fill("500");
const unitSelect = page.getByTestId("image-to-pdf-target-size-unit");
await unitSelect.selectOption("KB");
const submitBtn = page.getByTestId("image-to-pdf-submit");
await submitBtn.click();
await waitForProcessing(page, 60_000);
const downloadLink = page.getByTestId("image-to-pdf-download");
await expect(downloadLink).toBeVisible({ timeout: 30_000 });
const compressionResult = page.getByTestId("image-to-pdf-compression-result");
await expect(compressionResult).toBeVisible();
await expect(compressionResult).toContainText("Target met");
});
test("shows warning when target cannot be met", async ({ page }) => {
await uploadViaButton(page);
const valueInput = page.getByTestId("image-to-pdf-target-size-value");
await valueInput.fill("51");
const unitSelect = page.getByTestId("image-to-pdf-target-size-unit");
await unitSelect.selectOption("KB");
const submitBtn = page.getByTestId("image-to-pdf-submit");
await submitBtn.click();
await waitForProcessing(page, 60_000);
const downloadLink = page.getByTestId("image-to-pdf-download");
await expect(downloadLink).toBeVisible({ timeout: 30_000 });
const compressionResult = page.getByTestId("image-to-pdf-compression-result");
await expect(compressionResult).toBeVisible();
});
test("creates PDF without target size (backwards compatible)", async ({ page }) => {
await uploadViaButton(page);
const submitBtn = page.getByTestId("image-to-pdf-submit");
await submitBtn.click();
await waitForProcessing(page, 60_000);
const downloadLink = page.getByTestId("image-to-pdf-download");
await expect(downloadLink).toBeVisible({ timeout: 30_000 });
const compressionResult = page.getByTestId("image-to-pdf-compression-result");
await expect(compressionResult).not.toBeVisible();
});
test("can switch between KB and MB units", async ({ page }) => {
await uploadViaButton(page);
const unitSelect = page.getByTestId("image-to-pdf-target-size-unit");
await expect(unitSelect).toHaveValue("MB");
await unitSelect.selectOption("KB");
await expect(unitSelect).toHaveValue("KB");
await unitSelect.selectOption("MB");
await expect(unitSelect).toHaveValue("MB");
});
test("target size input accepts decimal values", async ({ page }) => {
await uploadViaButton(page);
const valueInput = page.getByTestId("image-to-pdf-target-size-value");
await valueInput.fill("1.5");
await expect(valueInput).toHaveValue("1.5");
});
});