Files
openclaw/src/gateway/server.config-apply.test.ts
2026-02-22 11:48:46 +00:00

74 lines
1.9 KiB
TypeScript

import { afterAll, beforeAll, describe, expect, it } from "vitest";
import { WebSocket } from "ws";
import {
connectOk,
getFreePort,
installGatewayTestHooks,
onceMessage,
startGatewayServer,
trackConnectChallengeNonce,
} from "./test-helpers.js";
installGatewayTestHooks({ scope: "suite" });
let server: Awaited<ReturnType<typeof startGatewayServer>>;
let port = 0;
beforeAll(async () => {
port = await getFreePort();
server = await startGatewayServer(port, { controlUiEnabled: true });
});
afterAll(async () => {
await server.close();
});
const openClient = async () => {
const ws = new WebSocket(`ws://127.0.0.1:${port}`);
trackConnectChallengeNonce(ws);
await new Promise<void>((resolve) => ws.once("open", resolve));
await connectOk(ws);
return ws;
};
const sendConfigApply = async (ws: WebSocket, id: string, raw: unknown) => {
ws.send(
JSON.stringify({
type: "req",
id,
method: "config.apply",
params: { raw },
}),
);
return onceMessage<{ ok: boolean; error?: { message?: string } }>(ws, (o) => {
const msg = o as { type?: string; id?: string };
return msg.type === "res" && msg.id === id;
});
};
describe("gateway config.apply", () => {
it("rejects invalid raw config", async () => {
const ws = await openClient();
try {
const id = "req-1";
const res = await sendConfigApply(ws, id, "{");
expect(res.ok).toBe(false);
expect(res.error?.message ?? "").toMatch(/invalid|SyntaxError/i);
} finally {
ws.close();
}
});
it("requires raw to be a string", async () => {
const ws = await openClient();
try {
const id = "req-2";
const res = await sendConfigApply(ws, id, { gateway: { mode: "local" } });
expect(res.ok).toBe(false);
expect(res.error?.message ?? "").toContain("raw");
} finally {
ws.close();
}
});
});