forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintegration-intelligence-migration.test.ts
More file actions
406 lines (346 loc) · 15.7 KB
/
Copy pathintegration-intelligence-migration.test.ts
File metadata and controls
406 lines (346 loc) · 15.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
import { describe, expect, it, test } from "vitest";
import * as fs from "node:fs";
import * as path from "node:path";
const repoRoot = path.resolve(__dirname, "..", "..");
const integrationsDir = path.join(repoRoot, "examples", "integrations");
const migratedIntegrations = [
"crewai-flows",
"llamaindex",
"langgraph-fastapi",
"pydantic-ai",
"mcp-apps",
"agent-spec",
"strands-python",
"crewai-crews",
] as const;
const a2aMiddlewareRoot = path.join(integrationsDir, "a2a-middleware");
const appRoots: Record<(typeof migratedIntegrations)[number], string> = {
"crewai-flows": "src/app",
llamaindex: "src/app",
"langgraph-fastapi": "src/app",
"pydantic-ai": "src/app",
"mcp-apps": "app",
"agent-spec": "src/app",
"strands-python": "src/app",
"crewai-crews": "src/app",
};
function readIntegrationFile(
integration: string,
relativePath: string,
): string {
return fs.readFileSync(
path.join(integrationsDir, integration, relativePath),
"utf8",
);
}
function readOptionalIntegrationFile(
integration: string,
relativePath: string,
): string {
const filePath = path.join(integrationsDir, integration, relativePath);
return fs.existsSync(filePath) ? fs.readFileSync(filePath, "utf8") : "";
}
function readA2AMiddlewareFile(pathFromRoot: string): string {
return fs.readFileSync(path.join(a2aMiddlewareRoot, pathFromRoot), "utf8");
}
describe("batch-2 Intelligence integration migration", () => {
for (const integration of migratedIntegrations) {
it(`${integration} has the env-gated Intelligence runtime route`, () => {
const route = readIntegrationFile(
integration,
`${appRoots[integration]}/api/copilotkit/[[...slug]]/route.ts`,
);
expect(route).toContain("CopilotKitIntelligence");
expect(route).toContain("process.env.COPILOTKIT_LICENSE_TOKEN");
expect(route).toContain(
"licenseToken: process.env.COPILOTKIT_LICENSE_TOKEN",
);
expect(route).toContain('id: "demo-user"');
expect(route).toContain("new InMemoryAgentRunner()");
expect(route).toContain("export const GET = handle(app)");
expect(route).toContain("export const POST = handle(app)");
expect(route).toContain("export const PATCH = handle(app)");
expect(route).toContain("export const DELETE = handle(app)");
});
it(`${integration} forces REST transport for thread routes`, () => {
const layout = readIntegrationFile(
integration,
`${appRoots[integration]}/layout.tsx`,
);
const page = readIntegrationFile(
integration,
`${appRoots[integration]}/page.tsx`,
);
expect(`${layout}\n${page}`).toContain("useSingleEndpoint={false}");
});
it(`${integration} wires the threads drawer into the chat thread context`, () => {
const page = readIntegrationFile(
integration,
`${appRoots[integration]}/page.tsx`,
);
expect(page).toContain("ThreadsDrawer");
expect(page).toContain("ThreadsPanelGate");
expect(page).toContain("CopilotChatConfigurationProvider");
expect(page).toContain("threadId");
expect(page).toContain("onThreadChange={setThreadId}");
if (integration === "mcp-apps") {
expect(page).toContain('key={threadId ?? "new-thread"}');
expect(page).toContain("threadId={threadId}");
const drawer = readIntegrationFile(
integration,
"app/components/threads-drawer/threads-drawer.tsx",
);
expect(drawer).toContain("onThreadChange(undefined)");
expect(drawer).not.toContain("crypto.randomUUID()");
}
});
it(`${integration} exposes the client-safe threads enabled gate`, () => {
const nextConfig = readIntegrationFile(integration, "next.config.ts");
expect(nextConfig).toContain("NEXT_PUBLIC_COPILOTKIT_THREADS_ENABLED");
expect(nextConfig).toContain("process.env.COPILOTKIT_LICENSE_TOKEN");
});
it(`${integration} documents the local Intelligence environment`, () => {
const envExample = readOptionalIntegrationFile(
integration,
".env.example",
);
expect(envExample).toContain("COPILOTKIT_LICENSE_TOKEN");
expect(envExample).toContain("INTELLIGENCE_API_KEY");
expect(envExample).toContain("INTELLIGENCE_API_URL");
expect(envExample).toContain("INTELLIGENCE_GATEWAY_WS_URL");
});
it(`${integration} pins CopilotKit packages to the threads-capable release`, () => {
const packageJson = JSON.parse(
readIntegrationFile(integration, "package.json"),
) as { dependencies?: Record<string, string> };
expect(packageJson.dependencies?.["@copilotkit/react-core"]).toBe(
"1.59.3",
);
expect(packageJson.dependencies?.["@copilotkit/runtime"]).toBe("1.59.3");
});
}
});
test("a2a-middleware runtime route is gated for Intelligence threads", () => {
const route = readA2AMiddlewareFile(
"app/api/copilotkit/[[...slug]]/route.ts",
);
expect(route).toContain("CopilotKitIntelligence");
expect(route).toContain(
"class RuntimeA2AMiddlewareAgent extends A2AMiddlewareAgent",
);
expect(route).toContain("const isolatedAgent = new A2AMiddlewareAgent");
expect(route).toContain("new HttpAgent({");
expect(route).toContain("isolatedAgent.setMessages(parameters.messages)");
expect(route).toContain("return isolatedAgent.runAgent(");
expect(route).toContain("process.env.COPILOTKIT_LICENSE_TOKEN");
expect(route).toContain("process.env.INTELLIGENCE_API_KEY");
expect(route).toContain("process.env.INTELLIGENCE_API_URL");
expect(route).toContain("process.env.INTELLIGENCE_GATEWAY_WS_URL");
expect(route).toContain('id: "demo-user"');
expect(route).toContain("licenseToken: process.env.COPILOTKIT_LICENSE_TOKEN");
expect(route).toContain(": { runner: new InMemoryAgentRunner() }");
expect(route).toContain("export const GET = handle(app);");
expect(route).toContain("export const POST = handle(app);");
expect(route).toContain("export const PATCH = handle(app);");
expect(route).toContain("export const DELETE = handle(app);");
});
test("a2a-middleware preserves its three-agent URL configuration", () => {
const route = readA2AMiddlewareFile(
"app/api/copilotkit/[[...slug]]/route.ts",
);
expect(route).toContain("process.env.RESEARCH_AGENT_URL");
expect(route).toContain("process.env.ANALYSIS_AGENT_URL");
expect(route).toContain("process.env.ORCHESTRATOR_URL");
expect(route).toContain('agentId: "a2a_chat"');
expect(route).toContain("agentUrls: [researchAgentUrl, analysisAgentUrl]");
expect(route).toContain("orchestrationAgentUrl: orchestratorUrl");
});
test("a2a-middleware page uses REST transport for Threads APIs", () => {
const page = readA2AMiddlewareFile("app/page.tsx");
expect(page).toContain('runtimeUrl="/api/copilotkit"');
expect(page).toContain("useSingleEndpoint={false}");
expect(page).toContain('agentId="a2a_chat"');
expect(page).toContain("ThreadsDrawer");
expect(page).toContain("ThreadsPanelGate");
expect(page).toContain("CopilotChatConfigurationProvider");
expect(page).toContain("const [threadId, setThreadId]");
expect(page).toContain("threadId={threadId}");
});
test("a2a-middleware chat keeps A2A visualization tools inside the configured chat", () => {
const chat = readA2AMiddlewareFile("components/chat.tsx");
expect(chat).toContain("useFrontendTool");
expect(chat).toContain('name: "send_message_to_a2a_agent"');
expect(chat).toContain("MessageToA2A");
expect(chat).toContain("MessageFromA2A");
expect(chat).not.toContain("<CopilotKit");
});
test("a2a-middleware exposes local Intelligence env documentation", () => {
const envExample = readA2AMiddlewareFile(".env.example");
expect(envExample).toContain("GOOGLE_API_KEY=");
expect(envExample).toContain("OPENAI_API_KEY=");
expect(envExample).toContain("COPILOTKIT_LICENSE_TOKEN=");
expect(envExample).toContain("INTELLIGENCE_API_KEY=");
expect(envExample).toContain("INTELLIGENCE_API_URL=http://localhost:4201");
expect(envExample).toContain(
"INTELLIGENCE_GATEWAY_WS_URL=ws://localhost:4401",
);
});
test("a2a-middleware package is pinned to the Intelligence-ready CopilotKit SDK", () => {
const packageJson = JSON.parse(readA2AMiddlewareFile("package.json")) as {
dependencies: Record<string, string>;
};
expect(packageJson.dependencies["@copilotkit/react-core"]).toBe("1.59.3");
expect(packageJson.dependencies["@copilotkit/runtime"]).toBe("1.59.3");
expect(packageJson.dependencies["lucide-react"]).toBeDefined();
});
test("a2a-middleware Next config enables the Threads feature flag", () => {
const nextConfig = readA2AMiddlewareFile("next.config.ts");
expect(nextConfig).toContain('output: "standalone"');
expect(nextConfig).toContain("NEXT_PUBLIC_COPILOTKIT_THREADS_ENABLED");
expect(nextConfig).toContain("process.env");
expect(nextConfig).toContain("COPILOTKIT_LICENSE_TOKEN");
});
const a2aA2uiRoot = path.join(integrationsDir, "a2a-a2ui");
function readA2AA2uiFile(pathFromRoot: string): string {
return fs.readFileSync(path.join(a2aA2uiRoot, pathFromRoot), "utf8");
}
test("a2a-a2ui runtime route is gated for Intelligence threads", () => {
const route = readA2AA2uiFile("app/api/copilotkit/[[...slug]]/route.tsx");
expect(route).toContain("CopilotKitIntelligence");
expect(route).toContain("class RuntimeA2AAgent extends A2AAgent");
expect(route).toContain("const isolatedAgent = new A2AAgent");
expect(route).toContain("isolatedAgent.setMessages(parameters.messages)");
expect(route).toContain("return isolatedAgent.runAgent(");
expect(route).toContain("process.env.COPILOTKIT_LICENSE_TOKEN");
expect(route).toContain("process.env.INTELLIGENCE_API_KEY");
expect(route).toContain("process.env.INTELLIGENCE_API_URL");
expect(route).toContain("process.env.INTELLIGENCE_GATEWAY_WS_URL");
expect(route).toContain('id: "demo-user"');
expect(route).toContain("licenseToken: process.env.COPILOTKIT_LICENSE_TOKEN");
expect(route).toContain(": { runner: new InMemoryAgentRunner() }");
expect(route).toContain("a2ui: {}");
expect(route).toContain("export const GET = handle(app);");
expect(route).toContain("export const POST = handle(app);");
expect(route).toContain("export const PATCH = handle(app);");
expect(route).toContain("export const DELETE = handle(app);");
});
test("a2a-a2ui page uses REST transport for Threads APIs", () => {
const page = readA2AA2uiFile("app/page.tsx");
expect(page).toContain('runtimeUrl="/api/copilotkit"');
expect(page).toContain('agentId="default"');
expect(page).toContain("useSingleEndpoint={false}");
expect(page).toContain("a2ui={{ theme }}");
expect(page).toContain("const activityRenderers = [a2uiV08Renderer];");
expect(page).toContain("renderActivityMessages={activityRenderers}");
});
test("a2a-a2ui page wires a threads drawer into the active chat thread", () => {
const page = readA2AA2uiFile("app/page.tsx");
expect(page).toContain("ThreadsDrawer");
expect(page).toContain("ThreadsPanelGate");
expect(page).toContain("CopilotChatConfigurationProvider");
expect(page).toContain("const [threadId, setThreadId]");
expect(page).toContain('agentId="default"');
expect(page).toContain("threadId={threadId}");
});
test("a2a-a2ui exposes local Intelligence env documentation", () => {
const envExample = readA2AA2uiFile(".env.example");
const gitignore = readA2AA2uiFile(".gitignore");
expect(envExample).toContain("OPENAI_API_KEY=");
expect(envExample).toContain("COPILOTKIT_LICENSE_TOKEN=");
expect(envExample).toContain("INTELLIGENCE_API_KEY=");
expect(envExample).toContain("INTELLIGENCE_API_URL=http://localhost:4201");
expect(envExample).toContain(
"INTELLIGENCE_GATEWAY_WS_URL=ws://localhost:4401",
);
expect(gitignore).toContain("!.env.example");
});
test("a2a-a2ui package is pinned to the Intelligence-ready CopilotKit SDK", () => {
const packageJson = JSON.parse(readA2AA2uiFile("package.json")) as {
dependencies: Record<string, string>;
};
expect(packageJson.dependencies["@copilotkit/a2ui-renderer"]).toBe("1.59.3");
expect(packageJson.dependencies["@copilotkit/react-core"]).toBe("1.59.3");
expect(packageJson.dependencies["@copilotkit/runtime"]).toBe("1.59.3");
expect(packageJson.dependencies["lucide-react"]).toBeDefined();
});
test("a2a-a2ui Next config enables the Threads feature flag", () => {
const nextConfig = readA2AA2uiFile("next.config.js");
expect(nextConfig).toContain('output: "standalone"');
expect(nextConfig).toContain(
"NEXT_PUBLIC_COPILOTKIT_THREADS_ENABLED: process.env.COPILOTKIT_LICENSE_TOKEN",
);
});
const agentcoreRoot = path.join(integrationsDir, "agentcore");
function readAgentcoreFile(pathFromRoot: string): string {
return fs.readFileSync(path.join(agentcoreRoot, pathFromRoot), "utf8");
}
describe("agentcore Intelligence integration migration", () => {
it("gates the Hono runtime bridge with CopilotKit Intelligence", () => {
const runtime = readAgentcoreFile(
"infra-cdk/lambdas/copilotkit-runtime/src/runtime.ts",
);
expect(runtime).toContain("CopilotKitIntelligence");
expect(runtime).toContain("process.env.COPILOTKIT_LICENSE_TOKEN");
expect(runtime).toContain("process.env.INTELLIGENCE_API_KEY");
expect(runtime).toContain("process.env.INTELLIGENCE_API_URL");
expect(runtime).toContain("process.env.INTELLIGENCE_GATEWAY_WS_URL");
expect(runtime).toContain(
"licenseToken: process.env.COPILOTKIT_LICENSE_TOKEN",
);
expect(runtime).toContain('id: "demo-user"');
expect(runtime).toContain(": { runner: new AgentCoreRunner() }");
expect(runtime).toContain('basePath: "/copilotkit"');
});
it("forces REST transport and threads context in the Vite frontend", () => {
const chat = readAgentcoreFile(
"frontend/src/components/chat/CopilotKit/index.tsx",
);
expect(chat).toContain("useSingleEndpoint={false}");
expect(chat).toContain("ThreadsDrawer");
expect(chat).toContain("ThreadsPanelGate");
expect(chat).toContain("CopilotChatConfigurationProvider");
expect(chat).toContain("const [threadId, setThreadId]");
expect(chat).toContain("threadId={threadId}");
expect(chat).toContain("runtimeUrl={runtimeUrl}");
expect(chat).toContain("headers={headers}");
});
it("exposes the client-safe threads enabled gate for Vite", () => {
const viteConfig = readAgentcoreFile("frontend/vite.config.ts");
const lockedState = readAgentcoreFile(
"frontend/src/components/threads-drawer/locked-state.tsx",
);
expect(viteConfig).toContain("VITE_COPILOTKIT_THREADS_ENABLED");
expect(viteConfig).toContain("process.env.COPILOTKIT_LICENSE_TOKEN");
expect(lockedState).toContain(
"import.meta.env.VITE_COPILOTKIT_THREADS_ENABLED",
);
});
it("documents and wires local Intelligence environment variables", () => {
const dockerEnv = readAgentcoreFile("docker/.env.example");
const compose = readAgentcoreFile("docker/docker-compose.yml");
for (const envName of [
"COPILOTKIT_LICENSE_TOKEN",
"INTELLIGENCE_API_KEY",
"INTELLIGENCE_API_URL",
"INTELLIGENCE_GATEWAY_WS_URL",
]) {
expect(dockerEnv).toContain(envName);
expect(compose).toContain(envName);
}
});
it("pins AgentCore frontend and runtime packages to threads-capable versions", () => {
const frontendPackageJson = JSON.parse(
readAgentcoreFile("frontend/package.json"),
) as { dependencies?: Record<string, string> };
const runtimePackageJson = JSON.parse(
readAgentcoreFile("infra-cdk/lambdas/copilotkit-runtime/package.json"),
) as { dependencies?: Record<string, string> };
expect(frontendPackageJson.dependencies?.["@copilotkit/react-core"]).toBe(
"1.59.3",
);
expect(runtimePackageJson.dependencies?.["@copilotkit/runtime"]).toBe(
"1.59.3",
);
expect(runtimePackageJson.dependencies?.["@ag-ui/client"]).toBe("0.0.53");
});
});