forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreadonly-state-agent-context.spec.ts
More file actions
116 lines (102 loc) · 4.7 KB
/
Copy pathreadonly-state-agent-context.spec.ts
File metadata and controls
116 lines (102 loc) · 4.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
import { test, expect } from "@playwright/test";
// QA reference: qa/readonly-state-agent-context.md
// Demo source: src/app/demos/readonly-state-agent-context/page.tsx
//
// The demo publishes three frontend-only values to the agent via
// `useAgentContext`: `userName` (default "Atai"), `userTimezone`
// (default "America/Los_Angeles"), and `recentActivity` (defaults to
// ACTIVITIES[0] "Viewed the pricing page" + ACTIVITIES[2] "Watched the
// product demo video"). Suggestion pills render verbatim message bodies:
// - "Who am I?" → "What do you know about me from my context?"
// - "Suggest next steps" → "Based on my recent activity, what should I try next?"
// Both prompts are pinned to deterministic aimock fixtures (see
// showcase/aimock/d5-all.json) so the assistant's leading phrase is
// stable in CI. On Railway, the same prompts produce a real LLM reply
// that mentions the published context fields — proving end-to-end
// `useAgentContext` wiring.
test.describe("Readonly Agent Context (useAgentContext)", () => {
test.setTimeout(90_000);
test.beforeEach(async ({ page }) => {
await page.goto("/demos/readonly-state-agent-context");
});
test("page loads: context-card + composer render", async ({ page }) => {
await expect(page.getByTestId("context-card")).toBeVisible({
timeout: 15_000,
});
await expect(
page.getByPlaceholder("Ask about your context..."),
).toBeVisible();
});
test("editing name + timezone updates the published JSON preview", async ({
page,
}) => {
const json = page.getByTestId("ctx-state-json");
// Edit name → "Jamie".
await page.getByTestId("ctx-name").fill("Jamie");
await expect(json).toContainText('"name": "Jamie"');
// Change timezone via <select>.
await page.getByTestId("ctx-timezone").selectOption("Asia/Tokyo");
await expect(json).toContainText('"timezone": "Asia/Tokyo"');
});
test('"Who am I?" pill — assistant acknowledges identity + identity card matches defaults', async ({
page,
}) => {
// Identity card shows the defaults BEFORE we click the pill — these
// assertions don't depend on the round-trip and lock the testids.
await expect(page.getByTestId("identity-name")).toHaveText("Atai");
await expect(page.getByTestId("identity-timezone")).toHaveText(
"America/Los_Angeles",
);
await expect(page.getByTestId("identity-avatar")).toHaveText("A");
const suggestion = page
.locator('[data-testid="copilot-suggestion"]')
.filter({ hasText: "Who am I?" });
await expect(suggestion.first()).toBeVisible({ timeout: 15_000 });
await suggestion.first().click();
// Aimock fixture for the verbatim pill prompt
// ("What do you know about me from my context?") returns a content reply
// beginning with "I see you're Atai".
const assistant = page.locator('[data-testid="copilot-assistant-message"]');
await expect(
assistant.filter({ hasText: "I see you're Atai" }).first(),
).toBeVisible({ timeout: 60_000 });
});
test("activity checkboxes default-checked: pricing page + product demo video", async ({
page,
}) => {
// ACTIVITIES[0] and ACTIVITIES[2] are the default-selected entries in
// page.tsx. Their <label> testids embed the kebab-cased activity name.
const pricingLabel = page.getByTestId("activity-viewed-the-pricing-page");
const demoLabel = page.getByTestId(
"activity-watched-the-product-demo-video",
);
await expect(pricingLabel).toBeVisible();
await expect(demoLabel).toBeVisible();
// Each <label> wraps a <Checkbox> whose `checked` prop reflects
// selection. Assert the underlying input is checked.
await expect(pricingLabel.locator('input[type="checkbox"]')).toBeChecked();
await expect(demoLabel.locator('input[type="checkbox"]')).toBeChecked();
});
test('"Suggest next steps" pill — assistant grounds reply in default activities', async ({
page,
}) => {
const suggestion = page
.locator('[data-testid="copilot-suggestion"]')
.filter({ hasText: "Suggest next steps" });
await expect(suggestion.first()).toBeVisible({ timeout: 15_000 });
await suggestion.first().click();
// Aimock fixture for the verbatim pill prompt
// ("Based on my recent activity, what should I try next?") returns a
// content reply beginning with "Since you recently viewed the pricing
// page and watched the product demo video".
const assistant = page.locator('[data-testid="copilot-assistant-message"]');
await expect(
assistant
.filter({
hasText:
"Since you recently viewed the pricing page and watched the product demo video",
})
.first(),
).toBeVisible({ timeout: 60_000 });
});
});