Files
adolf/test/e2e/qa-lab/runtime/gateway-smoke.e2e.test.ts
alvis bedb527145
Some checks failed
ClawSweeper Dispatch / dispatch (push) Has been cancelled
CodeQL / Security High (actions) (push) Has been cancelled
CodeQL / Security High (channel-runtime-boundary) (push) Has been cancelled
CodeQL / Security High (core-auth-secrets) (push) Has been cancelled
CodeQL / Security High (mcp-process-tool-boundary) (push) Has been cancelled
CodeQL / Security High (network-ssrf-boundary) (push) Has been cancelled
CodeQL / Security High (plugin-trust-boundary) (push) Has been cancelled
CodeQL / Security High (process-exec-boundary) (push) Has been cancelled
Docs Sync Publish Repo / sync-publish-repo (push) Has been cancelled
Docs / docs (push) Has been cancelled
OpenClaw Stable Main Closeout / Resolve stable release closeout inputs (push) Has been cancelled
OpenClaw Stable Main Closeout / Verify stable main closeout (push) Has been cancelled
Workflow Sanity / no-tabs (push) Has been cancelled
Workflow Sanity / actionlint (push) Has been cancelled
Workflow Sanity / generated-doc-baselines (push) Has been cancelled
CI / runner-admission (push) Has been cancelled
CI / preflight (push) Has been cancelled
CI / security-fast (push) Has been cancelled
CI / pnpm-store-warmup (push) Has been cancelled
CI / build-artifacts (push) Has been cancelled
CI / native-i18n (push) Has been cancelled
CI / ${{ matrix.check_name }} (push) Has been cancelled
CI / ${{ matrix.checkName }} (push) Has been cancelled
CI / checks-node-compat-node22 (push) Has been cancelled
CI / check-bundled-channel-config-metadata (push) Has been cancelled
CI / check-dependencies (push) Has been cancelled
CI / check-guards (push) Has been cancelled
CI / check-lint (push) Has been cancelled
CI / check-prod-types (push) Has been cancelled
CI / check-shrinkwrap (push) Has been cancelled
CI / check-test-types (push) Has been cancelled
CI / check-additional-boundaries-a (push) Has been cancelled
CI / check-additional-boundaries-bcd (push) Has been cancelled
CI / check-additional-extension-bundled (push) Has been cancelled
CI / check-additional-extension-channels (push) Has been cancelled
CI / check-additional-extension-package-boundary (push) Has been cancelled
CI / check-additional-runtime-topology-architecture (push) Has been cancelled
CI / check-session-accessor-boundary (push) Has been cancelled
CI / check-session-transcript-reader-boundary (push) Has been cancelled
CI / check-docs (push) Has been cancelled
CI / skills-python (push) Has been cancelled
CI / macos-swift (push) Has been cancelled
CI / ios-build (push) Has been cancelled
CI / ci-timings-summary (push) Has been cancelled
Native App Locale Refresh / Refresh native fa (push) Has been cancelled
Native App Locale Refresh / Refresh native fr (push) Has been cancelled
Native App Locale Refresh / Refresh native hi (push) Has been cancelled
Native App Locale Refresh / Refresh native id (push) Has been cancelled
Native App Locale Refresh / Refresh native it (push) Has been cancelled
Native App Locale Refresh / Refresh native ja-JP (push) Has been cancelled
Control UI Locale Refresh / plan (push) Has been cancelled
Control UI Locale Refresh / Refresh ${{ matrix.locale }} (push) Has been cancelled
Control UI Locale Refresh / Commit control UI locale refresh (push) Has been cancelled
Live Media Runner Image / Build live media runner image (push) Has been cancelled
Native App Locale Refresh / Refresh native ar (push) Has been cancelled
Native App Locale Refresh / Refresh native de (push) Has been cancelled
Native App Locale Refresh / Refresh native es (push) Has been cancelled
Native App Locale Refresh / Refresh native ko (push) Has been cancelled
Native App Locale Refresh / Refresh native nl (push) Has been cancelled
Native App Locale Refresh / Refresh native pl (push) Has been cancelled
Native App Locale Refresh / Refresh native pt-BR (push) Has been cancelled
Native App Locale Refresh / Refresh native ru (push) Has been cancelled
Native App Locale Refresh / Refresh native sv (push) Has been cancelled
Native App Locale Refresh / Refresh native th (push) Has been cancelled
Native App Locale Refresh / Refresh native tr (push) Has been cancelled
Native App Locale Refresh / Refresh native uk (push) Has been cancelled
Native App Locale Refresh / Refresh native vi (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-CN (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-TW (push) Has been cancelled
Native App Locale Refresh / Commit native locale refresh (push) Has been cancelled
Plugin Init Scaffold Validation / Validate provider scaffold (push) Has been cancelled
Plugin NPM Release / preview_plugins_npm (push) Has been cancelled
Plugin NPM Release / Validate release publish approval (push) Has been cancelled
Plugin NPM Release / preview_plugin_pack (push) Has been cancelled
Plugin NPM Release / publish_plugins_npm (push) Has been cancelled
Sandbox Common Smoke / sandbox-common-smoke (push) Has been cancelled
Website Installer Sync / static (push) Has been cancelled
Website Installer Sync / linux-docker (push) Has been cancelled
Website Installer Sync / macos-installer (push) Has been cancelled
Website Installer Sync / windows-installer (push) Has been cancelled
Website Installer Sync / sync-website (push) Has been cancelled
Vendor OpenClaw source as Adolf fork baseline
Adolf is a fork/vendored clone of github.com/openclaw/openclaw (v2026.6.11),
free to diverge. Tree copied sans upstream .git; upstream remote added for
future syncs. Node pinned to 24 (.nvmrc); engines already require >=22.19.
Preserves docs/ARCHITECTURE.md.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01LeqyaxJF2nbRXJtae2kNB2
2026-07-05 09:36:54 +00:00

425 lines
12 KiB
TypeScript

// Gateway Smoke tests cover QA Lab gateway smoke evidence.
import { spawnSync } from "node:child_process";
import { createServer, type Server } from "node:http";
import { afterEach, describe, expect, it } from "vitest";
import { WebSocket, WebSocketServer } from "ws";
import { runGatewaySmoke } from "../../../../scripts/dev/gateway-smoke.js";
let server: Server | undefined;
let wss: WebSocketServer | undefined;
afterEach(async () => {
await new Promise<void>((resolve) => {
wss?.close(() => resolve());
if (!wss) {
resolve();
}
});
wss = undefined;
await new Promise<void>((resolve, reject) => {
server?.close((error) => {
if (error) {
reject(error);
return;
}
resolve();
});
if (!server) {
resolve();
}
});
server = undefined;
});
describe("gateway-smoke", () => {
function healthResponse() {
return {
ok: true,
payload: {
agents: [],
channelOrder: [],
channels: {},
defaultAgentId: "codex",
durationMs: 3,
ok: true,
sessions: { count: 0, path: "/state/sessions", recent: [] },
ts: Date.now(),
},
};
}
function connectHelloResponse(scopes: string[] = []) {
return {
ok: true,
payload: {
auth: { role: "operator", scopes },
features: { events: [], methods: ["health"] },
policy: {
maxBufferedBytes: 1024 * 1024,
maxPayload: 256 * 1024,
tickIntervalMs: 1000,
},
protocol: 1,
server: { connId: "test-conn", version: "dev" },
snapshot: {},
type: "hello-ok",
},
};
}
async function listenGatewaySmokeServer() {
const requests: Array<{ method: string; params?: unknown; timeout?: number }> = [];
server = createServer();
wss = new WebSocketServer({ server });
wss.on("connection", (ws: WebSocket) => {
ws.on("message", (data) => {
const frame = JSON.parse(data.toString()) as {
id: string;
method: string;
params?: unknown;
type: string;
};
requests.push({ method: frame.method, params: frame.params });
if (frame.method === "connect") {
ws.send(JSON.stringify({ id: frame.id, type: "res", ...connectHelloResponse() }));
return;
}
if (frame.method === "health") {
ws.send(JSON.stringify({ id: frame.id, type: "res", ...healthResponse() }));
return;
}
if (frame.method === "chat.history") {
ws.send(
JSON.stringify({
error: "missing scope: operator.read",
id: frame.id,
ok: false,
type: "res",
}),
);
return;
}
ws.send(
JSON.stringify({
error: `unexpected method ${frame.method}`,
id: frame.id,
ok: false,
type: "res",
}),
);
});
});
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("test gateway smoke server did not get a TCP address");
}
return { requests, url: `ws://127.0.0.1:${address.port}` };
}
function createSmokeDeps(
responses: Record<string, { error?: string; ok: boolean } & Record<string, unknown>>,
calls: Array<{ method: string; timeout?: number }> = [],
) {
const stdout: string[] = [];
const stderr: string[] = [];
let closed = 0;
return {
calls,
get closed() {
return closed;
},
stderr,
stdout,
deps: {
createClient: () =>
({
close: () => {
closed += 1;
},
request: async (method: string, _params?: unknown, timeout?: number) => {
calls.push({ method, timeout });
const response = responses[method];
return {
id: method,
...response,
ok: response?.ok ?? false,
error: response?.error,
type: "res",
};
},
waitOpen: async () => {},
}) as never,
stderr: (message: string) => {
stderr.push(message);
},
stdout: (message: string) => {
stdout.push(message);
},
},
};
}
it("prints CLI help without connecting", () => {
const result = spawnSync(
process.execPath,
["--import", "tsx", "scripts/dev/gateway-smoke.ts", "--help"],
{
cwd: process.cwd(),
encoding: "utf8",
},
);
expect(result.status).toBe(0);
expect(result.stdout).toContain("Usage: bun scripts/dev/gateway-smoke.ts");
expect(result.stderr).toBe("");
});
it("rejects unknown CLI args before connecting", () => {
const result = spawnSync(
process.execPath,
[
"--import",
"tsx",
"scripts/dev/gateway-smoke.ts",
"--url",
"ws://127.0.0.1:9",
"--token",
"token",
"--wat",
],
{
cwd: process.cwd(),
encoding: "utf8",
},
);
expect(result.status).toBe(1);
expect(result.stdout).toBe("");
expect(result.stderr.trim()).toBe("Unknown argument: --wat");
});
it("rejects option-looking CLI values before connecting", () => {
for (const [flag, args] of [
["--url", ["--url", "-h", "--token", "token"]],
["--token", ["--url", "ws://127.0.0.1:9", "--token", "-h"]],
] as const) {
const result = spawnSync(
process.execPath,
["--import", "tsx", "scripts/dev/gateway-smoke.ts", ...args],
{
cwd: process.cwd(),
encoding: "utf8",
},
);
expect(result.status).toBe(1);
expect(result.stdout).toBe("");
expect(result.stderr.trim()).toBe(`${flag} requires a value`);
}
});
it("rejects duplicate CLI args before connecting", () => {
for (const [flag, args] of [
[
"--url",
["--url", "ws://127.0.0.1:9", "--url", "ws://127.0.0.1:10", "--token", "token"],
],
[
"--token",
["--url", "ws://127.0.0.1:9", "--token", "one", "--token", "two"],
],
["--help", ["--help", "--help"]],
] as const) {
const result = spawnSync(
process.execPath,
["--import", "tsx", "scripts/dev/gateway-smoke.ts", ...args],
{
cwd: process.cwd(),
encoding: "utf8",
},
);
expect(result.status).toBe(1);
expect(result.stdout).toBe("");
expect(result.stderr.trim()).toBe(`${flag} was provided more than once`);
}
});
it("passes against a loopback gateway websocket using the real client", async () => {
const stdout: string[] = [];
const stderr: string[] = [];
const loopback = await listenGatewaySmokeServer();
const code = await runGatewaySmoke(
{ token: "secret-token", urlRaw: loopback.url },
{
stderr: (message) => {
stderr.push(message);
},
stdout: (message) => {
stdout.push(message);
},
},
);
expect(code).toBe(0);
expect(loopback.requests.map((request) => request.method)).toEqual(["connect", "health"]);
expect(loopback.requests[0]?.params).toMatchObject({
auth: { token: "secret-token" },
client: { id: "openclaw-ios" },
role: "operator",
scopes: ["operator.read", "operator.write", "operator.admin"],
});
expect(stdout).toEqual(["ok: connected + health"]);
expect(stderr).toEqual([]);
});
it("closes the websocket client when connect fails", async () => {
const stderr: string[] = [];
const methods: string[] = [];
let closed = 0;
const code = await runGatewaySmoke(
{ token: "secret-token", urlRaw: "ws://127.0.0.1:12345" },
{
createClient: () =>
({
close: () => {
closed += 1;
},
request: async (method: string) => {
methods.push(method);
return { error: "bad token", id: "connect", ok: false, type: "res" };
},
waitOpen: async () => {},
}) as never,
stderr: (message) => {
stderr.push(message);
},
stdout: () => {},
},
);
expect(code).toBe(2);
expect(closed).toBe(1);
expect(methods).toEqual(["connect"]);
expect(stderr).toEqual(["connect failed: bad token"]);
});
it("requires connect and health in order", async () => {
const fake = createSmokeDeps({
connect: connectHelloResponse(),
health: healthResponse(),
});
const code = await runGatewaySmoke(
{ token: "secret-token", urlRaw: "ws://127.0.0.1:12345" },
fake.deps,
);
expect(code).toBe(0);
expect(fake.closed).toBe(1);
expect(fake.calls).toEqual([
{ method: "connect", timeout: undefined },
{ method: "health", timeout: undefined },
]);
expect(fake.stdout).toEqual(["ok: connected + health"]);
expect(fake.stderr).toEqual([]);
});
it("fails when connect success is missing hello evidence", async () => {
const fake = createSmokeDeps({
connect: { ok: true },
});
const code = await runGatewaySmoke(
{ token: "secret-token", urlRaw: "ws://127.0.0.1:12345" },
fake.deps,
);
expect(code).toBe(2);
expect(fake.closed).toBe(1);
expect(fake.calls).toEqual([{ method: "connect", timeout: undefined }]);
expect(fake.stdout).toEqual([]);
expect(fake.stderr).toEqual(["connect failed: missing hello-ok payload"]);
});
it("fails when the unpaired iOS-shaped connect keeps operator scopes", async () => {
const fake = createSmokeDeps({
connect: connectHelloResponse(["operator.read"]),
});
const code = await runGatewaySmoke(
{ token: "secret-token", urlRaw: "ws://127.0.0.1:12345" },
fake.deps,
);
expect(code).toBe(2);
expect(fake.closed).toBe(1);
expect(fake.calls).toEqual([{ method: "connect", timeout: undefined }]);
expect(fake.stderr).toEqual([
"connect failed: unpaired iOS smoke unexpectedly received operator scopes",
]);
});
it("fails after connect when health is unavailable", async () => {
const fake = createSmokeDeps({
connect: connectHelloResponse(),
health: { ok: false, error: "not healthy" },
});
const code = await runGatewaySmoke(
{ token: "secret-token", urlRaw: "ws://127.0.0.1:12345" },
fake.deps,
);
expect(code).toBe(3);
expect(fake.closed).toBe(1);
expect(fake.calls.map((call) => call.method)).toEqual(["connect", "health"]);
expect(fake.stderr).toEqual(["health failed: not healthy"]);
});
it("fails when health success is missing summary evidence", async () => {
const fake = createSmokeDeps({
connect: connectHelloResponse(),
health: { ok: true },
});
const code = await runGatewaySmoke(
{ token: "secret-token", urlRaw: "ws://127.0.0.1:12345" },
fake.deps,
);
expect(code).toBe(3);
expect(fake.closed).toBe(1);
expect(fake.calls.map((call) => call.method)).toEqual(["connect", "health"]);
expect(fake.stderr).toEqual(["health failed: missing health summary payload"]);
});
it("does not call scoped chat history for an unpaired iOS-shaped client", async () => {
const fake = createSmokeDeps({
connect: connectHelloResponse(),
health: healthResponse(),
"chat.history": { ok: false, error: "session store unavailable" },
});
const code = await runGatewaySmoke(
{ token: "secret-token", urlRaw: "ws://127.0.0.1:12345" },
fake.deps,
);
expect(code).toBe(0);
expect(fake.closed).toBe(1);
expect(fake.calls).toEqual([
{ method: "connect", timeout: undefined },
{ method: "health", timeout: undefined },
]);
expect(fake.stderr).toEqual([]);
});
});