mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-31 14:58:36 +00:00
216 lines
6.2 KiB
TypeScript
216 lines
6.2 KiB
TypeScript
import { afterEach, describe, expect, it, vi } from "vitest";
|
|
import {
|
|
closeCodexSandboxExecServersForTests,
|
|
ensureCodexSandboxExecServerEnvironment,
|
|
} from "./sandbox-exec-server.js";
|
|
import {
|
|
collectNotifications,
|
|
createClient,
|
|
createSandboxContext,
|
|
execServerUrlFromClient,
|
|
openSocket,
|
|
rpc,
|
|
waitForHttpBodyDeltas,
|
|
} from "./sandbox-exec-server.test-helpers.js";
|
|
|
|
afterEach(async () => {
|
|
vi.unstubAllEnvs();
|
|
await closeCodexSandboxExecServersForTests();
|
|
});
|
|
|
|
function testExecEnv(): NodeJS.ProcessEnv {
|
|
return {
|
|
PATH: process.env.PATH,
|
|
};
|
|
}
|
|
|
|
describe("OpenClaw Codex sandbox exec-server HTTP", () => {
|
|
it("routes HTTP requests through the sandbox backend", async () => {
|
|
const runShellCommand = vi.fn(async () => ({
|
|
stdout: Buffer.from(
|
|
JSON.stringify({
|
|
status: 201,
|
|
headers: [{ name: "content-type", value: "text/plain" }],
|
|
bodyBase64: Buffer.from("sandbox-http").toString("base64"),
|
|
}),
|
|
),
|
|
stderr: Buffer.alloc(0),
|
|
code: 0,
|
|
}));
|
|
const sandbox = createSandboxContext({ runShellCommand });
|
|
const client = createClient();
|
|
await ensureCodexSandboxExecServerEnvironment({
|
|
client: client as never,
|
|
sandbox,
|
|
});
|
|
const socket = await openSocket(execServerUrlFromClient(client));
|
|
await rpc(socket, "initialize", { clientName: "test" });
|
|
socket.send(JSON.stringify({ method: "initialized" }));
|
|
|
|
await expect(
|
|
rpc(socket, "http/request", {
|
|
requestId: "http-1",
|
|
method: "POST",
|
|
url: "https://example.test/mcp",
|
|
headers: [{ name: "authorization", value: "Bearer test" }],
|
|
bodyBase64: Buffer.from("body").toString("base64"),
|
|
}),
|
|
).resolves.toEqual({
|
|
status: 201,
|
|
headers: [{ name: "content-type", value: "text/plain" }],
|
|
bodyBase64: Buffer.from("sandbox-http").toString("base64"),
|
|
});
|
|
expect(runShellCommand).toHaveBeenCalledWith(
|
|
expect.objectContaining({
|
|
allowFailure: true,
|
|
stdin: expect.stringContaining("https://example.test/mcp"),
|
|
}),
|
|
);
|
|
socket.close();
|
|
});
|
|
|
|
it("streams HTTP response body deltas from the sandbox backend", async () => {
|
|
const headerLine = JSON.stringify({
|
|
type: "headers",
|
|
status: 202,
|
|
headers: [{ name: "content-type", value: "text/event-stream" }],
|
|
});
|
|
const bodyLine = JSON.stringify({
|
|
type: "bodyDelta",
|
|
seq: 1,
|
|
deltaBase64: Buffer.from("event: ok\n\n").toString("base64"),
|
|
done: false,
|
|
});
|
|
const doneLine = JSON.stringify({
|
|
type: "bodyDelta",
|
|
seq: 2,
|
|
deltaBase64: "",
|
|
done: true,
|
|
});
|
|
const buildExecSpec = vi.fn(async () => ({
|
|
argv: [
|
|
process.execPath,
|
|
"-e",
|
|
[headerLine, bodyLine, doneLine]
|
|
.map((line) => `process.stdout.write(${JSON.stringify(`${line}\n`)});`)
|
|
.join(""),
|
|
],
|
|
env: testExecEnv(),
|
|
stdinMode: "pipe-closed" as const,
|
|
}));
|
|
const runShellCommand = vi.fn(async () => ({
|
|
stdout: Buffer.alloc(0),
|
|
stderr: Buffer.alloc(0),
|
|
code: 0,
|
|
}));
|
|
const sandbox = createSandboxContext({ buildExecSpec, runShellCommand });
|
|
const client = createClient();
|
|
await ensureCodexSandboxExecServerEnvironment({
|
|
client: client as never,
|
|
sandbox,
|
|
});
|
|
const socket = await openSocket(execServerUrlFromClient(client));
|
|
const notifications = collectNotifications(socket);
|
|
await rpc(socket, "initialize", { clientName: "test" });
|
|
socket.send(JSON.stringify({ method: "initialized" }));
|
|
|
|
await expect(
|
|
rpc(socket, "http/request", {
|
|
requestId: "http-stream",
|
|
method: "GET",
|
|
url: "https://example.test/sse",
|
|
streamResponse: true,
|
|
}),
|
|
).resolves.toEqual({
|
|
status: 202,
|
|
headers: [{ name: "content-type", value: "text/event-stream" }],
|
|
bodyBase64: "",
|
|
});
|
|
const deltas = await waitForHttpBodyDeltas(notifications, 2);
|
|
|
|
expect(buildExecSpec).toHaveBeenCalledWith(
|
|
expect.objectContaining({
|
|
command: expect.stringContaining("python3"),
|
|
usePty: false,
|
|
workdir: "/workspace",
|
|
}),
|
|
);
|
|
expect(runShellCommand).not.toHaveBeenCalled();
|
|
expect(deltas).toEqual([
|
|
expect.objectContaining({
|
|
requestId: "http-stream",
|
|
seq: 1,
|
|
deltaBase64: Buffer.from("event: ok\n\n").toString("base64"),
|
|
done: false,
|
|
}),
|
|
expect.objectContaining({
|
|
requestId: "http-stream",
|
|
seq: 2,
|
|
deltaBase64: "",
|
|
done: true,
|
|
}),
|
|
]);
|
|
socket.close();
|
|
});
|
|
|
|
it("terminates streaming HTTP subprocesses when the exec-server socket closes", async () => {
|
|
const finalizeExec = vi.fn(async () => undefined);
|
|
const sandbox = createSandboxContext({
|
|
buildExecSpec: async () => ({
|
|
argv: [
|
|
process.execPath,
|
|
"-e",
|
|
[
|
|
"process.on('SIGTERM', () => process.exit(143));",
|
|
`console.log(${JSON.stringify(
|
|
JSON.stringify({
|
|
type: "headers",
|
|
status: 200,
|
|
headers: [],
|
|
}),
|
|
)});`,
|
|
"setInterval(() => {}, 1000);",
|
|
].join(""),
|
|
],
|
|
env: testExecEnv(),
|
|
finalizeToken: "stream-token",
|
|
stdinMode: "pipe-closed",
|
|
}),
|
|
finalizeExec,
|
|
});
|
|
const client = createClient();
|
|
await ensureCodexSandboxExecServerEnvironment({
|
|
client: client as never,
|
|
sandbox,
|
|
});
|
|
const socket = await openSocket(execServerUrlFromClient(client));
|
|
await rpc(socket, "initialize", { clientName: "test" });
|
|
socket.send(JSON.stringify({ method: "initialized" }));
|
|
|
|
await expect(
|
|
rpc(socket, "http/request", {
|
|
requestId: "http-stream-close",
|
|
method: "GET",
|
|
url: "https://example.test/sse",
|
|
streamResponse: true,
|
|
}),
|
|
).resolves.toEqual({
|
|
status: 200,
|
|
headers: [],
|
|
bodyBase64: "",
|
|
});
|
|
socket.terminate();
|
|
|
|
await vi.waitFor(
|
|
() =>
|
|
expect(finalizeExec).toHaveBeenCalledWith(
|
|
expect.objectContaining({
|
|
status: "failed",
|
|
token: "stream-token",
|
|
}),
|
|
),
|
|
{ timeout: 5_000 },
|
|
);
|
|
});
|
|
});
|