perf(test): stabilize e2e harness and reduce flaky gateway coverage

This commit is contained in:
Peter Steinberger
2026-02-13 17:31:58 +00:00
parent 2ab7715d16
commit fdfc34fa1f
25 changed files with 427 additions and 940 deletions

View File

@@ -337,16 +337,62 @@ const connectNode = async (
return { client, nodeId };
};
const fetchNodeList = async (
inst: GatewayInstance,
timeoutMs = 5_000,
): Promise<NodeListPayload> => {
let settled = false;
let timer: NodeJS.Timeout | null = null;
return await new Promise<NodeListPayload>((resolve, reject) => {
const finish = (err?: Error, payload?: NodeListPayload) => {
if (settled) {
return;
}
settled = true;
if (timer) {
clearTimeout(timer);
}
client.stop();
if (err) {
reject(err);
return;
}
resolve(payload ?? {});
};
const client = new GatewayClient({
url: `ws://127.0.0.1:${inst.port}`,
token: inst.gatewayToken,
clientName: GATEWAY_CLIENT_NAMES.CLI,
clientDisplayName: `status-${inst.name}`,
clientVersion: "1.0.0",
platform: "test",
mode: GATEWAY_CLIENT_MODES.CLI,
onHelloOk: () => {
void client
.request<NodeListPayload>("node.list", {})
.then((payload) => finish(undefined, payload))
.catch((err) => finish(err instanceof Error ? err : new Error(String(err))));
},
onConnectError: (err) => finish(err),
onClose: (code, reason) => {
finish(new Error(`gateway closed (${code}): ${reason}`));
},
});
timer = setTimeout(() => {
finish(new Error("timeout waiting for node.list"));
}, timeoutMs);
client.start();
});
};
const waitForNodeStatus = async (inst: GatewayInstance, nodeId: string, timeoutMs = 10_000) => {
const deadline = Date.now() + timeoutMs;
while (Date.now() < deadline) {
const list = (await runCliJson(
["nodes", "status", "--json", "--url", `ws://127.0.0.1:${inst.port}`],
{
OPENCLAW_GATEWAY_TOKEN: inst.gatewayToken,
OPENCLAW_GATEWAY_PASSWORD: "",
},
)) as NodeListPayload;
const list = await fetchNodeList(inst);
const match = list.nodes?.find((n) => n.nodeId === nodeId);
if (match?.connected && match?.paired) {
return;