154 lines
4.2 KiB
TypeScript
154 lines
4.2 KiB
TypeScript
import { beforeEach, describe, expect, it, vi } from "vitest";
|
|
|
|
import { runClaudeCliAgent } from "./claude-cli-runner.js";
|
|
|
|
const runCommandWithTimeoutMock = vi.fn();
|
|
|
|
function createDeferred<T>() {
|
|
let resolve: (value: T) => void;
|
|
let reject: (error: unknown) => void;
|
|
const promise = new Promise<T>((res, rej) => {
|
|
resolve = res;
|
|
reject = rej;
|
|
});
|
|
return {
|
|
promise,
|
|
resolve: resolve as (value: T) => void,
|
|
reject: reject as (error: unknown) => void,
|
|
};
|
|
}
|
|
|
|
async function waitForCalls(mockFn: { mock: { calls: unknown[][] } }, count: number) {
|
|
for (let i = 0; i < 50; i += 1) {
|
|
if (mockFn.mock.calls.length >= count) return;
|
|
await new Promise((resolve) => setTimeout(resolve, 0));
|
|
}
|
|
throw new Error(`Expected ${count} calls, got ${mockFn.mock.calls.length}`);
|
|
}
|
|
|
|
vi.mock("../process/exec.js", () => ({
|
|
runCommandWithTimeout: (...args: unknown[]) => runCommandWithTimeoutMock(...args),
|
|
}));
|
|
|
|
describe("runClaudeCliAgent", () => {
|
|
beforeEach(() => {
|
|
runCommandWithTimeoutMock.mockReset();
|
|
});
|
|
|
|
it("starts a new session with --session-id when none is provided", async () => {
|
|
runCommandWithTimeoutMock.mockResolvedValueOnce({
|
|
stdout: JSON.stringify({ message: "ok", session_id: "sid-1" }),
|
|
stderr: "",
|
|
code: 0,
|
|
signal: null,
|
|
killed: false,
|
|
});
|
|
|
|
await runClaudeCliAgent({
|
|
sessionId: "clawdbot-session",
|
|
sessionFile: "/tmp/session.jsonl",
|
|
workspaceDir: "/tmp",
|
|
prompt: "hi",
|
|
model: "opus",
|
|
timeoutMs: 1_000,
|
|
runId: "run-1",
|
|
});
|
|
|
|
expect(runCommandWithTimeoutMock).toHaveBeenCalledTimes(1);
|
|
const argv = runCommandWithTimeoutMock.mock.calls[0]?.[0] as string[];
|
|
expect(argv).toContain("claude");
|
|
expect(argv).toContain("--session-id");
|
|
expect(argv).toContain("hi");
|
|
});
|
|
|
|
it("uses provided --session-id when a claude session id is provided", async () => {
|
|
runCommandWithTimeoutMock.mockResolvedValueOnce({
|
|
stdout: JSON.stringify({ message: "ok", session_id: "sid-2" }),
|
|
stderr: "",
|
|
code: 0,
|
|
signal: null,
|
|
killed: false,
|
|
});
|
|
|
|
await runClaudeCliAgent({
|
|
sessionId: "clawdbot-session",
|
|
sessionFile: "/tmp/session.jsonl",
|
|
workspaceDir: "/tmp",
|
|
prompt: "hi",
|
|
model: "opus",
|
|
timeoutMs: 1_000,
|
|
runId: "run-2",
|
|
claudeSessionId: "c9d7b831-1c31-4d22-80b9-1e50ca207d4b",
|
|
});
|
|
|
|
expect(runCommandWithTimeoutMock).toHaveBeenCalledTimes(1);
|
|
const argv = runCommandWithTimeoutMock.mock.calls[0]?.[0] as string[];
|
|
expect(argv).toContain("--session-id");
|
|
expect(argv).toContain("c9d7b831-1c31-4d22-80b9-1e50ca207d4b");
|
|
expect(argv).toContain("hi");
|
|
});
|
|
|
|
it("serializes concurrent claude-cli runs", async () => {
|
|
const firstDeferred = createDeferred<{
|
|
stdout: string;
|
|
stderr: string;
|
|
code: number | null;
|
|
signal: NodeJS.Signals | null;
|
|
killed: boolean;
|
|
}>();
|
|
const secondDeferred = createDeferred<{
|
|
stdout: string;
|
|
stderr: string;
|
|
code: number | null;
|
|
signal: NodeJS.Signals | null;
|
|
killed: boolean;
|
|
}>();
|
|
|
|
runCommandWithTimeoutMock
|
|
.mockImplementationOnce(() => firstDeferred.promise)
|
|
.mockImplementationOnce(() => secondDeferred.promise);
|
|
|
|
const firstRun = runClaudeCliAgent({
|
|
sessionId: "s1",
|
|
sessionFile: "/tmp/session.jsonl",
|
|
workspaceDir: "/tmp",
|
|
prompt: "first",
|
|
model: "opus",
|
|
timeoutMs: 1_000,
|
|
runId: "run-1",
|
|
});
|
|
|
|
const secondRun = runClaudeCliAgent({
|
|
sessionId: "s2",
|
|
sessionFile: "/tmp/session.jsonl",
|
|
workspaceDir: "/tmp",
|
|
prompt: "second",
|
|
model: "opus",
|
|
timeoutMs: 1_000,
|
|
runId: "run-2",
|
|
});
|
|
|
|
await waitForCalls(runCommandWithTimeoutMock, 1);
|
|
|
|
firstDeferred.resolve({
|
|
stdout: JSON.stringify({ message: "ok", session_id: "sid-1" }),
|
|
stderr: "",
|
|
code: 0,
|
|
signal: null,
|
|
killed: false,
|
|
});
|
|
|
|
await waitForCalls(runCommandWithTimeoutMock, 2);
|
|
|
|
secondDeferred.resolve({
|
|
stdout: JSON.stringify({ message: "ok", session_id: "sid-2" }),
|
|
stderr: "",
|
|
code: 0,
|
|
signal: null,
|
|
killed: false,
|
|
});
|
|
|
|
await Promise.all([firstRun, secondRun]);
|
|
});
|
|
});
|