Files
clawmates/frontend/tests/e2e/p1-chat.spec.ts
T
Omar SobhandClaude Fable 5 de38449b41 P2 BLOCKING exit green: approval interception chain end-to-end
- tc-tools: Effect declarations -> §15 GatedCategory mapping, deny-by-default
  external reach, taint invariant property-tested (tainted external effects
  are NEVER auto-allowed)
- tc-safety: pending approvals with exact payload+preview, CAS decide with
  audit + single-use grant in one tx, checkpoint suspend/load, exclusive
  resume claim, expiry sweep, decided-unresumed work queue (migration 0004
  adds the outbox the gated email.send tool writes)
- tc-runtime: resumable LoopState checkpointed to agent_runs; gated tool ->
  approval row -> approval_required/run_suspended events -> suspend; resume
  consumes the grant BEFORE executing (spent grant = no execution), rejection
  feeds a structured refusal in-band; durable resume sweeper; continuous
  journal seq across suspension (tested). ContentPart::Text became a struct
  variant — internally-tagged newtype primitives don't serialize
- tc-api: GET/decide approvals endpoints (409 double-decide, tenant
  isolation), decision triggers in-process resume; full chain proven over
  HTTP incl. gateway resumeFrom continuation
- frontend: approval_required/run_suspended events, suspended reply state,
  inline ApprovalCard (§10: summary, category, exact payload preview,
  approve/reject -> decide + stream re-attach), /approvals queue page, nav
- E2E (14 journeys, workers:1 to serialize the shared backend): gated email
  blocks with disabled composer -> approve -> continuation + ✓ step + reload
  replay; reject -> ✗ step, nothing executed; queue page decides pending

106 Rust + 61 frontend tests + 14 Playwright journeys green.

Co-Authored-By: Claude Fable 5 <[email protected]>
2026-06-10 04:58:47 -05:00

142 lines
4.9 KiB
TypeScript

import { expect, test, type Page } from "@playwright/test";
// P1 exit criterion (spec §17): a multi-session conversation with
// replayable step traces, end-to-end against the real backend running the
// scripted provider (deploy/e2e/scenarios.toml).
const OWNER_EMAIL = "[email protected]";
const OWNER_PASSWORD = "e2e-password";
async function signIn(page: Page) {
await page.goto("/login");
await page.getByLabel("Email").fill(OWNER_EMAIL);
await page.getByLabel("Password").fill(OWNER_PASSWORD);
await page.getByRole("button", { name: "Sign in" }).click();
await expect(page.getByRole("heading", { name: "TeamClaw" })).toBeVisible();
}
async function openScout(page: Page) {
await page.getByRole("link", { name: /Scout/ }).click();
await expect(page).toHaveURL(/\/claws\/.+\/chat\//);
}
/** Clicks "New" and waits for the navigation: the previous session may show
* the same welcome heading, so the URL change is the reliable signal. */
async function newSession(page: Page) {
const before = page.url();
await page.getByRole("button", { name: "New" }).click();
await page.waitForURL((url) => url.toString() !== before);
}
async function sendMessage(page: Page, text: string) {
const box = page.getByLabel("Message Scout");
await box.fill(text);
await box.press("Enter");
}
test("welcome state appears for a fresh session", async ({ page }) => {
await signIn(page);
await openScout(page);
await newSession(page);
await expect(
page.getByRole("heading", { name: /Hi, I'm Scout/ }),
).toBeVisible();
await expect(
page.getByRole("button", { name: "Create a daily briefing" }),
).toBeVisible();
});
test("a message streams back a scripted reply", async ({ page }) => {
await signIn(page);
await openScout(page);
await sendMessage(page, "hello [[scenario:hello]]");
await expect(page.getByText("hello [[scenario:hello]]")).toBeVisible();
await expect(
page.getByText("Hello! I'm Scout, your research analyst."),
).toBeVisible();
});
test("tool runs render a step trace that survives reload", async ({ page }) => {
await signIn(page);
await openScout(page);
await newSession(page);
await expect(
page.getByRole("heading", { name: /Hi, I'm Scout/ }),
).toBeVisible();
await sendMessage(page, "what time is it? [[scenario:tool-time]]");
await expect(page.getByText(/I checked the current time/)).toBeVisible();
const trace = page.getByRole("button", { name: /1 step/ });
await expect(trace).toBeVisible();
await trace.click();
await expect(page.getByText(/clock\.now/)).toBeVisible();
// Reload: history replays the identical transcript and trace (§13).
await page.reload();
await expect(page.getByText(/I checked the current time/)).toBeVisible();
const replayedTrace = page.getByRole("button", { name: /1 step/ });
await replayedTrace.click();
await expect(page.getByText(/clock\.now/)).toBeVisible();
});
test("multiple sessions hold separate transcripts", async ({ page }) => {
await signIn(page);
await openScout(page);
// First session.
await newSession(page);
await expect(
page.getByRole("heading", { name: /Hi, I'm Scout/ }),
).toBeVisible();
await sendMessage(page, "first session message");
await expect(page.getByText("I received: first session message")).toBeVisible();
// Second session.
await newSession(page);
await expect(
page.getByRole("heading", { name: /Hi, I'm Scout/ }),
).toBeVisible();
await sendMessage(page, "second session message");
await expect(
page.getByText("I received: second session message"),
).toBeVisible();
await expect(page.getByText("first session message")).not.toBeVisible();
// Switch back via the sessions column (?sessions=1, §6). Rows sort most
// recently active first: [current, first-session, original]; the first
// non-active row is the session we just left.
await page.getByRole("button", { name: "Sessions" }).click();
const column = page.getByRole("complementary", { name: "Sessions" });
await expect(column.getByRole("listitem").first()).toBeVisible();
await column
.locator("button:not([aria-current])")
.filter({ hasText: "Untitled" })
.first()
.click();
await expect(page.getByText("I received: first session message")).toBeVisible();
});
test("creating a claw from the rail goes straight to its chat", async ({
page,
}) => {
await signIn(page);
await page.getByRole("link", { name: "New claw" }).click();
await page.getByLabel("Name *").fill("Drafter");
await page.getByLabel("Job title *").fill("Writer");
await page
.getByLabel(/Job description/)
.fill("You draft crisp documents.");
await page.getByRole("button", { name: "Create claw" }).click();
await expect(page).toHaveURL(/\/claws\/.+\/chat\//);
await expect(
page.getByRole("heading", { name: /Hi, I'm Drafter/ }),
).toBeVisible();
const box = page.getByLabel("Message Drafter");
await box.fill("ping");
await box.press("Enter");
await expect(page.getByText("I received: ping")).toBeVisible();
});