- LlmEvent::Usage across all three providers (Scripted deterministic word-count accounting; Anthropic message_start/delta usage; OpenAI-compat stream_options include_usage) - tc-billing: ceil(tokens/1000) min 1 credit; lots drain oldest-first under FOR UPDATE; balance clamps at zero while the usage ledger records the full obligation; promo codes redeem exactly once via CAS (migration 0006) - Runtime charges every completed run (billing failure never fails a run); proven: 1 token in + 3 out -> 1 credit deducted - API: GET /api/team/usage, POST /api/credits/redeem (409 on reuse, audited) - Credits page: balance, 7-day usage meter with runway estimate, PromoRedeem - /claws/new is the full §9 wizard: ?step=identity|access|slack deep-linked progress, accent swatches + name randomizer, access toggles, optional Slack step, explicit review-and-confirm (creation = live agent), animated provisioning state -> straight into chat - E2E: chat decrements the visible balance and fills the usage meter; WELCOME500 adds exactly 500 once then refuses; wizard round trip 140 Rust + 63 frontend tests + 23 Playwright journeys. Co-Authored-By: Claude Fable 5 <[email protected]>
69 lines
2.5 KiB
TypeScript
69 lines
2.5 KiB
TypeScript
import { expect, test, type Page } from "@playwright/test";
|
|
|
|
// P5 exit criterion (spec §17): the full admin + billing loop — credit
|
|
// decrement matches token usage, and promo redemption grants credits.
|
|
|
|
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 readBalance(page: Page): Promise<number> {
|
|
await page.getByRole("link", { name: "Credits" }).click();
|
|
await expect(page.getByText("Available credits")).toBeVisible();
|
|
const text = await page.getByTestId("credit-balance").innerText();
|
|
return Number(text.replace(/,/g, ""));
|
|
}
|
|
|
|
test("chat usage decrements credits and shows in the 7-day meter", async ({
|
|
page,
|
|
}) => {
|
|
await signIn(page);
|
|
const before = await readBalance(page);
|
|
|
|
await page.getByRole("link", { name: /Scout/ }).click();
|
|
await expect(page).toHaveURL(/\/claws\/.+\/chat\//);
|
|
// Fresh session: older sessions carry scenario markers in history that
|
|
// would steer the scripted provider away from the plain echo.
|
|
const before_url = page.url();
|
|
await page.getByRole("button", { name: "New" }).click();
|
|
await page.waitForURL((url) => url.toString() !== before_url);
|
|
const box = page.getByLabel("Message Scout");
|
|
await box.fill("bill me for this message");
|
|
await box.press("Enter");
|
|
await expect(
|
|
page.getByText("I received: bill me for this message"),
|
|
).toBeVisible();
|
|
|
|
await expect
|
|
.poll(async () => readBalance(page), { timeout: 15000 })
|
|
.toBeLessThan(before);
|
|
await expect(page.getByText(/Usage · last 7 days/i)).toBeVisible();
|
|
await expect(page.getByText(/tokens \(/)).toBeVisible();
|
|
});
|
|
|
|
test("a promo code redeems exactly once", async ({ page }) => {
|
|
await signIn(page);
|
|
const before = await readBalance(page);
|
|
|
|
await page.getByLabel("Promo code").fill("WELCOME500");
|
|
await page.getByRole("button", { name: "Redeem" }).click();
|
|
await expect(page.getByText("Added 500 credits.")).toBeVisible();
|
|
await expect
|
|
.poll(async () => readBalance(page))
|
|
.toBe(before + 500);
|
|
|
|
// Second redemption refuses.
|
|
await page.getByLabel("Promo code").fill("WELCOME500");
|
|
await page.getByRole("button", { name: "Redeem" }).click();
|
|
await expect(
|
|
page.getByText("That code is invalid or already redeemed."),
|
|
).toBeVisible();
|
|
});
|