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

推荐订阅源

雷峰网
雷峰网
MongoDB | Blog
MongoDB | Blog
D
Docker
Martin Fowler
Martin Fowler
人人都是产品经理
人人都是产品经理
GbyAI
GbyAI
Jina AI
Jina AI
酷 壳 – CoolShell
酷 壳 – CoolShell
M
MIT News - Artificial intelligence
腾讯CDC
阮一峰的网络日志
阮一峰的网络日志
H
Hackread – Cybersecurity News, Data Breaches, AI and More
N
Netflix TechBlog - Medium
B
Blog RSS Feed
云风的 BLOG
云风的 BLOG
Blog — PlanetScale
Blog — PlanetScale
Vercel News
Vercel News
The Cloudflare Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
I
InfoQ
U
Unit 42

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
fix(dev): close gateway smoke websocket on failures · ope...
vincentkoc · 2026-06-01 · via Recent Commits to openclaw:main
1+

import { fileURLToPath } from "node:url";

12

import {

23

MIN_CLIENT_PROTOCOL_VERSION,

34

PROTOCOL_VERSION,

@@ -12,69 +13,94 @@ function writeStderrLine(message: string): void {

1213

process.stderr.write(`${message}\n`);

1314

}

141515-

const { get: getArg } = createArgReader();

16-

const urlRaw = getArg("--url") ?? process.env.OPENCLAW_GATEWAY_URL;

17-

const token = getArg("--token") ?? process.env.OPENCLAW_GATEWAY_TOKEN;

18-19-

if (!urlRaw || !token) {

16+

function writeUsage(): void {

2017

writeStderrLine(

2118

"Usage: bun scripts/dev/gateway-smoke.ts --url <wss://host[:port]> --token <gateway.auth.token>\n" +

2219

"Or set env: OPENCLAW_GATEWAY_URL / OPENCLAW_GATEWAY_TOKEN",

2320

);

24-

process.exit(1);

2521

}

262227-

async function main() {

28-

const url = resolveGatewayUrl(urlRaw);

29-

const { request, waitOpen, close } = createGatewayWsClient({

23+

type GatewaySmokeClient = ReturnType<typeof createGatewayWsClient>;

24+25+

type GatewaySmokeDeps = {

26+

createClient?: typeof createGatewayWsClient;

27+

stderr?: (message: string) => void;

28+

stdout?: (message: string) => void;

29+

};

30+31+

export async function runGatewaySmoke(

32+

input: { token: string; urlRaw: string },

33+

deps: GatewaySmokeDeps = {},

34+

): Promise<number> {

35+

const url = resolveGatewayUrl(input.urlRaw);

36+

const createClient = deps.createClient ?? createGatewayWsClient;

37+

const stderr = deps.stderr ?? writeStderrLine;

38+

const stdout = deps.stdout ?? writeStdoutLine;

39+

const client: GatewaySmokeClient = createClient({

3040

url: url.toString(),

3141

onEvent: (evt) => {

3242

// Ignore noisy connect handshakes.

3343

void evt;

3444

},

3545

});

46+

const { request, waitOpen, close } = client;

364737-

await waitOpen();

48+

try {

49+

await waitOpen();

385039-

// Match iOS "operator" session defaults: token auth, no device identity.

40-

const connectRes = await request("connect", {

41-

minProtocol: MIN_CLIENT_PROTOCOL_VERSION,

42-

maxProtocol: PROTOCOL_VERSION,

43-

client: {

44-

id: "openclaw-ios",

45-

displayName: "openclaw gateway smoke test",

46-

version: "dev",

47-

platform: "dev",

48-

mode: "ui",

49-

instanceId: "openclaw-dev-smoke",

50-

},

51-

locale: "en-US",

52-

userAgent: "gateway-smoke",

53-

role: "operator",

54-

scopes: ["operator.read", "operator.write", "operator.admin"],

55-

caps: [],

56-

auth: { token },

57-

});

51+

// Match iOS "operator" session defaults: token auth, no device identity.

52+

const connectRes = await request("connect", {

53+

minProtocol: MIN_CLIENT_PROTOCOL_VERSION,

54+

maxProtocol: PROTOCOL_VERSION,

55+

client: {

56+

id: "openclaw-ios",

57+

displayName: "openclaw gateway smoke test",

58+

version: "dev",

59+

platform: "dev",

60+

mode: "ui",

61+

instanceId: "openclaw-dev-smoke",

62+

},

63+

locale: "en-US",

64+

userAgent: "gateway-smoke",

65+

role: "operator",

66+

scopes: ["operator.read", "operator.write", "operator.admin"],

67+

caps: [],

68+

auth: { token: input.token },

69+

});

587059-

if (!connectRes.ok) {

60-

writeStderrLine(`connect failed: ${String(connectRes.error)}`);

61-

process.exit(2);

62-

}

71+

if (!connectRes.ok) {

72+

stderr(`connect failed: ${String(connectRes.error)}`);

73+

return 2;

74+

}

637564-

const healthRes = await request("health");

65-

if (!healthRes.ok) {

66-

writeStderrLine(`health failed: ${String(healthRes.error)}`);

67-

process.exit(3);

68-

}

76+

const healthRes = await request("health");

77+

if (!healthRes.ok) {

78+

stderr(`health failed: ${String(healthRes.error)}`);

79+

return 3;

80+

}

698170-

const historyRes = await request("chat.history", { sessionKey: "main" }, 15000);

71-

if (!historyRes.ok) {

72-

writeStderrLine(`chat.history failed: ${String(historyRes.error)}`);

73-

process.exit(4);

74-

}

82+

const historyRes = await request("chat.history", { sessionKey: "main" }, 15000);

83+

if (!historyRes.ok) {

84+

stderr(`chat.history failed: ${String(historyRes.error)}`);

85+

return 4;

86+

}

758776-

writeStdoutLine("ok: connected + health + chat.history");

77-

close();

88+

stdout("ok: connected + health + chat.history");

89+

return 0;

90+

} finally {

91+

close();

92+

}

7893

}

799480-

await main();

95+

if (process.argv[1] && fileURLToPath(import.meta.url) === process.argv[1]) {

96+

const { get: getArg } = createArgReader();

97+

const urlRaw = getArg("--url") ?? process.env.OPENCLAW_GATEWAY_URL;

98+

const token = getArg("--token") ?? process.env.OPENCLAW_GATEWAY_TOKEN;

99+100+

if (!urlRaw || !token) {

101+

writeUsage();

102+

process.exitCode = 1;

103+

} else {

104+

process.exitCode = await runGatewaySmoke({ token, urlRaw });

105+

}

106+

}