mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
59eb245a1c
The specs and QA markdowns had drifted from the demos they describe.
This commit brings every test contract into line with the actual demo
source — eliminating false-greens, false-fails, and stale assertions.
False-fail spec assertions (would fail every run):
- `agentic-chat.spec.ts` — rewrote from the old `change_background` /
`weather-card` / `useAgentContext` flow that no longer exists. New
spec exercises the vanilla `<CopilotChat>` + three suggestion pills
contract the simplified demo actually exposes.
- `gen-ui-tool-based.spec.ts` — asserted on UI text ("Use the sidebar
to generate charts", "Chart Generator") that doesn't exist; switched
to suggestion-pill assertions and scoped the SVG check to inside the
assistant-message bubble (was matching CopilotChat's send-button
SVG).
- `agent-config.spec.ts` — asserted heading "Agent Config Object" but
the demo has "Agent Config".
- `multimodal.spec.ts` — asserted a non-existent "Multimodal
attachments" heading; switched to the `multimodal-demo-root` testid.
- `chat-slots.spec.ts` — asserted `[data-testid="custom-assistant-
message"]` and the bare text "slot" — neither exists. The actual
signal is `data-slot-label="MessageView.AssistantMessage"` from the
SlotMarker wrapper.
- `reasoning-default.spec.ts` — asserted `[data-testid="copilot-
reasoning-message"]` and `[data-message-role="reasoning"]`; neither
is emitted by `CopilotChatReasoningMessage`. Switched to the text-
based "Thinking…/Thought for…" header label.
False-green spec assertions (passed for the wrong reason):
- `shared-state-read.spec.ts` — was a complete false-green: asserted
on "Sales Pipeline", "Total Pipeline", "Active Deals" but the demo
has been a Recipe Editor for some time. Rewrote against the
recipe-card / ingredients-container / instructions-container testids.
- 11 specs (agent-config, beautiful-chat, frontend-tools-async,
gen-ui-tool-based, gen-ui-agent, gen-ui-interrupt, hitl-in-chat,
hitl-in-app, multimodal, readonly-state-agent-context, voice) used
`[data-role="assistant"]` to gate "agent responded" — but the v2
react-core bundle never emits that attribute (it ships
`data-testid="copilot-assistant-message"`). Mechanical sweep to the
correct testid.
- Deleted `shared-state-write.spec.ts` (route consolidated into
`shared-state-read-write` earlier on this branch — spec targeted a
removed demo) and `renderer-selector.spec.ts` (asserted on a radio-
pill UI that no longer exists; the four "Declarative UI" variants
are now separate manifest demos).
QA drift:
- `qa/gen-ui-tool-based.md` documented a "Haiku Generator" demo with
haiku-card / japanese-line / english-line / haiku-image testids — a
demo that doesn't exist anywhere on this branch. Rewrote to match
the chart-rendering demo's actual testids and pill prompts.
- `qa/chat-slots.md` referenced "Custom Slot" pill / "Welcome to the
Slots demo" heading / "This welcome card is rendered via the
welcomeScreen slot." body text — all of which the slot-wrappers
refactor on this branch removed. Updated to match the
`custom-welcome-message` sub-slot that's actually rendered. Also
fixed max-w-4xl → max-w-5xl to match the page.
- `qa/shared-state-read.md` said default instruction is "Preheat oven
to 350 F" but the source has "Preheat oven to 350°F (175°C)".
- `qa/agentic-chat.md` rewrote to match the simplified vanilla-chat
demo (the previous QA documented `change_background` / `WeatherCard`
flows that no longer exist).
- `qa/reasoning-default.md` cited `kind: "testing"` in feature-
registry.json for the `reasoning-default` entry; the registry entry
has no `kind` field. Rewrote without the false cross-file claim.
- Deleted 4 orphan QA files for demos that don't exist:
`agentic-chat-reasoning.md`, `hitl.md`, `hitl-in-chat-booking.md`,
`shared-state-write.md`.
- Renamed `qa/reasoning-default-render.md` → `qa/reasoning-default.md`
to match the manifest cell name.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
76 lines
2.8 KiB
Markdown
76 lines
2.8 KiB
Markdown
# QA: Shared State (Reading) — LangGraph (Python)
|
|
|
|
## Prerequisites
|
|
|
|
- Demo is deployed and accessible
|
|
- Agent backend is healthy (check /api/health)
|
|
|
|
## Test Steps
|
|
|
|
### 1. Basic Functionality
|
|
|
|
- [ ] Navigate to the shared-state-read demo page
|
|
- [ ] Verify the recipe card form loads (`data-testid="recipe-card"`)
|
|
- [ ] Verify the CopilotSidebar opens by default with title "AI Recipe Assistant"
|
|
- [ ] Send a message via the sidebar
|
|
- [ ] Verify the agent responds
|
|
|
|
### 2. Feature-Specific Checks
|
|
|
|
#### Initial Recipe State
|
|
|
|
- [ ] Verify the recipe title input shows "Make Your Recipe"
|
|
- [ ] Verify the cooking time dropdown defaults to "45 min"
|
|
- [ ] Verify the skill level dropdown defaults to "Intermediate"
|
|
- [ ] Verify the default ingredients are displayed:
|
|
- [ ] Carrots (3 large, grated) with carrot emoji
|
|
- [ ] All-Purpose Flour (2 cups) with wheat emoji
|
|
- [ ] Verify the default instruction is displayed: "Preheat oven to 350°F (175°C)"
|
|
|
|
#### Suggestions
|
|
|
|
- [ ] Verify "Create Italian recipe" suggestion is visible
|
|
- [ ] Verify "Make it healthier" suggestion is visible
|
|
- [ ] Verify "Suggest variations" suggestion is visible
|
|
|
|
#### Recipe Editing (Local State)
|
|
|
|
- [ ] Edit the recipe title and verify it updates
|
|
- [ ] Change the skill level dropdown and verify it updates
|
|
- [ ] Change the cooking time dropdown and verify it updates
|
|
- [ ] Toggle a dietary preference checkbox (e.g. "Vegetarian") and verify it's checked
|
|
- [ ] Click "+ Add Ingredient" (`data-testid="add-ingredient-button"`) and verify a new empty row appears
|
|
- [ ] Edit an ingredient name and amount
|
|
- [ ] Remove an ingredient by clicking the "x" button
|
|
- [ ] Click "+ Add Step" and verify a new instruction row appears
|
|
- [ ] Edit an instruction and verify it saves
|
|
- [ ] Remove an instruction by clicking the "x" button
|
|
|
|
#### AI-Powered Recipe Updates (useAgent with shared state)
|
|
|
|
- [ ] Click "Create Italian recipe" suggestion
|
|
- [ ] Verify the agent updates the recipe title, ingredients, and instructions
|
|
- [ ] Verify the ping indicator appears on changed sections
|
|
- [ ] Verify the "Improve with AI" button (`data-testid="improve-button"`) changes to "Please Wait..." while loading
|
|
- [ ] Click "Improve with AI" and verify the recipe is enhanced
|
|
|
|
#### Agent Reads Frontend State
|
|
|
|
- [ ] Edit the recipe (change title, add ingredients)
|
|
- [ ] Ask the agent "What recipe am I making?"
|
|
- [ ] Verify the agent's response references the current recipe state
|
|
|
|
### 3. Error Handling
|
|
|
|
- [ ] Send an empty message (should be handled gracefully)
|
|
- [ ] Verify no console errors during normal usage
|
|
- [ ] Verify the "Improve with AI" button is disabled while loading
|
|
|
|
## Expected Results
|
|
|
|
- Recipe card and sidebar load within 3 seconds
|
|
- Agent responds within 10 seconds
|
|
- Recipe state syncs bidirectionally between UI and agent
|
|
- Ping indicators highlight changed sections
|
|
- No UI errors or broken layouts
|