File size: 7,401 Bytes
34810d2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 | // Process regression coverage for ACP bridge disconnect and startup-handshake exit paths.
import type { ChildProcessWithoutNullStreams } from "node:child_process";
import { createServer } from "node:http";
import path from "node:path";
import { stripVTControlCharacters } from "node:util";
import { describe, expect, it } from "vitest";
import { type RawData, WebSocketServer } from "ws";
import { closeOpenClawStateDatabaseByPath } from "../state/openclaw-state-db-cache.js";
import { openOpenClawStateDatabase } from "../state/openclaw-state-db.js";
import { createOpenClawTestState } from "../test-utils/openclaw-test-state.js";
import { runCliProcessChild } from "./cli-process-child.test-helpers.js";
const INITIALIZE_FRAME = {
jsonrpc: "2.0",
id: 1,
method: "initialize",
params: {
protocolVersion: 1,
clientCapabilities: {
fs: { readTextFile: false, writeTextFile: false },
terminal: false,
},
},
};
async function createPreparedAcpProcessState() {
const state = await createOpenClawTestState({
applyEnv: false,
label: "acp-process",
scenario: "minimal",
});
try {
// These cases assert bridge stderr after normal startup. Prepare canonical
// shared state so the one-time migration diagnostic is not part of that signal.
const database = openOpenClawStateDatabase({ env: state.env });
closeOpenClawStateDatabaseByPath(database.path);
return state;
} catch (error) {
await state.cleanup();
throw error;
}
}
function createAcpProcessEnv(baseEnv: NodeJS.ProcessEnv): NodeJS.ProcessEnv {
return {
...baseEnv,
NODE_ENV: undefined,
NODE_OPTIONS: "--use-openssl-ca",
NODE_USE_SYSTEM_CA: "0",
OPENCLAW_DISABLE_BUNDLED_PLUGINS: "1",
OPENCLAW_NO_RESPAWN: "1",
VITEST: undefined,
};
}
function withoutSqliteTransactionWarnings(stderr: string): string {
// Slow-hold logger output is load-dependent performance diagnostics, not ACP clean-exit
// signal; see logSlowTransactionHold in sqlite-transaction.ts.
return stderr
.split("\n")
.filter(
(line) => !stripVTControlCharacters(line).trimStart().startsWith("[sqlite/transaction]"),
)
.join("\n");
}
function waitForJsonLine(child: ChildProcessWithoutNullStreams, id: number) {
return new Promise<Record<string, unknown>>((resolve, reject) => {
let stdout = "";
const onExit = (code: number | null, signal: NodeJS.Signals | null) => {
reject(new Error(`ACP process exited before response (code=${code}, signal=${signal})`));
};
const finish = (response: Record<string, unknown>) => {
child.off("exit", onExit);
resolve(response);
};
child.once("exit", onExit);
child.stdout.on("data", (chunk: Buffer) => {
stdout += chunk.toString();
const lines = stdout.split("\n");
stdout = lines.pop() ?? "";
for (const line of lines) {
if (!line.trim()) {
continue;
}
const response = JSON.parse(line) as Record<string, unknown>;
if (response.id === id) {
finish(response);
return;
}
}
});
});
}
function rawDataToText(data: RawData): string {
if (Array.isArray(data)) {
return Buffer.concat(data).toString("utf8");
}
if (data instanceof ArrayBuffer) {
return Buffer.from(new Uint8Array(data)).toString("utf8");
}
return Buffer.from(data).toString("utf8");
}
describe("ACP CLI process exit", () => {
it("exits when the client disconnects after sending an initialize frame", async () => {
const state = await createPreparedAcpProcessState();
try {
const result = await runCliProcessChild({
nodeArgs: [path.resolve("openclaw.mjs"), "acp", "--require-existing"],
env: createAcpProcessEnv(state.env),
input: `${JSON.stringify(INITIALIZE_FRAME)}\n`,
});
expect(result).toMatchObject({ code: 0, signal: null });
expect(withoutSqliteTransactionWarnings(result.stderr)).toBe("");
} finally {
await state.cleanup();
}
});
it("processes an initialize frame buffered before Gateway hello", async () => {
const state = await createPreparedAcpProcessState();
const server = createServer();
const wss = new WebSocketServer({ server });
try {
wss.on("connection", (socket) => {
socket.send(
JSON.stringify({
type: "event",
event: "connect.challenge",
seq: 1,
payload: { nonce: "acp-process-test", ts: Date.now() },
}),
);
socket.on("message", (data) => {
const frame = JSON.parse(rawDataToText(data)) as { id: string; method: string };
if (frame.method !== "connect") {
return;
}
socket.send(
JSON.stringify({
type: "res",
id: frame.id,
ok: true,
payload: {
type: "hello-ok",
protocol: 4,
server: { version: "acp-process-test", connId: "acp-process-test" },
features: { methods: [], events: [] },
snapshot: {
presence: [],
health: {},
stateVersion: { presence: 1, health: 1 },
uptimeMs: 1,
},
auth: { role: "operator", scopes: ["operator.admin"] },
policy: {
maxPayload: 512 * 1024,
maxBufferedBytes: 1024 * 1024,
tickIntervalMs: 1000,
},
},
}),
);
});
});
await new Promise<void>((resolve) => {
server.listen(0, "127.0.0.1", resolve);
});
const address = server.address();
if (!address || typeof address === "string") {
throw new Error("ACP process test Gateway did not get a TCP address");
}
let response: Record<string, unknown> | undefined;
const result = await runCliProcessChild({
nodeArgs: [
path.resolve("openclaw.mjs"),
"acp",
"--require-existing",
"--url",
`ws://127.0.0.1:${address.port}`,
],
env: createAcpProcessEnv(state.env),
interact: async (runningChild) => {
const responsePromise = waitForJsonLine(runningChild, INITIALIZE_FRAME.id);
// Write before the Gateway handshake completes. Startup monitoring must
// retain this frame for the eventual AgentSideConnection reader.
runningChild.stdin.write(`${JSON.stringify(INITIALIZE_FRAME)}\n`);
response = await responsePromise;
runningChild.stdin.end();
},
});
expect(response).toMatchObject({
jsonrpc: "2.0",
id: INITIALIZE_FRAME.id,
result: { protocolVersion: INITIALIZE_FRAME.params.protocolVersion },
});
expect(result).toMatchObject({ code: 0, signal: null });
expect(withoutSqliteTransactionWarnings(result.stderr)).toBe("");
} finally {
for (const socket of wss.clients) {
socket.terminate();
}
await new Promise<void>((resolve) => {
wss.close(() => resolve());
});
await new Promise<void>((resolve, reject) => {
server.close((error) => (error ? reject(error) : resolve()));
});
await state.cleanup();
}
});
});
|