mirror of
https://github.com/harivansh-afk/clanker-agent.git
synced 2026-04-15 04:03:27 +00:00
157 lines
4.1 KiB
TypeScript
157 lines
4.1 KiB
TypeScript
import { afterEach, describe, expect, it, vi } from "vitest";
|
|
import { DurableChatRunReporter } from "../src/core/gateway/durable-chat-run.js";
|
|
|
|
function mockOkResponse() {
|
|
return {
|
|
ok: true,
|
|
status: 200,
|
|
text: vi.fn().mockResolvedValue(""),
|
|
} as unknown as Response;
|
|
}
|
|
|
|
describe("DurableChatRunReporter", () => {
|
|
afterEach(() => {
|
|
vi.restoreAllMocks();
|
|
});
|
|
|
|
it("posts assistant state to the relay and completes the run", async () => {
|
|
const fetchMock = vi.fn<typeof fetch>().mockResolvedValue(mockOkResponse());
|
|
vi.stubGlobal("fetch", fetchMock);
|
|
|
|
const reporter = new DurableChatRunReporter({
|
|
runId: "run-1",
|
|
callbackUrl: "https://web.example/api/chat/runs/run-1/events",
|
|
callbackToken: "callback-token",
|
|
});
|
|
|
|
const assistantMessage = {
|
|
role: "assistant",
|
|
timestamp: 111,
|
|
content: [{ type: "text", text: "hello from the sandbox" }],
|
|
};
|
|
|
|
reporter.handleSessionEvent(
|
|
{
|
|
type: "message_start",
|
|
message: assistantMessage,
|
|
} as never,
|
|
[],
|
|
);
|
|
reporter.handleSessionEvent(
|
|
{
|
|
type: "message_update",
|
|
message: assistantMessage,
|
|
assistantMessageEvent: {
|
|
type: "text_delta",
|
|
delta: "hello from the sandbox",
|
|
contentIndex: 0,
|
|
},
|
|
} as never,
|
|
[],
|
|
);
|
|
reporter.handleSessionEvent(
|
|
{
|
|
type: "tool_execution_end",
|
|
toolCallId: "call-1",
|
|
toolName: "bash",
|
|
result: { stdout: "done" },
|
|
isError: false,
|
|
} as never,
|
|
[
|
|
{
|
|
toolCallId: "call-1",
|
|
toolName: "bash",
|
|
result: { stdout: "done" },
|
|
isError: false,
|
|
timestamp: 222,
|
|
},
|
|
],
|
|
);
|
|
|
|
await reporter.finalize({
|
|
ok: true,
|
|
response: "hello from the sandbox",
|
|
sessionKey: "session-1",
|
|
});
|
|
|
|
expect(fetchMock).toHaveBeenCalledTimes(2);
|
|
expect(fetchMock.mock.calls[0]?.[0]).toBe(
|
|
"https://web.example/api/chat/runs/run-1/events",
|
|
);
|
|
expect(fetchMock.mock.calls[1]?.[0]).toBe(
|
|
"https://web.example/api/chat/runs/run-1/events",
|
|
);
|
|
|
|
expect(fetchMock.mock.calls[0]?.[1]?.headers).toMatchObject({
|
|
Authorization: "Bearer callback-token",
|
|
"Content-Type": "application/json",
|
|
});
|
|
|
|
const runMessagesCall = fetchMock.mock.calls.find((call) =>
|
|
String(call[1]?.body).includes('"items"'),
|
|
);
|
|
const runMessagesBody = JSON.parse(String(runMessagesCall?.[1]?.body)) as {
|
|
items: Array<{
|
|
idempotencyKey: string;
|
|
partsJson: string;
|
|
}>;
|
|
};
|
|
expect(runMessagesBody.items).toHaveLength(1);
|
|
expect(runMessagesBody.items[0]).toMatchObject({
|
|
idempotencyKey: "run:run-1:assistant",
|
|
});
|
|
expect(JSON.parse(runMessagesBody.items[0]?.partsJson ?? "[]")).toEqual(
|
|
expect.arrayContaining([
|
|
expect.objectContaining({
|
|
type: "text",
|
|
text: "hello from the sandbox",
|
|
}),
|
|
expect.objectContaining({
|
|
type: "tool-invocation",
|
|
toolCallId: "call-1",
|
|
toolName: "bash",
|
|
state: "result",
|
|
result: { stdout: "done" },
|
|
}),
|
|
]),
|
|
);
|
|
|
|
expect(
|
|
JSON.parse(String(fetchMock.mock.calls[1]?.[1]?.body)),
|
|
).toMatchObject({
|
|
final: {
|
|
status: "completed",
|
|
},
|
|
});
|
|
});
|
|
|
|
it("marks aborted runs as interrupted", async () => {
|
|
const fetchMock = vi.fn<typeof fetch>().mockResolvedValue(mockOkResponse());
|
|
vi.stubGlobal("fetch", fetchMock);
|
|
|
|
const reporter = new DurableChatRunReporter({
|
|
runId: "run-2",
|
|
callbackUrl: "https://web.example/api/chat/runs/run-2/events",
|
|
callbackToken: "callback-token",
|
|
});
|
|
|
|
await reporter.finalize({
|
|
ok: false,
|
|
response: "",
|
|
error: "Session aborted",
|
|
sessionKey: "session-1",
|
|
});
|
|
|
|
expect(fetchMock).toHaveBeenCalledTimes(1);
|
|
expect(fetchMock.mock.calls[0]?.[0]).toBe(
|
|
"https://web.example/api/chat/runs/run-2/events",
|
|
);
|
|
expect(
|
|
JSON.parse(String(fetchMock.mock.calls[0]?.[1]?.body)),
|
|
).toMatchObject({
|
|
final: {
|
|
status: "interrupted",
|
|
},
|
|
});
|
|
});
|
|
});
|