mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-05 22:10:21 +00:00
162 lines
4.5 KiB
TypeScript
162 lines
4.5 KiB
TypeScript
import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest";
|
|
|
|
const noop = () => {};
|
|
const MAIN_REQUESTER_SESSION_KEY = "agent:main:main";
|
|
const MAIN_REQUESTER_DISPLAY_KEY = "main";
|
|
|
|
type LifecycleData = {
|
|
phase?: string;
|
|
startedAt?: number;
|
|
endedAt?: number;
|
|
aborted?: boolean;
|
|
error?: string;
|
|
};
|
|
type LifecycleEvent = {
|
|
stream?: string;
|
|
runId: string;
|
|
data?: LifecycleData;
|
|
};
|
|
|
|
let lifecycleHandler: ((evt: LifecycleEvent) => void) | undefined;
|
|
const callGatewayMock = vi.fn(async (request: unknown) => {
|
|
const method = (request as { method?: string }).method;
|
|
if (method === "agent.wait") {
|
|
// Keep wait unresolved from the RPC path so lifecycle fallback logic is exercised.
|
|
return { status: "pending" };
|
|
}
|
|
return {};
|
|
});
|
|
const onAgentEventMock = vi.fn((handler: typeof lifecycleHandler) => {
|
|
lifecycleHandler = handler;
|
|
return noop;
|
|
});
|
|
const loadConfigMock = vi.fn(() => ({
|
|
agents: { defaults: { subagents: { archiveAfterMinutes: 0 } } },
|
|
}));
|
|
const loadRegistryMock = vi.fn(() => new Map());
|
|
const saveRegistryMock = vi.fn(() => {});
|
|
const announceSpy = vi.fn(async () => true);
|
|
|
|
vi.mock("../gateway/call.js", () => ({
|
|
callGateway: callGatewayMock,
|
|
}));
|
|
|
|
vi.mock("../infra/agent-events.js", () => ({
|
|
onAgentEvent: onAgentEventMock,
|
|
}));
|
|
|
|
vi.mock("../config/config.js", () => ({
|
|
loadConfig: loadConfigMock,
|
|
}));
|
|
|
|
vi.mock("./subagent-announce.js", () => ({
|
|
runSubagentAnnounceFlow: announceSpy,
|
|
}));
|
|
|
|
vi.mock("../plugins/hook-runner-global.js", () => ({
|
|
getGlobalHookRunner: vi.fn(() => null),
|
|
}));
|
|
|
|
vi.mock("./subagent-registry.store.js", () => ({
|
|
loadSubagentRegistryFromDisk: loadRegistryMock,
|
|
saveSubagentRegistryToDisk: saveRegistryMock,
|
|
}));
|
|
|
|
describe("subagent registry lifecycle error grace", () => {
|
|
let mod: typeof import("./subagent-registry.js");
|
|
|
|
beforeAll(async () => {
|
|
mod = await import("./subagent-registry.js");
|
|
});
|
|
|
|
beforeEach(() => {
|
|
vi.useFakeTimers();
|
|
});
|
|
|
|
afterEach(() => {
|
|
announceSpy.mockClear();
|
|
lifecycleHandler = undefined;
|
|
mod.resetSubagentRegistryForTests({ persist: false });
|
|
vi.useRealTimers();
|
|
});
|
|
|
|
const flushAsync = async () => {
|
|
await Promise.resolve();
|
|
await Promise.resolve();
|
|
};
|
|
|
|
function registerCompletionRun(runId: string, childSuffix: string, task: string) {
|
|
mod.registerSubagentRun({
|
|
runId,
|
|
childSessionKey: `agent:main:subagent:${childSuffix}`,
|
|
requesterSessionKey: MAIN_REQUESTER_SESSION_KEY,
|
|
requesterDisplayKey: MAIN_REQUESTER_DISPLAY_KEY,
|
|
task,
|
|
cleanup: "keep",
|
|
expectsCompletionMessage: true,
|
|
});
|
|
}
|
|
|
|
function emitLifecycleEvent(runId: string, data: LifecycleData) {
|
|
lifecycleHandler?.({
|
|
stream: "lifecycle",
|
|
runId,
|
|
data,
|
|
});
|
|
}
|
|
|
|
function readFirstAnnounceOutcome() {
|
|
const announceCalls = announceSpy.mock.calls as unknown as Array<Array<unknown>>;
|
|
const first = (announceCalls[0]?.[0] ?? {}) as {
|
|
outcome?: { status?: string; error?: string };
|
|
};
|
|
return first.outcome;
|
|
}
|
|
|
|
it("ignores transient lifecycle errors when run retries and then ends successfully", async () => {
|
|
registerCompletionRun("run-transient-error", "transient-error", "transient error test");
|
|
|
|
emitLifecycleEvent("run-transient-error", {
|
|
phase: "error",
|
|
error: "rate limit",
|
|
endedAt: 1_000,
|
|
});
|
|
await flushAsync();
|
|
expect(announceSpy).not.toHaveBeenCalled();
|
|
|
|
await vi.advanceTimersByTimeAsync(14_999);
|
|
expect(announceSpy).not.toHaveBeenCalled();
|
|
|
|
emitLifecycleEvent("run-transient-error", { phase: "start", startedAt: 1_050 });
|
|
await flushAsync();
|
|
|
|
await vi.advanceTimersByTimeAsync(20_000);
|
|
expect(announceSpy).not.toHaveBeenCalled();
|
|
|
|
emitLifecycleEvent("run-transient-error", { phase: "end", endedAt: 1_250 });
|
|
await flushAsync();
|
|
|
|
expect(announceSpy).toHaveBeenCalledTimes(1);
|
|
expect(readFirstAnnounceOutcome()?.status).toBe("ok");
|
|
});
|
|
|
|
it("announces error when lifecycle error remains terminal after grace window", async () => {
|
|
registerCompletionRun("run-terminal-error", "terminal-error", "terminal error test");
|
|
|
|
emitLifecycleEvent("run-terminal-error", {
|
|
phase: "error",
|
|
error: "fatal failure",
|
|
endedAt: 2_000,
|
|
});
|
|
await flushAsync();
|
|
expect(announceSpy).not.toHaveBeenCalled();
|
|
|
|
await vi.advanceTimersByTimeAsync(15_000);
|
|
await flushAsync();
|
|
|
|
expect(announceSpy).toHaveBeenCalledTimes(1);
|
|
expect(readFirstAnnounceOutcome()?.status).toBe("error");
|
|
expect(readFirstAnnounceOutcome()?.error).toBe("fatal failure");
|
|
});
|
|
});
|