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

推荐订阅源

Martin Fowler
Martin Fowler
J
Java Code Geeks
博客园 - 【当耐特】
宝玉的分享
宝玉的分享
腾讯CDC
D
DataBreaches.Net
Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
V
V2EX
F
Fortinet All Blogs
MyScale Blog
MyScale Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
Tailwind CSS Blog
Jina AI
Jina AI
GbyAI
GbyAI
大猫的无限游戏
大猫的无限游戏
A
About on SuperTechFans
酷 壳 – CoolShell
酷 壳 – CoolShell
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
U
Unit 42
B
Blog
M
MIT News - Artificial intelligence
N
Netflix TechBlog - Medium

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(e2e): bound upgrade survivor probes · openclaw/opencl...
vincentkoc · 2026-05-27 · via Recent Commits to openclaw:main

@@ -0,0 +1,188 @@

1+

import { spawn } from "node:child_process";

2+

import fs from "node:fs";

3+

import { createServer as createHttpServer } from "node:http";

4+

import { createServer as createTcpServer, type Server, type Socket } from "node:net";

5+

import os from "node:os";

6+

import path from "node:path";

7+

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

8+9+

const probePath = path.resolve("scripts/e2e/lib/upgrade-survivor/probe-gateway.mjs");

10+

const tempDirs: string[] = [];

11+12+

function makeTempDir(): string {

13+

const dir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-upgrade-probe-"));

14+

tempDirs.push(dir);

15+

return dir;

16+

}

17+18+

interface ProbeResult {

19+

error?: Error;

20+

signal: NodeJS.Signals | null;

21+

status: number | null;

22+

stderr: string;

23+

stdout: string;

24+

}

25+26+

function runProbe(args: string[], timeout = 5_000): Promise<ProbeResult> {

27+

return new Promise((resolve) => {

28+

const child = spawn(process.execPath, [probePath, ...args], {

29+

stdio: ["ignore", "pipe", "pipe"],

30+

});

31+

let stdout = "";

32+

let stderr = "";

33+

let timedOut = false;

34+

child.stdout.setEncoding("utf8");

35+

child.stderr.setEncoding("utf8");

36+

child.stdout.on("data", (chunk) => {

37+

stdout += chunk;

38+

});

39+

child.stderr.on("data", (chunk) => {

40+

stderr += chunk;

41+

});

42+

const timer = setTimeout(() => {

43+

timedOut = true;

44+

child.kill("SIGKILL");

45+

}, timeout);

46+

child.on("error", (error) => {

47+

clearTimeout(timer);

48+

resolve({ error, signal: null, status: null, stderr, stdout });

49+

});

50+

child.on("exit", (status, signal) => {

51+

clearTimeout(timer);

52+

resolve({

53+

error: timedOut ? new Error(`probe timed out after ${timeout}ms`) : undefined,

54+

signal,

55+

status,

56+

stderr,

57+

stdout,

58+

});

59+

});

60+

});

61+

}

62+63+

async function listen(server: Server): Promise<string> {

64+

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

65+

server.once("error", reject);

66+

server.listen(0, "127.0.0.1", () => {

67+

server.off("error", reject);

68+

resolve();

69+

});

70+

});

71+

const address = server.address();

72+

if (!address || typeof address === "string") {

73+

throw new Error("test server did not expose a TCP port");

74+

}

75+

return `http://127.0.0.1:${address.port}`;

76+

}

77+78+

afterEach(() => {

79+

for (const dir of tempDirs.splice(0)) {

80+

fs.rmSync(dir, { force: true, recursive: true });

81+

}

82+

});

83+84+

describe("scripts/e2e/lib/upgrade-survivor/probe-gateway.mjs", () => {

85+

it("writes a result when the ready probe matches", async () => {

86+

const server = createHttpServer((_request, response) => {

87+

response.writeHead(200, { "content-type": "application/json" });

88+

response.end(JSON.stringify({ ready: true }));

89+

});

90+

const baseUrl = await listen(server);

91+

const out = path.join(makeTempDir(), "ready.json");

92+

try {

93+

const result = await runProbe([

94+

"--base-url",

95+

baseUrl,

96+

"--path",

97+

"/readyz",

98+

"--expect",

99+

"ready",

100+

"--out",

101+

out,

102+

"--timeout-ms",

103+

"1000",

104+

]);

105+106+

expect(result.status).toBe(0);

107+

expect(JSON.parse(fs.readFileSync(out, "utf8"))).toMatchObject({

108+

body: { ready: true },

109+

path: "/readyz",

110+

status: 200,

111+

url: `${baseUrl}/readyz`,

112+

});

113+

} finally {

114+

server.close();

115+

}

116+

});

117+118+

it("bounds probes when a server accepts the connection but never responds", async () => {

119+

const sockets = new Set<Socket>();

120+

const server = createTcpServer((socket) => {

121+

sockets.add(socket);

122+

socket.on("close", () => sockets.delete(socket));

123+

socket.on("data", () => {});

124+

});

125+

const baseUrl = await listen(server);

126+

const out = path.join(makeTempDir(), "stall.json");

127+

const startedAt = Date.now();

128+

try {

129+

const result = await runProbe([

130+

"--base-url",

131+

baseUrl,

132+

"--path",

133+

"/healthz",

134+

"--expect",

135+

"live",

136+

"--out",

137+

out,

138+

"--timeout-ms",

139+

"300",

140+

"--attempt-timeout-ms",

141+

"100",

142+

]);

143+

const elapsedMs = Date.now() - startedAt;

144+145+

expect(result.error).toBeUndefined();

146+

expect(result.status).not.toBe(0);

147+

expect(result.stderr).toContain("probe did not satisfy live within 300ms");

148+

expect(elapsedMs).toBeLessThan(2_500);

149+

expect(fs.existsSync(out)).toBe(false);

150+

} finally {

151+

for (const socket of sockets) {

152+

socket.destroy();

153+

}

154+

server.close();

155+

}

156+

});

157+158+

it("caps response bodies before parsing probe JSON", async () => {

159+

const server = createHttpServer((_request, response) => {

160+

response.writeHead(200, { "content-type": "application/json" });

161+

response.end("x".repeat(256));

162+

});

163+

const baseUrl = await listen(server);

164+

const out = path.join(makeTempDir(), "oversized.json");

165+

try {

166+

const result = await runProbe([

167+

"--base-url",

168+

baseUrl,

169+

"--path",

170+

"/readyz",

171+

"--expect",

172+

"ready",

173+

"--out",

174+

out,

175+

"--timeout-ms",

176+

"300",

177+

"--max-body-bytes",

178+

"64",

179+

]);

180+181+

expect(result.status).not.toBe(0);

182+

expect(result.stderr).toContain("probe body exceeded 64 bytes");

183+

expect(fs.existsSync(out)).toBe(false);

184+

} finally {

185+

server.close();

186+

}

187+

});

188+

});