mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
Adds a `withWorkspace` Playwright fixture plus composable helpers (permissions, sidebar, composer, agent-stream, settings) so specs read as user-level intent. Migrates workspace-lifecycle and settings-host-page to the new DSL as proof.
114 lines
4.6 KiB
TypeScript
114 lines
4.6 KiB
TypeScript
import { test as base, expect, type Page } from "@playwright/test";
|
|
import { buildCreateAgentPreferences, buildSeededHost } from "./helpers/daemon-registry";
|
|
import { createWithWorkspace, type WithWorkspace } from "./helpers/with-workspace";
|
|
|
|
// Test setup is wired through an `auto: true` fixture rather than `test.beforeEach`.
|
|
// `test.beforeEach` declared at the top level of a non-test fixture file is unreliable
|
|
// across spec-file boundaries — Playwright sometimes skips it for the first test of a
|
|
// subsequent spec when multiple specs run in the same worker. Auto fixtures run
|
|
// reliably for every test that uses this `test` object.
|
|
const test = base.extend<{ paseoE2ESetup: void; withWorkspace: WithWorkspace }>({
|
|
baseURL: async ({}, provide) => {
|
|
const metroPort = process.env.E2E_METRO_PORT;
|
|
if (!metroPort) {
|
|
throw new Error("E2E_METRO_PORT not set - globalSetup must run first");
|
|
}
|
|
await provide(`http://localhost:${metroPort}`);
|
|
},
|
|
paseoE2ESetup: [
|
|
async ({ page }, provide, testInfo) => {
|
|
const daemonPort = process.env.E2E_DAEMON_PORT;
|
|
const metroPort = process.env.E2E_METRO_PORT;
|
|
if (!daemonPort) {
|
|
throw new Error(
|
|
"E2E_DAEMON_PORT is not set. Refusing to run e2e against the default daemon (e.g. localhost:6767). " +
|
|
"Ensure Playwright `globalSetup` starts the e2e daemon and exports E2E_DAEMON_PORT.",
|
|
);
|
|
}
|
|
if (daemonPort === "6767") {
|
|
throw new Error(
|
|
"E2E_DAEMON_PORT is 6767. Refusing to run e2e against the default local daemon. " +
|
|
"Fix Playwright globalSetup to start an isolated test daemon and export its port.",
|
|
);
|
|
}
|
|
if (!metroPort) {
|
|
throw new Error(
|
|
"E2E_METRO_PORT is not set. Ensure Playwright `globalSetup` starts Metro and exports E2E_METRO_PORT.",
|
|
);
|
|
}
|
|
|
|
// Hard guardrail: never allow tests to hit the developer's default daemon.
|
|
// This blocks both HTTP and WS attempts to :6767 (before any navigation).
|
|
await page.route(/:(6767)\b/, (route) => route.abort());
|
|
await page.routeWebSocket(/:(6767)\b/, async (ws) => {
|
|
await ws.close({ code: 1008, reason: "Blocked connection to localhost:6767 during e2e." });
|
|
});
|
|
|
|
const entries: string[] = [];
|
|
|
|
page.on("console", (message) => {
|
|
entries.push(`[console:${message.type()}] ${message.text()}`);
|
|
});
|
|
|
|
page.on("pageerror", (error) => {
|
|
entries.push(`[pageerror] ${error.message}`);
|
|
});
|
|
|
|
const nowIso = new Date().toISOString();
|
|
const seedNonce = Math.random().toString(36).slice(2);
|
|
const serverId = process.env.E2E_SERVER_ID;
|
|
if (!serverId) {
|
|
throw new Error("E2E_SERVER_ID is not set - expected from Playwright globalSetup.");
|
|
}
|
|
const testDaemon = buildSeededHost({
|
|
serverId,
|
|
endpoint: `127.0.0.1:${daemonPort}`,
|
|
nowIso,
|
|
});
|
|
const createAgentPreferences = buildCreateAgentPreferences(testDaemon.serverId);
|
|
|
|
await page.addInitScript(
|
|
({ daemon, preferences, seedNonce: nonce }) => {
|
|
// `addInitScript` runs on every navigation (including reloads). Some tests intentionally
|
|
// override storage and reload; they can opt out of seeding for the *next* navigation by
|
|
// setting this flag before the reload.
|
|
const disableOnceKey = "@paseo:e2e-disable-default-seed-once";
|
|
const disableValue = localStorage.getItem(disableOnceKey);
|
|
if (disableValue) {
|
|
localStorage.removeItem(disableOnceKey);
|
|
if (disableValue === nonce) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
localStorage.setItem("@paseo:e2e", "1");
|
|
localStorage.setItem("@paseo:e2e-seed-nonce", nonce);
|
|
|
|
// Hard-reset anything that could point to a developer's real daemon.
|
|
localStorage.setItem("@paseo:daemon-registry", JSON.stringify([daemon]));
|
|
localStorage.removeItem("@paseo:settings");
|
|
localStorage.setItem("@paseo:create-agent-preferences", JSON.stringify(preferences));
|
|
},
|
|
{ daemon: testDaemon, preferences: createAgentPreferences, seedNonce },
|
|
);
|
|
|
|
await provide();
|
|
|
|
if (entries.length > 0 && testInfo.status !== testInfo.expectedStatus) {
|
|
await testInfo.attach("browser-console", {
|
|
body: entries.join("\n"),
|
|
contentType: "text/plain",
|
|
});
|
|
}
|
|
},
|
|
{ auto: true },
|
|
],
|
|
withWorkspace: async ({ page }, provide) => {
|
|
const handle = createWithWorkspace(page);
|
|
await provide(handle.withWorkspace);
|
|
await handle.cleanup();
|
|
},
|
|
});
|
|
|
|
export { test, expect, type Page };
|