mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-14 19:40:40 +00:00
50 lines
1.2 KiB
TypeScript
50 lines
1.2 KiB
TypeScript
import { afterEach, expect, test, vi } from "vitest";
|
|
import { listRunningSessions, resetProcessRegistryForTests } from "./bash-process-registry.js";
|
|
import { createExecTool } from "./bash-tools.exec.js";
|
|
|
|
const { supervisorSpawnMock } = vi.hoisted(() => ({
|
|
supervisorSpawnMock: vi.fn(),
|
|
}));
|
|
|
|
const makeSupervisor = () => {
|
|
const noop = vi.fn();
|
|
return {
|
|
spawn: (...args: unknown[]) => supervisorSpawnMock(...args),
|
|
cancel: noop,
|
|
cancelScope: noop,
|
|
reconcileOrphans: noop,
|
|
getRecord: noop,
|
|
};
|
|
};
|
|
|
|
vi.mock("../process/supervisor/index.js", () => ({
|
|
getProcessSupervisor: () => makeSupervisor(),
|
|
}));
|
|
|
|
afterEach(() => {
|
|
resetProcessRegistryForTests();
|
|
vi.clearAllMocks();
|
|
});
|
|
|
|
test("exec cleans session state when PTY fallback spawn also fails", async () => {
|
|
supervisorSpawnMock
|
|
.mockRejectedValueOnce(new Error("pty spawn failed"))
|
|
.mockRejectedValueOnce(new Error("child fallback failed"));
|
|
|
|
const tool = createExecTool({
|
|
allowBackground: false,
|
|
host: "gateway",
|
|
security: "full",
|
|
ask: "off",
|
|
});
|
|
|
|
await expect(
|
|
tool.execute("toolcall", {
|
|
command: "echo ok",
|
|
pty: true,
|
|
}),
|
|
).rejects.toThrow("child fallback failed");
|
|
|
|
expect(listRunningSessions()).toHaveLength(0);
|
|
});
|