mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-21 06:02:13 +00:00
123 lines
3.8 KiB
TypeScript
123 lines
3.8 KiB
TypeScript
import { afterAll, beforeAll, beforeEach, describe, expect, it, vi } from "vitest";
|
|
|
|
const chatHistoryMock = vi.fn<(sessionKey: string) => Promise<{ messages?: Array<unknown> }>>(
|
|
async (_sessionKey: string) => ({ messages: [] }),
|
|
);
|
|
|
|
vi.mock("../gateway/call.js", () => ({
|
|
callGateway: vi.fn(async (request: unknown) => {
|
|
const typed = request as { method?: string; params?: { sessionKey?: string } };
|
|
if (typed.method === "chat.history") {
|
|
return await chatHistoryMock(typed.params?.sessionKey ?? "");
|
|
}
|
|
return {};
|
|
}),
|
|
}));
|
|
|
|
describe("captureSubagentCompletionReply", () => {
|
|
let previousFastTestEnv: string | undefined;
|
|
let captureSubagentCompletionReply: (typeof import("./subagent-announce.js"))["captureSubagentCompletionReply"];
|
|
|
|
async function loadFreshSubagentAnnounceModuleForTest() {
|
|
vi.resetModules();
|
|
({ captureSubagentCompletionReply } = await import("./subagent-announce.js"));
|
|
}
|
|
|
|
beforeAll(async () => {
|
|
previousFastTestEnv = process.env.OPENCLAW_TEST_FAST;
|
|
process.env.OPENCLAW_TEST_FAST = "1";
|
|
});
|
|
|
|
afterAll(() => {
|
|
if (previousFastTestEnv === undefined) {
|
|
delete process.env.OPENCLAW_TEST_FAST;
|
|
return;
|
|
}
|
|
process.env.OPENCLAW_TEST_FAST = previousFastTestEnv;
|
|
});
|
|
|
|
beforeEach(async () => {
|
|
await loadFreshSubagentAnnounceModuleForTest();
|
|
chatHistoryMock.mockReset().mockResolvedValue({ messages: [] });
|
|
});
|
|
|
|
it("returns immediate assistant output from history without polling", async () => {
|
|
chatHistoryMock.mockResolvedValueOnce({
|
|
messages: [
|
|
{
|
|
role: "assistant",
|
|
content: [{ type: "text", text: "Immediate assistant completion" }],
|
|
},
|
|
],
|
|
});
|
|
|
|
const result = await captureSubagentCompletionReply("agent:main:subagent:child");
|
|
|
|
expect(result).toBe("Immediate assistant completion");
|
|
expect(chatHistoryMock).toHaveBeenCalledTimes(1);
|
|
});
|
|
|
|
it("polls briefly and returns late tool output once available", async () => {
|
|
vi.useFakeTimers();
|
|
chatHistoryMock
|
|
.mockResolvedValueOnce({ messages: [] })
|
|
.mockResolvedValueOnce({ messages: [] })
|
|
.mockResolvedValueOnce({
|
|
messages: [
|
|
{
|
|
role: "toolResult",
|
|
content: [
|
|
{
|
|
type: "text",
|
|
text: "Late tool result completion",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|
|
|
|
const pending = captureSubagentCompletionReply("agent:main:subagent:child");
|
|
await vi.runAllTimersAsync();
|
|
const result = await pending;
|
|
|
|
expect(result).toBe("Late tool result completion");
|
|
expect(chatHistoryMock).toHaveBeenCalledTimes(3);
|
|
vi.useRealTimers();
|
|
});
|
|
|
|
it("returns undefined when no completion output arrives before retry window closes", async () => {
|
|
vi.useFakeTimers();
|
|
chatHistoryMock.mockResolvedValue({ messages: [] });
|
|
|
|
const pending = captureSubagentCompletionReply("agent:main:subagent:child");
|
|
await vi.runAllTimersAsync();
|
|
const result = await pending;
|
|
|
|
expect(result).toBeUndefined();
|
|
expect(chatHistoryMock).toHaveBeenCalled();
|
|
vi.useRealTimers();
|
|
});
|
|
|
|
it("returns partial assistant progress when the latest assistant turn is tool-only", async () => {
|
|
chatHistoryMock.mockResolvedValueOnce({
|
|
messages: [
|
|
{
|
|
role: "assistant",
|
|
content: [
|
|
{ type: "text", text: "Mapped the modules." },
|
|
{ type: "toolCall", id: "call-1", name: "read", arguments: {} },
|
|
],
|
|
},
|
|
{
|
|
role: "assistant",
|
|
content: [{ type: "toolCall", id: "call-2", name: "exec", arguments: {} }],
|
|
},
|
|
],
|
|
});
|
|
|
|
const result = await captureSubagentCompletionReply("agent:main:subagent:child");
|
|
|
|
expect(result).toBe("Mapped the modules.");
|
|
});
|
|
});
|