forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCopilotChat-edge-cases.test.tsx
More file actions
418 lines (364 loc) · 12.7 KB
/
Copy pathCopilotChat-edge-cases.test.tsx
File metadata and controls
418 lines (364 loc) · 12.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
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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
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()),
mockExecutingToolCallIds: new Set<string>(),
};
});
// ─── 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: hoisted.mockExecutingToolCallIds,
})),
}));
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,
);
},
}));
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 { CopilotChat } from "../CopilotChat";
// ─── Tests ────────────────────────────────────────────────────────────────────
describe("CopilotChat edge cases", () => {
beforeEach(() => {
vi.clearAllMocks();
hoisted.mockAgent.messages = [];
hoisted.mockAgent.isRunning = false;
hoisted.mockAgent.addMessage = vi.fn();
hoisted.mockRunAgent.mockResolvedValue(undefined);
hoisted.mockToolRegistry.mockReturnValue(new Map());
hoisted.mockExecutingToolCallIds.clear();
});
describe("disableKeyboardAvoiding", () => {
it("wraps content in KeyboardAvoidingView by default", () => {
const { getByTestId } = render(<CopilotChat />);
expect(getByTestId("keyboard-view")).toBeTruthy();
});
it("skips KeyboardAvoidingView when disableKeyboardAvoiding is true", () => {
const { queryByTestId } = render(<CopilotChat disableKeyboardAvoiding />);
expect(queryByTestId("keyboard-view")).toBeNull();
});
});
describe("FlatListComponent", () => {
it("uses custom FlatListComponent when provided", () => {
const CustomFlatList = ({
data,
renderItem,
ListEmptyComponent,
keyExtractor,
}: any) => {
return React.createElement(
"div",
{ "data-testid": "custom-flatlist" },
ListEmptyComponent,
);
};
const { getByTestId, queryByTestId } = render(
<CopilotChat FlatListComponent={CustomFlatList} />,
);
expect(getByTestId("custom-flatlist")).toBeTruthy();
// The default FlatList should not be rendered
expect(queryByTestId("flatlist")).toBeNull();
});
});
describe("malformed tool call arguments", () => {
it("handles invalid JSON in tool arguments gracefully", () => {
const mockRenderer = (props: any) => {
return React.createElement(
"div",
{ "data-testid": "tool-render" },
`args: ${JSON.stringify(props.args)}`,
);
};
const toolMap = new Map([["brokenTool", mockRenderer]]);
hoisted.mockToolRegistry.mockReturnValue(toolMap);
hoisted.mockAgent.messages = [
{
id: "1",
role: "assistant",
content: "",
toolCalls: [
{
id: "tc-1",
type: "function" as const,
function: {
name: "brokenTool",
arguments: "this is not valid JSON{{{",
},
},
],
},
];
// Suppress the expected console.warn
const spy = vi.spyOn(console, "warn").mockImplementation(() => {});
const { getByTestId } = render(<CopilotChat />);
// Should render with empty args instead of crashing
expect(getByTestId("tool-render")).toBeTruthy();
expect(getByTestId("tool-render").textContent).toBe("args: {}");
spy.mockRestore();
});
it("handles empty string arguments in tool calls", () => {
const mockRenderer = (props: any) => {
return React.createElement(
"div",
{ "data-testid": "tool-render" },
`args: ${JSON.stringify(props.args)}`,
);
};
const toolMap = new Map([["emptyArgsTool", mockRenderer]]);
hoisted.mockToolRegistry.mockReturnValue(toolMap);
hoisted.mockAgent.messages = [
{
id: "1",
role: "assistant",
content: "",
toolCalls: [
{
id: "tc-1",
type: "function" as const,
function: {
name: "emptyArgsTool",
arguments: "",
},
},
],
},
];
const { getByTestId } = render(<CopilotChat />);
expect(getByTestId("tool-render")).toBeTruthy();
expect(getByTestId("tool-render").textContent).toBe("args: {}");
});
});
describe("tool call status", () => {
it("passes 'executing' status when tool call is in executingToolCallIds", () => {
const receivedProps: any[] = [];
const mockRenderer = (props: any) => {
receivedProps.push(props);
return React.createElement(
"div",
{ "data-testid": "tool-render" },
`status: ${props.status}`,
);
};
const toolMap = new Map([["myTool", mockRenderer]]);
hoisted.mockToolRegistry.mockReturnValue(toolMap);
// Add executing tool call ID to the shared set
hoisted.mockExecutingToolCallIds.add("tc-1");
hoisted.mockAgent.messages = [
{
id: "1",
role: "assistant",
content: "",
toolCalls: [
{
id: "tc-1",
type: "function" as const,
function: { name: "myTool", arguments: '{"key":"val"}' },
},
],
},
];
const { getByTestId } = render(<CopilotChat />);
expect(getByTestId("tool-render").textContent).toBe("status: executing");
expect(receivedProps[0].status).toBe("executing");
});
});
describe("message list building", () => {
it("handles assistant messages with empty content and tool calls", () => {
hoisted.mockAgent.messages = [
{
id: "1",
role: "assistant",
content: "",
toolCalls: [
{
id: "tc-1",
type: "function" as const,
function: { name: "unknownTool", arguments: "{}" },
},
],
},
];
const { getByText, queryAllByTestId } = render(<CopilotChat />);
// Should show tool call indicator, not an empty assistant message
expect(getByText("Called: unknownTool")).toBeTruthy();
expect(queryAllByTestId("assistant-message")).toHaveLength(0);
});
it("handles assistant messages with both content and tool calls", () => {
hoisted.mockAgent.messages = [
{
id: "1",
role: "assistant",
content: "Let me check that for you",
toolCalls: [
{
id: "tc-1",
type: "function" as const,
function: { name: "searchTool", arguments: "{}" },
},
],
},
];
const { getByText, getByTestId } = render(<CopilotChat />);
// Should show both content and tool call indicator
expect(getByTestId("assistant-message").textContent).toBe(
"Let me check that for you",
);
expect(getByText("Called: searchTool")).toBeTruthy();
});
it("shows loading indicator when agent is running and last message is from user", () => {
hoisted.mockAgent.messages = [
{ id: "1", role: "user", content: "Hello" },
];
hoisted.mockAgent.isRunning = true;
const { getAllByTestId } = render(<CopilotChat />);
// Should have user message + loading assistant message
const userMessages = getAllByTestId("user-message");
const assistantMessages = getAllByTestId("assistant-message");
expect(userMessages).toHaveLength(1);
expect(assistantMessages).toHaveLength(1);
expect(assistantMessages[0].textContent).toBe("Loading...");
});
it("does not add extra loading indicator when last item is already an assistant message", () => {
hoisted.mockAgent.messages = [
{ id: "1", role: "user", content: "Hello" },
{ id: "2", role: "assistant", content: "I'm thinking..." },
];
hoisted.mockAgent.isRunning = true;
const { getAllByTestId } = render(<CopilotChat />);
// Should NOT add an extra loading indicator since last message is assistant
const assistantMessages = getAllByTestId("assistant-message");
expect(assistantMessages).toHaveLength(1);
});
});
describe("empty message handling", () => {
it("does not send a whitespace-only message", async () => {
const { getByTestId } = render(<CopilotChat />);
const input = getByTestId("text-input");
const sendBtn = getByTestId("send-button");
await act(async () => {
fireEvent.change(input, { target: { value: " " } });
});
// Button should still be disabled for whitespace-only input
expect(sendBtn).toHaveProperty("disabled", true);
});
});
describe("suggestion pill interaction", () => {
it("sends a message when a suggestion pill is pressed", async () => {
const suggestions = ["Tell me a joke"];
const { getByText } = render(
<CopilotChat initialMessages={suggestions} />,
);
await act(async () => {
fireEvent.click(getByText("Tell me a joke"));
});
expect(hoisted.mockAgent.addMessage).toHaveBeenCalledWith(
expect.objectContaining({
role: "user",
content: "Tell me a joke",
}),
);
expect(hoisted.mockRunAgent).toHaveBeenCalled();
});
});
});