@@ -57,6 +57,51 @@ test("inspects and hashes a local file in an immutable module worker", async ({
|
||||
expect(external).toEqual([]);
|
||||
});
|
||||
|
||||
test("automatically inspects every file in a bounded batch", async ({
|
||||
page,
|
||||
}) => {
|
||||
await page.goto("/deep/nested/file/");
|
||||
await page
|
||||
.locator('input[type="file"]')
|
||||
.first()
|
||||
.setInputFiles([
|
||||
"tests/fixtures/hello.txt",
|
||||
"tests/fixtures/second.txt",
|
||||
"tests/fixtures/third.csv",
|
||||
]);
|
||||
await expect(
|
||||
page.locator(".file-row small", { hasText: "inspected" }),
|
||||
).toHaveCount(3, {
|
||||
timeout: 30_000,
|
||||
});
|
||||
await expect(page.getByText("Inspecting 3 of 3 files")).toBeHidden();
|
||||
await page.getByRole("button", { name: "third.csv" }).click();
|
||||
await expect(
|
||||
page.getByText("text/plain (.txt)", { exact: true }),
|
||||
).toBeVisible();
|
||||
});
|
||||
|
||||
test("previews collision-safe batch renames and exposes split/hash workflows", async ({
|
||||
page,
|
||||
}) => {
|
||||
await page.goto("/deep/nested/file/");
|
||||
await page
|
||||
.locator('input[type="file"]')
|
||||
.first()
|
||||
.setInputFiles(["tests/fixtures/hello.txt", "tests/fixtures/second.txt"]);
|
||||
await page.getByLabel("Template").fill("same.{ext}");
|
||||
await page.getByRole("button", { name: "Plan rename" }).click();
|
||||
await expect(page.getByRole("list", { name: "Rename plan" })).toContainText(
|
||||
"same (2).txt",
|
||||
);
|
||||
await expect(
|
||||
page.getByRole("button", { name: "Download parts + manifest" }),
|
||||
).toBeEnabled();
|
||||
await expect(
|
||||
page.getByRole("button", { name: "Download SHA256SUMS" }),
|
||||
).toBeVisible();
|
||||
});
|
||||
|
||||
test("serves the release identity and hardened headers", async ({
|
||||
request,
|
||||
}) => {
|
||||
@@ -69,7 +114,7 @@ test("serves the release identity and hardened headers", async ({
|
||||
const manifest = await request.get("/deep/nested/file/toolbox-app.json");
|
||||
await expect(manifest.json()).resolves.toMatchObject({
|
||||
id: "de.add-ideas.file-tools",
|
||||
version: "0.1.0",
|
||||
version: "0.2.0",
|
||||
entry: "./",
|
||||
});
|
||||
});
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
import { expect, test } from "@playwright/test";
|
||||
|
||||
test("keeps the primary workspace inside a narrow viewport", async ({
|
||||
page,
|
||||
}) => {
|
||||
await page.goto("/deep/nested/file/");
|
||||
await expect(page.locator("main").first()).toBeVisible();
|
||||
await expect(
|
||||
page.locator("main .loading, main .workbench-loading"),
|
||||
).toHaveCount(0);
|
||||
|
||||
const widths = await page.evaluate(() => ({
|
||||
content: document.documentElement.scrollWidth,
|
||||
viewport: document.documentElement.clientWidth,
|
||||
}));
|
||||
expect(widths.viewport).toBeLessThanOrEqual(430);
|
||||
expect(widths.content).toBeLessThanOrEqual(widths.viewport + 1);
|
||||
});
|
||||
Reference in New Issue
Block a user