惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
V
Visual Studio Blog
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
B
Blog
I
InfoQ
博客园 - 三生石上(FineUI控件)
阮一峰的网络日志
阮一峰的网络日志
F
Fortinet All Blogs
H
Help Net Security
博客园 - Franky
宝玉的分享
宝玉的分享
博客园 - 司徒正美
C
Check Point Blog
G
Google Developers Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Jina AI
Jina AI
T
The Blog of Author Tim Ferriss
MongoDB | Blog
MongoDB | Blog
云风的 BLOG
云风的 BLOG
A
About on SuperTechFans
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
IT之家
IT之家

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
refactor: share minimal gateway test helpers · openclaw/o...
vincentkoc · 2026-06-01 · via Recent Commits to openclaw:main
1-

import fs from "node:fs/promises";

2-

import { createServer } from "node:http";

31

import type { AddressInfo } from "node:net";

4-

import os from "node:os";

52

import path from "node:path";

6-

import { afterEach, describe, expect, it } from "vitest";

7-

import { type RawData, WebSocketServer } from "ws";

8-

import { PROTOCOL_VERSION } from "../../packages/gateway-protocol/src/index.js";

3+

import { afterAll, beforeAll, describe, expect, it } from "vitest";

4+

import { WebSocketServer } from "ws";

95

import { loadOrCreateDeviceIdentity } from "../infra/device-identity.js";

6+

import { createSuiteTempRootTracker } from "../test-helpers/temp-dir.js";

107

import { GATEWAY_CLIENT_MODES, GATEWAY_CLIENT_NAMES } from "../utils/message-channel.js";

118

import { connectTestGatewayClient } from "./gateway-cli-backend.live-helpers.js";

9+

import {

10+

buildMinimalGatewayHelloOkPayload,

11+

closeMinimalGatewayServer,

12+

parseMinimalGatewayRequestFrame,

13+

sendMinimalGatewayConnectChallenge,

14+

sendMinimalGatewayResponse,

15+

} from "./minimal-gateway.test-helpers.js";

12161317

const GATEWAY_CONNECT_TIMEOUT_MS = 5_000;

14-

const tempRoots: string[] = [];

18+

const tempDirs = createSuiteTempRootTracker({ prefix: "openclaw-gateway-connect-" });

15191620

async function createTempDeviceIdentity() {

17-

const tempRoot = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-gateway-connect-"));

18-

tempRoots.push(tempRoot);

21+

const tempRoot = await tempDirs.make("device");

1922

return loadOrCreateDeviceIdentity(path.join(tempRoot, "device.json"));

2023

}

21242225

async function startMinimalGatewayServer(params: { token: string }) {

23-

const httpServer = createServer();

24-

const wss = new WebSocketServer({ server: httpServer });

26+

const wss = new WebSocketServer({ host: "127.0.0.1", port: 0 });

2527

const requests: string[] = [];

2628

let connectParams: Record<string, unknown> | undefined;

27292830

wss.on("connection", (ws) => {

29-

ws.send(

30-

JSON.stringify({

31-

type: "event",

32-

event: "connect.challenge",

33-

payload: { nonce: "test-nonce" },

34-

}),

35-

);

31+

sendMinimalGatewayConnectChallenge(ws);

3632

ws.on("message", (data) => {

37-

const frame = JSON.parse(rawWsDataToString(data)) as {

38-

type?: string;

39-

id?: string;

40-

method?: string;

41-

params?: { auth?: { token?: string }; device?: { nonce?: string } };

42-

};

33+

const frame = parseMinimalGatewayRequestFrame(data);

4334

if (frame.type !== "req" || !frame.id) {

4435

return;

4536

}

@@ -48,80 +39,56 @@ async function startMinimalGatewayServer(params: { token: string }) {

4839

connectParams = frame.params as Record<string, unknown> | undefined;

4940

expect(frame.params?.auth?.token).toBe(params.token);

5041

expect(frame.params?.device?.nonce).toBe("test-nonce");

51-

ws.send(

52-

JSON.stringify({

53-

type: "res",

54-

id: frame.id,

55-

ok: true,

56-

payload: {

57-

type: "hello-ok",

58-

protocol: PROTOCOL_VERSION,

59-

server: { version: "test", connId: "conn-1" },

60-

features: { methods: ["health"], events: ["connect.challenge"] },

61-

snapshot: {

62-

presence: [],

63-

health: { ok: true },

64-

stateVersion: { presence: 0, health: 0 },

65-

uptimeMs: 0,

66-

},

67-

policy: {

68-

maxPayload: 1,

69-

maxBufferedBytes: 1,

70-

tickIntervalMs: 60_000,

71-

},

42+

sendMinimalGatewayResponse(

43+

ws,

44+

frame.id,

45+

buildMinimalGatewayHelloOkPayload({

46+

connId: "conn-1",

47+

methods: ["health"],

48+

snapshot: {

49+

presence: [],

50+

health: { ok: true },

51+

stateVersion: { presence: 0, health: 0 },

52+

uptimeMs: 0,

53+

},

54+

policy: {

55+

maxPayload: 1,

56+

maxBufferedBytes: 1,

57+

tickIntervalMs: 60_000,

7258

},

7359

}),

7460

);

7561

return;

7662

}

7763

if (frame.method === "health") {

78-

ws.send(JSON.stringify({ type: "res", id: frame.id, ok: true, payload: { ok: true } }));

64+

sendMinimalGatewayResponse(ws, frame.id, { ok: true });

7965

}

8066

});

8167

});

82688369

await new Promise<void>((resolve) => {

84-

httpServer.listen(0, "127.0.0.1", resolve);

70+

wss.once("listening", resolve);

8571

});

86-

const address = httpServer.address() as AddressInfo;

72+

const address = wss.address() as AddressInfo;

8773

return {

8874

requests,

8975

get connectParams() {

9076

return connectParams;

9177

},

9278

url: `ws://127.0.0.1:${address.port}`,

9379

close: async () => {

94-

for (const client of wss.clients) {

95-

client.terminate();

96-

}

97-

await new Promise<void>((resolve, reject) => {

98-

wss.close((error) => (error ? reject(error) : resolve()));

99-

});

100-

await new Promise<void>((resolve, reject) => {

101-

httpServer.close((error) => (error ? reject(error) : resolve()));

102-

});

80+

await closeMinimalGatewayServer(wss);

10381

},

10482

};

10583

}

10684107-

function rawWsDataToString(data: RawData): string {

108-

if (typeof data === "string") {

109-

return data;

110-

}

111-

if (Buffer.isBuffer(data)) {

112-

return data.toString("utf8");

113-

}

114-

if (Array.isArray(data)) {

115-

return Buffer.concat(data).toString("utf8");

116-

}

117-

return Buffer.from(data).toString("utf8");

118-

}

119-12085

describe("gateway cli backend connect", () => {

121-

afterEach(async () => {

122-

await Promise.all(

123-

tempRoots.splice(0).map((root) => fs.rm(root, { recursive: true, force: true })),

124-

);

86+

beforeAll(async () => {

87+

await tempDirs.setup();

88+

});

89+90+

afterAll(async () => {

91+

await tempDirs.cleanup();

12592

});

1269312794

it(