BangSo/apps/web/e2e/choice-card.spec.ts

91 lines
3.2 KiB
TypeScript

import { expect, test } from "@playwright/test";
import { activeBotId, captureScreenshot, completeOnboarding, rpc, signup } from "./helpers";
test("renders tappable choice buttons and submits the offered action id", async ({
page,
}, testInfo) => {
const stamp = Date.now();
await signup(page, `choice-card-${stamp}@rakazo.test`, "password12", "Choice Card");
await completeOnboarding(page);
const botId = activeBotId(page);
const composer = page.getByPlaceholder(/Message/);
await composer.fill("pick from these cities with tappable choices");
await page.keyboard.press("Enter");
await expect
.poll(
async () => {
const snapshot = await rpc<{ run?: { status: string } | null }>(page, "threads/get", {
botId,
});
return snapshot.run?.status ?? null;
},
{ timeout: 60_000 },
)
.toBe("waiting_input");
// threads/get can observe waiting_input before the shell realtime feed paints the ask card.
const prompt = page.locator("p").filter({ hasText: /^Which city should I use\?$/ });
if ((await prompt.count()) === 0) {
await page.reload({ waitUntil: "domcontentloaded" });
await expect(page.getByPlaceholder(/Message/)).toBeVisible({ timeout: 15_000 });
}
await expect(prompt).toBeVisible({ timeout: 15_000 });
const berlin = page.getByRole("button", { name: "Berlin", exact: true });
const seoul = page.getByRole("button", { name: "Seoul", exact: true });
const toronto = page.getByRole("button", { name: "Toronto", exact: true });
const lisbon = page.getByRole("button", { name: "Lisbon", exact: true });
await expect(berlin).toBeVisible();
await expect(seoul).toBeVisible();
await expect(toronto).toBeVisible();
await expect(lisbon).toBeVisible();
await captureScreenshot(page, testInfo, "choice-card");
await page.setViewportSize({ width: 390, height: 844 });
await expect(berlin).toBeVisible();
await expect(lisbon).toBeVisible();
// Wrapped buttons stay fully tappable on a narrow card.
await expect(lisbon).toBeEnabled();
await captureScreenshot(page, testInfo, "choice-card-narrow");
await page.setViewportSize({ width: 1280, height: 720 });
await seoul.click();
await expect(page.getByText("Answered: Seoul", { exact: true })).toBeVisible({
timeout: 30_000,
});
await expect(page.getByRole("button", { name: "Seoul", exact: true })).toHaveCount(0);
await expect
.poll(
async () => {
const history = await rpc<{
messages: Array<{
blocks: Array<{
kind: string;
status?: string;
answer?: string;
actions?: Array<{ id: string; label: string }>;
}>;
}>;
}>(page, "threads/messages", { botId });
const answered = history.messages
.flatMap((message) => message.blocks)
.find(
(block) =>
block.kind === "ask" &&
block.status === "answered" &&
Array.isArray(block.actions) &&
block.actions.some((action) => action.id === "choice-2"),
);
return answered?.answer ?? null;
},
{ timeout: 30_000 },
)
.toBe("choice-2");
await captureScreenshot(page, testInfo, "choice-card-answered");
});