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

推荐订阅源

WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
B
Blog
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
Jina AI
Jina AI
博客园 - 聂微东
T
The Blog of Author Tim Ferriss
宝玉的分享
宝玉的分享
L
LangChain Blog
M
MIT News - Artificial intelligence
Blog — PlanetScale
Blog — PlanetScale
腾讯CDC
酷 壳 – CoolShell
酷 壳 – CoolShell
Y
Y Combinator Blog
F
Fortinet All Blogs
H
Help Net Security
B
Blog RSS Feed
J
Java Code Geeks
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Apple Machine Learning Research
Apple Machine Learning Research
S
SegmentFault 最新的问题

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 RTT credential broker bodies · openclaw/o...
vincentkoc · 2026-05-29 · via Recent Commits to openclaw:main
11

import { execFile } from "node:child_process";

22

import fs from "node:fs/promises";

3+

import { createServer, type Server } from "node:http";

34

import os from "node:os";

45

import path from "node:path";

56

import { fileURLToPath } from "node:url";

@@ -33,6 +34,39 @@ afterEach(async () => {

3334

await Promise.all(tempDirs.splice(0).map((dir) => fs.rm(dir, { recursive: true, force: true })));

3435

});

353637+

async function listenOnLoopback(server: Server) {

38+

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

39+

server.once("error", reject);

40+

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

41+

server.off("error", reject);

42+

resolve();

43+

});

44+

});

45+

const address = server.address();

46+

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

47+

throw new Error("Expected TCP server address.");

48+

}

49+

return address;

50+

}

51+52+

function closeServer(server: Server) {

53+

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

54+

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

55+

});

56+

}

57+58+

function credentialBrokerEnv(port: number) {

59+

return {

60+

...process.env,

61+

OPENCLAW_QA_ALLOW_INSECURE_HTTP: "1",

62+

OPENCLAW_QA_CONVEX_SECRET_MAINTAINER: "test-secret",

63+

OPENCLAW_QA_CONVEX_SITE_URL: `http://127.0.0.1:${port}`,

64+

OPENCLAW_QA_CREDENTIAL_HTTP_TIMEOUT_MS: "1000",

65+

OPENCLAW_QA_CREDENTIAL_OWNER_ID: "test-owner",

66+

OPENCLAW_NPM_TELEGRAM_CREDENTIAL_ROLE: "maintainer",

67+

};

68+

}

69+3670

describe("RTT harness", () => {

3771

it("validates OpenClaw package specs", () => {

3872

expect(validateOpenClawPackageSpec("openclaw@main")).toBe("openclaw@main");

@@ -131,6 +165,10 @@ describe("RTT harness", () => {

131165

"OPENCLAW_QA_CONVEX_SECRET_CI",

132166

installEnvSnapshotIndex,

133167

);

168+

const bodyLimitForwardIndex = script.indexOf(

169+

"OPENCLAW_QA_CREDENTIAL_HTTP_MAX_BODY_BYTES",

170+

installEnvSnapshotIndex,

171+

);

134172

const packageInstallIndex = script.indexOf("npm install -g");

135173

const credentialAcquireIndex = script.indexOf(

136174

"node /app/scripts/e2e/npm-telegram-rtt-credentials.mjs acquire",

@@ -142,23 +180,26 @@ describe("RTT harness", () => {

142180

expect(tokenExportIndex).toBeGreaterThan(sourceIndex);

143181

expect(installEnvSnapshotIndex).toBeGreaterThanOrEqual(0);

144182

expect(convexSecretForwardIndex).toBeGreaterThan(installEnvSnapshotIndex);

183+

expect(bodyLimitForwardIndex).toBeGreaterThan(installEnvSnapshotIndex);

145184

expect(packageInstallIndex).toBeLessThan(credentialAcquireIndex);

146185

expect(script).toContain(

147186

'-e OPENCLAW_E2E_NPM_INSTALL_TIMEOUT="${OPENCLAW_E2E_NPM_INSTALL_TIMEOUT:-600s}"',

148187

);

149188

expect(script).toContain(

150189

'"$timeout_bin" --kill-after=30s "$npm_install_timeout" npm install -g "$install_source" --no-fund --no-audit',

151190

);

152-

expect(script).toContain('elif command -v gtimeout >/dev/null 2>&1; then');

153-

expect(script).toContain("timeout_bin=\"gtimeout\"");

191+

expect(script).toContain("elif command -v gtimeout >/dev/null 2>&1; then");

192+

expect(script).toContain('timeout_bin="gtimeout"');

154193

expect(script).toContain(

155194

'echo "timeout or gtimeout is required for OPENCLAW_E2E_NPM_INSTALL_TIMEOUT=$npm_install_timeout" >&2',

156195

);

157196

expect(script).toContain('"$timeout_bin" --kill-after=1s 1s true >/dev/null 2>&1');

158197

expect(script).toContain(

159198

'"$timeout_bin" "$npm_install_timeout" npm install -g "$install_source" --no-fund --no-audit',

160199

);

161-

expect(script).not.toContain("running package install without OPENCLAW_E2E_NPM_INSTALL_TIMEOUT");

200+

expect(script).not.toContain(

201+

"running package install without OPENCLAW_E2E_NPM_INSTALL_TIMEOUT",

202+

);

162203

expect(script).toContain("run_logged docker_e2e_docker_run_cmd run --rm");

163204

expect(script).not.toContain("run_logged docker run --rm");

164205

expect(heartbeatStartIndex).toBeGreaterThan(sourceIndex);

@@ -169,15 +210,87 @@ describe("RTT harness", () => {

169210

expect(script).not.toContain('export TELEGRAM_BOT_TOKEN="$OPENCLAW_QA_TELEGRAM_SUT_BOT_TOKEN"');

170211

});

171212172-

it("keeps broker helper heartbeat and empty-response handling aligned with QA leases", async () => {

213+

it("keeps broker helper heartbeat handling aligned with QA leases", async () => {

173214

const script = await fs.readFile(CREDENTIAL_SCRIPT_PATH, "utf8");

174215175-

expect(script).toContain("await response.text()");

176-

expect(script).toContain('response.ok\n ? { status: "ok" }');

177216

expect(script).toContain("leaseTtlMs: acquired.leaseTtlMs ?? config.leaseTtlMs");

178217

expect(script).toContain("leaseTtlMs: leaseTtlMsFromLease(config, lease)");

179218

});

180219220+

it("bounds Convex credential broker response bodies", async () => {

221+

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

222+

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

223+

response.end(JSON.stringify({ status: "error", message: "x".repeat(128) }));

224+

});

225+

const { port } = await listenOnLoopback(server);

226+

const tempDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-rtt-credentials-"));

227+

tempDirs.push(tempDir);

228+229+

try {

230+

await execFileAsync(

231+

process.execPath,

232+

[

233+

CREDENTIAL_SCRIPT_PATH,

234+

"acquire",

235+

"--lease-file",

236+

path.join(tempDir, "lease.json"),

237+

"--credential-env-file",

238+

path.join(tempDir, "credentials.env"),

239+

],

240+

{

241+

env: {

242+

...credentialBrokerEnv(port),

243+

OPENCLAW_QA_CREDENTIAL_HTTP_MAX_BODY_BYTES: "16",

244+

},

245+

maxBuffer: 128 * 1024,

246+

},

247+

);

248+

throw new Error("Expected credential acquire to fail.");

249+

} catch (error) {

250+

const execError = error as Error & { stderr?: string };

251+

expect(execError.stderr).toContain(

252+

"credential broker acquire response body exceeded 16 bytes",

253+

);

254+

expect(execError.stderr).not.toContain("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");

255+

} finally {

256+

await closeServer(server);

257+

}

258+

});

259+260+

it("preserves empty broker responses for successful lease release", async () => {

261+

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

262+

response.writeHead(204);

263+

response.end();

264+

});

265+

const { port } = await listenOnLoopback(server);

266+

const tempDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-rtt-credentials-"));

267+

tempDirs.push(tempDir);

268+

const leaseFile = path.join(tempDir, "lease.json");

269+

await fs.writeFile(

270+

leaseFile,

271+

`${JSON.stringify({

272+

kind: "telegram",

273+

ownerId: "test-owner",

274+

actorRole: "maintainer",

275+

credentialId: "credential",

276+

leaseToken: "lease",

277+

})}\n`,

278+

);

279+280+

try {

281+

await execFileAsync(

282+

process.execPath,

283+

[CREDENTIAL_SCRIPT_PATH, "release", "--lease-file", leaseFile],

284+

{

285+

env: credentialBrokerEnv(port),

286+

},

287+

);

288+

await expect(fs.stat(leaseFile)).rejects.toMatchObject({ code: "ENOENT" });

289+

} finally {

290+

await closeServer(server);

291+

}

292+

});

293+181294

it("generates final-only Telegram RTT delivery config for release packages", async () => {

182295

const tempDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-rtt-config-test-"));

183296

tempDirs.push(tempDir);