forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCopilotChat.test.tsx
More file actions
390 lines (326 loc) · 11.4 KB
/
Copy pathCopilotChat.test.tsx
File metadata and controls
390 lines (326 loc) · 11.4 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
import React from "react";
import { render, fireEvent, act } from "@testing-library/react";
import { describe, it, expect, beforeEach, vi } from "vitest";
// ─── Hoisted state ─────────────────────────────────────────────────────────────
const hoisted = vi.hoisted(() => {
return {
mockAgent: {
messages: [] as any[],
isRunning: false,
addMessage: vi.fn(),
},
mockRunAgent: vi.fn().mockResolvedValue(undefined),
mockToolRegistry: vi.fn(() => new Map()),
};
});
// ─── Mocks ────────────────────────────────────────────────────────────────────
vi.mock("@copilotkit/react-core/v2/headless", () => ({
useAgent: vi.fn(() => ({ agent: hoisted.mockAgent })),
}));
vi.mock("@copilotkit/react-core/v2/context", () => ({
useCopilotKit: vi.fn(() => ({
copilotkit: { runAgent: hoisted.mockRunAgent },
executingToolCallIds: new Set<string>(),
})),
}));
// Mock sub-components that B2 builds
vi.mock("../messages/AssistantMessage", () => ({
AssistantMessage: ({ content, isLoading }: any) => {
const React = require("react");
return React.createElement(
"div",
{ "data-testid": "assistant-message" },
isLoading ? "Loading..." : content,
);
},
}));
vi.mock("../messages/UserMessage", () => ({
UserMessage: ({ content }: any) => {
const React = require("react");
return React.createElement(
"div",
{ "data-testid": "user-message" },
content,
);
},
}));
// Mock RenderToolContext (B3)
vi.mock("../../hooks/RenderToolContext", () => ({
useRenderToolRegistry: (...args: any[]) => hoisted.mockToolRegistry(...args),
}));
// Mock react-native components with testable DOM elements
vi.mock("react-native", () => {
const React = require("react");
return {
FlatList: ({ data, renderItem, ListEmptyComponent, keyExtractor }: any) => {
if (!data || data.length === 0) {
return React.createElement(
"div",
{ "data-testid": "flatlist" },
ListEmptyComponent,
);
}
return React.createElement(
"div",
{ "data-testid": "flatlist" },
data.map((item: any, index: number) =>
React.createElement(
"div",
{ key: keyExtractor?.(item, index) ?? index },
renderItem({ item, index }),
),
),
);
},
KeyboardAvoidingView: ({ children }: any) =>
React.createElement("div", { "data-testid": "keyboard-view" }, children),
Platform: { OS: "ios" },
Pressable: ({ children, onPress, ...props }: any) =>
React.createElement(
"button",
{ onClick: onPress, "data-testid": "pressable", ...props },
children,
),
StyleSheet: {
create: (styles: any) => styles,
hairlineWidth: 1,
},
Text: ({ children, ...props }: any) =>
React.createElement("span", props, children),
TextInput: ({ value, onChangeText, onSubmitEditing, ...props }: any) =>
React.createElement("input", {
value,
onChange: (e: any) => onChangeText?.(e.target.value),
onKeyDown: (e: any) => {
if (e.key === "Enter") onSubmitEditing?.();
},
"data-testid": "text-input",
...props,
}),
TouchableOpacity: ({
children,
onPress,
disabled,
testID,
...props
}: any) =>
React.createElement(
"button",
{
onClick: onPress,
disabled,
...(testID ? { "data-testid": testID } : {}),
...props,
},
children,
),
View: ({ children, ...props }: any) =>
React.createElement("div", props, children),
};
});
// Import component under test AFTER mocks
import { CopilotChat } from "../CopilotChat";
// ─── Tests ────────────────────────────────────────────────────────────────────
describe("CopilotChat", () => {
beforeEach(() => {
vi.clearAllMocks();
hoisted.mockAgent.messages = [];
hoisted.mockAgent.isRunning = false;
hoisted.mockAgent.addMessage = vi.fn();
hoisted.mockRunAgent.mockResolvedValue(undefined);
hoisted.mockToolRegistry.mockReturnValue(new Map());
});
it("renders empty state when there are no messages", () => {
const { getByText } = render(<CopilotChat />);
expect(getByText("How can I help?")).toBeTruthy();
expect(
getByText("Ask me anything or try a suggestion below."),
).toBeTruthy();
});
it("renders custom empty state title and subtitle", () => {
const { getByText } = render(
<CopilotChat
emptyStateTitle="Welcome!"
emptyStateSubtitle="Start chatting"
/>,
);
expect(getByText("Welcome!")).toBeTruthy();
expect(getByText("Start chatting")).toBeTruthy();
});
it("renders suggestion pills when initialMessages provided", () => {
const suggestions = ["Hello", "Help me"];
const { getByText } = render(<CopilotChat initialMessages={suggestions} />);
expect(getByText("Hello")).toBeTruthy();
expect(getByText("Help me")).toBeTruthy();
});
it("renders user and assistant messages", () => {
hoisted.mockAgent.messages = [
{ id: "1", role: "user", content: "Hi there" },
{ id: "2", role: "assistant", content: "Hello! How can I help?" },
];
const { getAllByTestId } = render(<CopilotChat />);
const userMessages = getAllByTestId("user-message");
const assistantMessages = getAllByTestId("assistant-message");
expect(userMessages).toHaveLength(1);
expect(assistantMessages).toHaveLength(1);
expect(userMessages[0].textContent).toBe("Hi there");
expect(assistantMessages[0].textContent).toBe("Hello! How can I help?");
});
it("shows loading indicator when agent is running", () => {
hoisted.mockAgent.messages = [{ id: "1", role: "user", content: "Hi" }];
hoisted.mockAgent.isRunning = true;
const { getAllByTestId } = render(<CopilotChat />);
const assistantMessages = getAllByTestId("assistant-message");
expect(assistantMessages.length).toBeGreaterThanOrEqual(1);
const loadingMsg = assistantMessages[assistantMessages.length - 1];
expect(loadingMsg.textContent).toBe("Loading...");
});
it("calls agent.addMessage and copilotkit.runAgent on send", async () => {
const { getByTestId } = render(<CopilotChat />);
const input = getByTestId("text-input");
const sendBtn = getByTestId("send-button");
await act(async () => {
fireEvent.change(input, { target: { value: "Test message" } });
});
await act(async () => {
fireEvent.click(sendBtn);
});
expect(hoisted.mockAgent.addMessage).toHaveBeenCalledWith(
expect.objectContaining({
role: "user",
content: "Test message",
}),
);
expect(hoisted.mockRunAgent).toHaveBeenCalledWith({
agent: hoisted.mockAgent,
});
});
it("disables send button when input is empty", () => {
const { getByTestId } = render(<CopilotChat />);
const sendBtn = getByTestId("send-button");
expect(sendBtn).toHaveProperty("disabled", true);
});
it("disables send button when agent is running", async () => {
hoisted.mockAgent.isRunning = true;
const { getByTestId } = render(<CopilotChat />);
const input = getByTestId("text-input");
await act(async () => {
fireEvent.change(input, { target: { value: "Test" } });
});
const sendBtn = getByTestId("send-button");
expect(sendBtn).toHaveProperty("disabled", true);
});
it("shows header when showHeader is true", () => {
const { getByText } = render(
<CopilotChat showHeader headerTitle="My Chat" />,
);
expect(getByText("My Chat")).toBeTruthy();
});
it("hides header when showHeader is false", () => {
const { queryByText } = render(
<CopilotChat showHeader={false} headerTitle="Hidden" />,
);
expect(queryByText("Hidden")).toBeNull();
});
it("calls onSendMessage callback when sending", async () => {
const onSend = vi.fn();
const { getByTestId } = render(<CopilotChat onSendMessage={onSend} />);
const input = getByTestId("text-input");
const sendBtn = getByTestId("send-button");
await act(async () => {
fireEvent.change(input, { target: { value: "Callback test" } });
});
await act(async () => {
fireEvent.click(sendBtn);
});
expect(onSend).toHaveBeenCalledWith("Callback test");
});
it("renders tool call indicator for unregistered tools", () => {
hoisted.mockAgent.messages = [
{
id: "1",
role: "assistant",
content: "",
toolCalls: [
{
id: "tc-1",
type: "function" as const,
function: { name: "myTool", arguments: "{}" },
},
],
},
];
const { getByText } = render(<CopilotChat />);
expect(getByText("Called: myTool")).toBeTruthy();
});
it("renders registered tool renderer with correct props", () => {
const receivedProps: any[] = [];
const mockRenderer = (props: any) => {
receivedProps.push(props);
const React = require("react");
return React.createElement(
"div",
{ "data-testid": "tool-render" },
`rendered: ${JSON.stringify(props.args)}`,
);
};
const toolMap = new Map([["myTool", mockRenderer]]);
hoisted.mockToolRegistry.mockReturnValue(toolMap);
hoisted.mockAgent.messages = [
{
id: "1",
role: "assistant",
content: "",
toolCalls: [
{
id: "tc-1",
type: "function" as const,
function: {
name: "myTool",
arguments: '{"city":"Seattle"}',
},
},
],
},
];
const { getByTestId } = render(<CopilotChat />);
expect(getByTestId("tool-render")).toBeTruthy();
expect(receivedProps[0]).toEqual({
args: { city: "Seattle" },
status: "complete",
});
});
it("shows error message when runAgent fails", async () => {
hoisted.mockRunAgent.mockRejectedValueOnce(new Error("Network timeout"));
const { getByTestId, getByText } = render(<CopilotChat />);
const input = getByTestId("text-input");
const sendBtn = getByTestId("send-button");
await act(async () => {
fireEvent.change(input, { target: { value: "fail message" } });
});
await act(async () => {
fireEvent.click(sendBtn);
});
expect(getByText("Network timeout")).toBeTruthy();
});
it("uses incrementing message IDs instead of Date.now()", async () => {
const { getByTestId } = render(<CopilotChat />);
const input = getByTestId("text-input");
const sendBtn = getByTestId("send-button");
await act(async () => {
fireEvent.change(input, { target: { value: "first" } });
});
await act(async () => {
fireEvent.click(sendBtn);
});
await act(async () => {
fireEvent.change(input, { target: { value: "second" } });
});
await act(async () => {
fireEvent.click(sendBtn);
});
const calls = hoisted.mockAgent.addMessage.mock.calls;
expect(calls[0][0].id).toBe("user-1");
expect(calls[1][0].id).toBe("user-2");
});
});