-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathagent.test.ts
More file actions
746 lines (671 loc) · 21.7 KB
/
Copy pathagent.test.ts
File metadata and controls
746 lines (671 loc) · 21.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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
import { access, mkdir, writeFile } from "node:fs/promises";
import path from "node:path";
import { afterEach, describe, expect, it, vi } from "vitest";
import { createTempCwd, executeCli } from "./helpers";
import { writeSkillsLockWithSkill } from "./helpers/skills-lock";
function expectSkillsCommandPrefix(
command: string[],
binaryName: string,
args: string[],
): void {
expect(command[0]).toBe(binaryName);
expect(command.slice(1, args.length + 1)).toEqual(args);
}
function mockSkillsExeca(
stdout: unknown,
options: { failed?: boolean; stderr?: string } = {},
) {
const execa = vi.fn(async () => {
if (options.failed) {
throw new Error(options.stderr ?? "skills list failed");
}
return {
stdout: typeof stdout === "string" ? stdout : JSON.stringify(stdout),
stderr: options.stderr ?? "",
};
});
vi.doMock("execa", () => ({ execa }));
return execa;
}
afterEach(() => {
vi.doUnmock("execa");
vi.resetModules();
vi.restoreAllMocks();
});
describe("agent commands", () => {
it("shows help for agent commands", async () => {
const cwd = await createTempCwd();
const stateDir = path.join(cwd, ".state");
const rootHelp = await executeCli({
argv: ["--help"],
cwd,
stateDir,
});
const agentHelp = await executeCli({
argv: ["agent", "--help"],
cwd,
stateDir,
});
const installHelp = await executeCli({
argv: ["agent", "install", "--help"],
cwd,
stateDir,
});
const updateHelp = await executeCli({
argv: ["agent", "update", "--help"],
cwd,
stateDir,
});
const statusHelp = await executeCli({
argv: ["agent", "status", "--help"],
cwd,
stateDir,
});
expect(rootHelp.exitCode).toBe(0);
expect(rootHelp.stderr).toContain("agent");
expect(agentHelp.exitCode).toBe(0);
expect(agentHelp.stderr).toContain(
"Install Prisma context for AI coding agents",
);
expect(agentHelp.stderr).toContain(
"$ npx -y @prisma/cli@latest agent install",
);
expect(agentHelp.stderr).toContain(
"$ npx -y @prisma/cli@latest agent update",
);
expect(agentHelp.stderr).toContain(
"$ npx -y @prisma/cli@latest agent status",
);
expect(installHelp.exitCode).toBe(0);
expect(installHelp.stderr).toContain("--agent <agent>");
expect(installHelp.stderr).toContain("--all-agents");
expect(installHelp.stderr).toContain("--skill <skill>");
expect(installHelp.stderr).not.toContain("--skip-skills");
expect(installHelp.stderr).not.toContain("--skip-project-files");
expect(updateHelp.exitCode).toBe(0);
expect(updateHelp.stderr).toContain(
"Refresh Prisma skills for AI coding agents",
);
expect(updateHelp.stderr).toContain("--all-agents");
expect(statusHelp.exitCode).toBe(0);
expect(statusHelp.stderr).toContain("--global");
});
it("uses the detected package manager in agent help examples", async () => {
const cwd = await createTempCwd();
const stateDir = path.join(cwd, ".state");
await writeFile(
path.join(cwd, "package.json"),
JSON.stringify({ packageManager: "pnpm@11.0.0" }, null, 2),
"utf8",
);
const result = await executeCli({
argv: ["agent", "--help"],
cwd,
stateDir,
});
expect(result.exitCode).toBe(0);
expect(result.stderr).toContain(
"$ pnpm dlx @prisma/cli@latest agent install",
);
expect(result.stderr).toContain(
"$ pnpm dlx @prisma/cli@latest agent update",
);
});
it("builds the skills CLI install command without writing files in dry-run mode", async () => {
const cwd = await createTempCwd();
const stateDir = path.join(cwd, ".state");
const result = await executeCli({
argv: [
"agent",
"install",
"--dry-run",
"--agent",
"codex",
"--agent",
"cursor",
"--skill",
"prisma-compute",
"--global",
"--copy",
"--json",
],
cwd,
stateDir,
});
expect(result.exitCode).toBe(0);
expect(result.stderr).toBe("");
const payload = JSON.parse(result.stdout);
expect(payload).toMatchObject({
ok: true,
command: "agent.install",
result: {
operation: "install",
skills: {
status: "would-install",
},
},
nextSteps: [],
});
expect(payload.result.skills.command).toEqual([
"npx",
"-y",
"skills@latest",
"add",
"prisma/skills",
"--skill",
"prisma-compute",
"--agent",
"codex",
"--agent",
"cursor",
"--global",
"--copy",
"--yes",
]);
});
it("renders agent install dry-run as a planned install", async () => {
const cwd = await createTempCwd();
const stateDir = path.join(cwd, ".state");
const result = await executeCli({
argv: ["agent", "install", "--dry-run"],
cwd,
stateDir,
});
expect(result.exitCode).toBe(0);
expect(result.stderr).toContain(
"agent install → Would install Prisma skills.",
);
expect(result.stderr).toContain("skills: would install");
expect(result.stderr).toContain("--skill '*'");
});
it("uses the detected package manager for the skills installer", async () => {
const cases = [
{
lockfile: "bun.lock",
binary: "bunx",
args: ["skills@latest", "add"],
},
{
lockfile: "pnpm-lock.yaml",
binary: "pnpm",
args: ["dlx", "skills@latest", "add"],
},
{
lockfile: "yarn.lock",
binary: "yarn",
args: ["dlx", "skills@latest", "add"],
},
{
lockfile: "package-lock.json",
binary: "npx",
args: ["-y", "skills@latest", "add"],
},
];
await Promise.all(
cases.map(async (testCase) => {
const cwd = await createTempCwd();
const stateDir = path.join(cwd, ".state");
await writeFile(path.join(cwd, testCase.lockfile), "", "utf8");
const result = await executeCli({
argv: ["agent", "install", "--dry-run", "--json"],
cwd,
stateDir,
});
expect(result.exitCode).toBe(0);
const payload = JSON.parse(result.stdout);
expectSkillsCommandPrefix(
payload.result.skills.command,
testCase.binary,
testCase.args,
);
}),
);
});
it("runs the skills installer through Execa without streaming output", async () => {
vi.resetModules();
const execa = mockSkillsExeca("");
const { createTestCommandContext } = await import("./helpers");
const { runAgentInstall } = await import("../src/controllers/agent");
const cwd = await createTempCwd();
const stateDir = path.join(cwd, ".state");
const { context } = await createTestCommandContext({ cwd, stateDir });
const result = await runAgentInstall(context, {
agent: ["codex"],
skill: ["prisma-compute"],
});
const expectedCommand = [
"npx",
"-y",
"skills@latest",
"add",
"prisma/skills",
"--skill",
"prisma-compute",
"--agent",
"codex",
...(process.platform === "win32" ? ["--copy"] : []),
"--yes",
];
expect(execa).toHaveBeenCalledWith(
"npx",
expectedCommand.slice(1),
expect.objectContaining({
cwd,
env: context.runtime.env,
cancelSignal: context.runtime.signal,
stdin: "ignore",
}),
);
const [, , execaOptions] = execa.mock.calls[0] as unknown as [
string,
string[],
Record<string, unknown>,
];
expect(execaOptions).not.toHaveProperty("stdout");
expect(execaOptions).not.toHaveProperty("stderr");
expect(result.result.skills).toEqual({
status: "installed",
command: expectedCommand,
});
});
it("prefers package.json packageManager for the skills installer", async () => {
const cwd = await createTempCwd();
const stateDir = path.join(cwd, ".state");
await writeFile(path.join(cwd, "package-lock.json"), "", "utf8");
await writeFile(
path.join(cwd, "package.json"),
JSON.stringify({ packageManager: "pnpm@10.0.0" }, null, 2),
"utf8",
);
const result = await executeCli({
argv: ["agent", "install", "--dry-run", "--json"],
cwd,
stateDir,
});
expect(result.exitCode).toBe(0);
const payload = JSON.parse(result.stdout);
expectSkillsCommandPrefix(payload.result.skills.command, "pnpm", [
"dlx",
"skills@latest",
"add",
]);
});
it("detects the package manager from a parent workspace", async () => {
const cwd = await createTempCwd();
const appPath = path.join(cwd, "apps", "web");
const stateDir = path.join(cwd, ".state");
await mkdir(appPath, { recursive: true });
await writeFile(path.join(cwd, "pnpm-lock.yaml"), "", "utf8");
const result = await executeCli({
argv: ["agent", "install", "--dry-run", "--json"],
cwd: appPath,
stateDir,
});
expect(result.exitCode).toBe(0);
const payload = JSON.parse(result.stdout);
expectSkillsCommandPrefix(payload.result.skills.command, "pnpm", [
"dlx",
"skills@latest",
"add",
]);
});
it("checks required Prisma skills from the skills lock", async () => {
const cwd = await createTempCwd();
await writeSkillsLockWithSkill(cwd, "prisma-client-api");
const { readPrismaAgentSetupStatus } = await import(
"../src/lib/agent/setup-status"
);
const signal = new AbortController().signal;
await expect(
readPrismaAgentSetupStatus({ cwd, signal }),
).resolves.toMatchObject({ skillsInstalled: true });
await expect(
readPrismaAgentSetupStatus({
cwd,
signal,
requiredSkill: "prisma-compute",
}),
).resolves.toMatchObject({ skillsInstalled: false });
await writeSkillsLockWithSkill(cwd, "prisma-compute");
await expect(
readPrismaAgentSetupStatus({
cwd,
signal,
requiredSkill: "prisma-compute",
}),
).resolves.toMatchObject({ skillsInstalled: true });
});
it("treats malformed skills lock files as not installed", async () => {
const cwd = await createTempCwd();
await writeFile(path.join(cwd, "skills-lock.json"), "{", "utf8");
const { readPrismaAgentSetupStatus } = await import(
"../src/lib/agent/setup-status"
);
await expect(
readPrismaAgentSetupStatus({
cwd,
signal: new AbortController().signal,
}),
).resolves.toMatchObject({ skillsInstalled: false });
});
it("keeps Windows command suffixes out of displayed agent commands", async () => {
const platform = vi
.spyOn(process, "platform", "get")
.mockReturnValue("win32");
try {
const cwd = await createTempCwd();
await writeFile(
path.join(cwd, "package.json"),
JSON.stringify({ packageManager: "pnpm@11.0.0" }, null, 2),
"utf8",
);
const { resolvePrismaCliPackageCommandSync } = await import(
"../src/lib/agent/cli-command"
);
const { resolveSkillsPackageRunner } = await import(
"../src/lib/agent/package-manager"
);
expect(
resolvePrismaCliPackageCommandSync(cwd, ["agent", "install"]),
).toBe("pnpm dlx @prisma/cli@latest agent install");
const help = await executeCli({
argv: ["agent", "--help"],
cwd,
stateDir: path.join(cwd, ".state"),
});
expect(help.exitCode).toBe(0);
expect(help.stderr).toContain(
"$ pnpm dlx @prisma/cli@latest agent install",
);
expect(help.stderr).not.toContain("pnpm.cmd");
const install = await executeCli({
argv: ["agent", "install", "--dry-run", "--json"],
cwd,
stateDir: path.join(cwd, ".state"),
});
expect(install.exitCode).toBe(0);
await expect(access(path.join(cwd, "AGENTS.md"))).rejects.toThrow();
await expect(access(path.join(cwd, "CLAUDE.md"))).rejects.toThrow();
expect(JSON.parse(install.stdout).result.skills.command).toEqual([
"pnpm",
"dlx",
"skills@latest",
"add",
"prisma/skills",
"--skill",
"*",
"--agent",
"codex",
"--agent",
"claude-code",
"--copy",
"--yes",
]);
await expect(
resolveSkillsPackageRunner({
cwd,
signal: new AbortController().signal,
}),
).resolves.toEqual(["pnpm", "dlx"]);
} finally {
platform.mockRestore();
}
});
it("leaves Windows command execution details to Execa", async () => {
const platform = vi
.spyOn(process, "platform", "get")
.mockReturnValue("win32");
try {
const cwd = await createTempCwd();
await writeFile(path.join(cwd, "bun.lock"), "", "utf8");
const { resolvePrismaCliPackageCommandSync } = await import(
"../src/lib/agent/cli-command"
);
const { resolveSkillsPackageRunner } = await import(
"../src/lib/agent/package-manager"
);
expect(
resolvePrismaCliPackageCommandSync(cwd, ["agent", "install"]),
).toBe("bunx @prisma/cli@latest agent install");
await expect(
resolveSkillsPackageRunner({
cwd,
signal: new AbortController().signal,
}),
).resolves.toEqual(["bunx"]);
} finally {
platform.mockRestore();
}
});
it("supports all agent targets in dry-run mode", async () => {
const cwd = await createTempCwd();
const stateDir = path.join(cwd, ".state");
const result = await executeCli({
argv: ["agent", "update", "--dry-run", "--all-agents", "--json"],
cwd,
stateDir,
});
expect(result.exitCode).toBe(0);
const payload = JSON.parse(result.stdout);
expect(payload.command).toBe("agent.update");
expect(payload.result.operation).toBe("update");
expect(payload.result.skills.command).toContain("--agent");
expect(payload.result.skills.command).toContain("*");
});
it("points global installs at the global status check", async () => {
vi.resetModules();
mockSkillsExeca("");
const { createTestCommandContext } = await import("./helpers");
const { runAgentInstall } = await import("../src/controllers/agent");
const cwd = await createTempCwd();
const stateDir = path.join(cwd, ".state");
const { context } = await createTestCommandContext({ cwd, stateDir });
const result = await runAgentInstall(context, { global: true });
expect(result.nextSteps).toEqual([
"Run npx -y @prisma/cli@latest agent status --global to verify the installed Prisma skills.",
]);
});
it("reports installed Prisma skills from the skills CLI", async () => {
vi.resetModules();
const execa = mockSkillsExeca([
{
name: "prisma-compute",
path: "/repo/.agents/skills/prisma-compute",
scope: "project",
agents: ["Codex", "Cursor"],
},
{
name: "unrelated",
path: "/repo/.agents/skills/unrelated",
scope: "project",
agents: ["Codex"],
},
]);
const { createTestCommandContext } = await import("./helpers");
const { runAgentStatus } = await import("../src/controllers/agent");
const cwd = await createTempCwd();
const stateDir = path.join(cwd, ".state");
await writeFile(
path.join(cwd, "package.json"),
JSON.stringify({ packageManager: "pnpm@11.0.0" }, null, 2),
"utf8",
);
const { context } = await createTestCommandContext({ cwd, stateDir });
const result = await runAgentStatus(context);
expect(execa).toHaveBeenCalledWith(
"pnpm",
["dlx", "skills@latest", "list", "--json"],
expect.objectContaining({ cwd }),
);
expect(result.result).toMatchObject({
skills: [
{
name: "prisma-compute",
path: "/repo/.agents/skills/prisma-compute",
scope: "project",
agents: ["Codex", "Cursor"],
},
],
skillsListCommand: ["pnpm", "dlx", "skills@latest", "list", "--json"],
statusScope: "project",
skillsLockPath: "skills-lock.json",
skillsLockInstalled: false,
skillsInstalled: true,
statusSource: "skills-cli",
promptDismissedAt: null,
});
expect(result.warnings).toEqual([]);
expect(result.nextSteps).toEqual([]);
});
it("reports globally installed Prisma skills from the skills CLI", async () => {
vi.resetModules();
const execa = mockSkillsExeca([
{
name: "prisma-compute",
path: "/Users/aman/.agents/skills/prisma-compute",
scope: "global",
agents: ["Codex"],
},
]);
const { createTestCommandContext } = await import("./helpers");
const { runAgentStatus } = await import("../src/controllers/agent");
const cwd = await createTempCwd();
const stateDir = path.join(cwd, ".state");
const { context } = await createTestCommandContext({ cwd, stateDir });
const result = await runAgentStatus(context, { global: true });
expect(execa).toHaveBeenCalledWith(
"npx",
["-y", "skills@latest", "list", "-g", "--json"],
expect.objectContaining({ cwd }),
);
expect(result.result).toMatchObject({
skills: [
{
name: "prisma-compute",
path: "/Users/aman/.agents/skills/prisma-compute",
scope: "global",
agents: ["Codex"],
},
],
skillsListCommand: ["npx", "-y", "skills@latest", "list", "-g", "--json"],
statusScope: "global",
skillsInstalled: true,
statusSource: "skills-cli",
});
expect(result.nextSteps).toEqual([]);
});
it("checks Prisma skills from the compute config root when run in a subdirectory", async () => {
vi.resetModules();
const execa = mockSkillsExeca([
{
name: "prisma-compute",
path: "/repo/.agents/skills/prisma-compute",
scope: "project",
agents: ["Codex"],
},
]);
const { createTestCommandContext } = await import("./helpers");
const { runAgentStatus } = await import("../src/controllers/agent");
const cwd = await createTempCwd();
const appDir = path.join(cwd, "apps", "web");
const stateDir = path.join(cwd, ".state");
await mkdir(appDir, { recursive: true });
await mkdir(path.join(cwd, ".git"), { recursive: true });
await writeFile(
path.join(cwd, "prisma.compute.ts"),
'export default { apps: { web: { root: "apps/web" } } };\n',
"utf8",
);
await writeFile(
path.join(cwd, "package.json"),
JSON.stringify({ packageManager: "pnpm@11.0.0" }, null, 2),
"utf8",
);
await writeFile(
path.join(cwd, "skills-lock.json"),
JSON.stringify({ sources: ["prisma/skills"] }),
"utf8",
);
const { context } = await createTestCommandContext({
cwd: appDir,
stateDir,
});
const result = await runAgentStatus(context);
expect(execa).toHaveBeenCalledWith(
"pnpm",
["dlx", "skills@latest", "list", "--json"],
expect.objectContaining({ cwd }),
);
expect(result.result.skillsLockInstalled).toBe(true);
expect(result.result.skillsInstalled).toBe(true);
expect(result.result.statusScope).toBe("project");
expect(result.result.skills).toEqual([
{
name: "prisma-compute",
path: "/repo/.agents/skills/prisma-compute",
scope: "project",
agents: ["Codex"],
},
]);
expect(result.nextSteps).toEqual([]);
});
it("falls back to skills-lock status when skills CLI listing fails", async () => {
vi.resetModules();
mockSkillsExeca("", { failed: true, stderr: "skills exploded" });
const { createTestCommandContext } = await import("./helpers");
const { runAgentStatus } = await import("../src/controllers/agent");
const cwd = await createTempCwd();
const stateDir = path.join(cwd, ".state");
await writeFile(
path.join(cwd, "skills-lock.json"),
JSON.stringify({ sources: ["prisma/skills"] }),
"utf8",
);
const { context } = await createTestCommandContext({ cwd, stateDir });
const result = await runAgentStatus(context);
expect(result.result).toEqual({
skills: [],
skillsListCommand: ["npx", "-y", "skills@latest", "list", "--json"],
statusScope: "project",
skillsLockPath: "skills-lock.json",
skillsLockInstalled: true,
skillsInstalled: true,
statusSource: "skills-lock",
promptDismissedAt: null,
});
expect(result.warnings[0]).toContain("skills exploded");
expect(result.nextSteps).toEqual([]);
});
it("does not fall back to project skills-lock status for global status failures", async () => {
vi.resetModules();
mockSkillsExeca("", {
failed: true,
stderr: "global skills exploded",
});
const { createTestCommandContext } = await import("./helpers");
const { runAgentStatus } = await import("../src/controllers/agent");
const cwd = await createTempCwd();
const stateDir = path.join(cwd, ".state");
await writeFile(
path.join(cwd, "skills-lock.json"),
JSON.stringify({ sources: ["prisma/skills"] }),
"utf8",
);
const { context } = await createTestCommandContext({ cwd, stateDir });
const result = await runAgentStatus(context, { global: true });
expect(result.result).toEqual({
skills: [],
skillsListCommand: ["npx", "-y", "skills@latest", "list", "-g", "--json"],
statusScope: "global",
skillsLockPath: "skills-lock.json",
skillsLockInstalled: true,
skillsInstalled: false,
statusSource: "unavailable",
promptDismissedAt: null,
});
expect(result.warnings[0]).toContain("global skills exploded");
expect(result.nextSteps).toEqual([
"Run npx -y @prisma/cli@latest agent install --global to install or refresh Prisma skills.",
]);
});
});