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

推荐订阅源

Martin Fowler
Martin Fowler
WordPress大学
WordPress大学
月光博客
月光博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
大猫的无限游戏
大猫的无限游戏
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 聂微东
Apple Machine Learning Research
Apple Machine Learning Research
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
雷峰网
雷峰网
小众软件
小众软件
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
美团技术团队
宝玉的分享
宝玉的分享
Hugging Face - Blog
Hugging Face - Blog
阮一峰的网络日志
阮一峰的网络日志
A
About on SuperTechFans
Jina AI
Jina AI
D
Docker
Last Week in AI
Last Week in AI
MongoDB | Blog
MongoDB | Blog
Stack Overflow Blog
Stack Overflow Blog
Microsoft Azure Blog
Microsoft Azure Blog

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(cli): bound startup memory probes · openclaw/openclaw...
vincentkoc · 2026-05-27 · via Recent Commits to openclaw:main

@@ -1,24 +1,27 @@

11

#!/usr/bin/env node

223-

import { spawnSync } from "node:child_process";

3+

import { spawnSync as defaultSpawnSync } from "node:child_process";

44

import { mkdirSync, mkdtempSync, rmSync, writeFileSync } from "node:fs";

55

import os from "node:os";

66

import path from "node:path";

7-8-

const isLinux = process.platform === "linux";

9-

const isMac = process.platform === "darwin";

10-11-

if (!isLinux && !isMac) {

12-

console.log(`[startup-memory] Skipping on unsupported platform: ${process.platform}`);

13-

process.exit(0);

14-

}

7+

import { pathToFileURL } from "node:url";

158169

const repoRoot = process.cwd();

1710

const tmpDir = process.env.TMPDIR || process.env.TEMP || process.env.TMP || os.tmpdir();

1811

const MAX_RSS_MARKER = "__OPENCLAW_MAX_RSS_KB__=";

12+

const DEFAULT_COMMAND_TIMEOUT_MS = 60_000;

13+

const COMMAND_TIMEOUT_MS = readPositiveIntEnv(

14+

"OPENCLAW_STARTUP_MEMORY_TIMEOUT_MS",

15+

DEFAULT_COMMAND_TIMEOUT_MS,

16+

);

1917

let tmpHome = null;

2018

let rssHookPath = null;

211920+

function readPositiveIntEnv(name, fallback) {

21+

const value = Number(process.env[name] ?? "");

22+

return Number.isInteger(value) && value > 0 ? value : fallback;

23+

}

24+2225

function parseArgs(argv) {

2326

const options = {

2427

jsonPath:

@@ -171,16 +174,20 @@ function buildBenchEnv() {

171174

return env;

172175

}

173176174-

function runCase(testCase) {

177+

function runCase(testCase, params = {}) {

175178

if (!rssHookPath) {

176179

throw new Error("RSS hook path is not initialized");

177180

}

178181

const env = buildBenchEnv();

179-

const result = spawnSync(process.execPath, ["--import", rssHookPath, ...testCase.args], {

182+

const spawn = params.spawnSync ?? defaultSpawnSync;

183+

const timeoutMs = params.timeoutMs ?? COMMAND_TIMEOUT_MS;

184+

const result = spawn(process.execPath, ["--import", rssHookPath, ...testCase.args], {

180185

cwd: repoRoot,

181186

env,

182187

encoding: "utf8",

183188

maxBuffer: 20 * 1024 * 1024,

189+

timeout: timeoutMs,

190+

killSignal: "SIGKILL",

184191

});

185192

const stderr = result.stderr ?? "";

186193

const maxRssMb = parseMaxRssMb(stderr);

@@ -193,12 +200,24 @@ function runCase(testCase) {

193200

maxRssMb,

194201

status: "pass",

195202

exitCode: result.status,

203+

signal: result.signal ?? null,

196204

error: null,

197205

};

198206207+

if (result.error) {

208+

const timedOut = result.error.code === "ETIMEDOUT";

209+

report.status = "fail";

210+

report.error = timedOut

211+

? `${testCase.label} timed out after ${timeoutMs}ms`

212+

: `${testCase.label} failed to start: ${result.error.message}`;

213+

return Object.assign(report, {

214+

failureMessage: formatFailure(testCase, report.error, stderr.trim() || result.stdout || ""),

215+

});

216+

}

199217

if (result.status !== 0) {

200218

report.status = "fail";

201-

report.error = `${testCase.label} exited with ${String(result.status)}`;

219+

const exitDetail = result.status ?? result.signal ?? "unknown";

220+

report.error = `${testCase.label} exited with ${String(exitDetail)}`;

202221

return Object.assign(report, {

203222

failureMessage: formatFailure(testCase, report.error, stderr.trim() || result.stdout || ""),

204223

});

@@ -271,33 +290,59 @@ function writeReport(options, results) {

271290

writeFileSync(options.summaryPath, `${lines.join("\n")}\n`, "utf8");

272291

}

273292274-

const options = parseArgs(process.argv.slice(2));

275-

tmpHome = mkdtempSync(path.join(os.tmpdir(), "openclaw-startup-memory-"));

276-

rssHookPath = path.join(tmpHome, "measure-rss.mjs");

277-

writeFileSync(

278-

rssHookPath,

279-

[

280-

"process.on('exit', () => {",

281-

" const usage = typeof process.resourceUsage === 'function' ? process.resourceUsage() : null;",

282-

` if (usage && typeof usage.maxRSS === 'number') console.error('${MAX_RSS_MARKER}' + String(usage.maxRSS));`,

283-

"});",

284-

"",

285-

].join("\n"),

286-

"utf8",

287-

);

288-

const results = [];

289-

try {

290-

for (const testCase of cases) {

291-

results.push(runCase(testCase));

293+

function runStartupMemoryCheck(argv = process.argv.slice(2), params = {}) {

294+

const platform = params.platform ?? process.platform;

295+

if (platform !== "linux" && platform !== "darwin") {

296+

console.log(`[startup-memory] Skipping on unsupported platform: ${platform}`);

297+

return { skipped: true, results: [] };

292298

}

293-

} finally {

294-

writeReport(options, results);

295-

if (tmpHome) {

296-

rmSync(tmpHome, { recursive: true, force: true });

299+

const options = parseArgs(argv);

300+

tmpHome = mkdtempSync(path.join(os.tmpdir(), "openclaw-startup-memory-"));

301+

rssHookPath = path.join(tmpHome, "measure-rss.mjs");

302+

writeFileSync(

303+

rssHookPath,

304+

[

305+

"process.on('exit', () => {",

306+

" const usage = typeof process.resourceUsage === 'function' ? process.resourceUsage() : null;",

307+

` if (usage && typeof usage.maxRSS === 'number') console.error('${MAX_RSS_MARKER}' + String(usage.maxRSS));`,

308+

"});",

309+

"",

310+

].join("\n"),

311+

"utf8",

312+

);

313+

const results = [];

314+

try {

315+

for (const testCase of cases) {

316+

results.push(runCase(testCase, params));

317+

}

318+

} finally {

319+

writeReport(options, results);

320+

if (tmpHome) {

321+

rmSync(tmpHome, { recursive: true, force: true });

322+

tmpHome = null;

323+

rssHookPath = null;

324+

}

297325

}

326+327+

const failure = results.find((result) => result.status !== "pass");

328+

if (failure?.failureMessage) {

329+

throw new Error(failure.failureMessage);

330+

}

331+

return { skipped: false, results };

298332

}

299333300-

const failure = results.find((result) => result.status !== "pass");

301-

if (failure?.failureMessage) {

302-

throw new Error(failure.failureMessage);

334+

export const testing = {

335+

cases,

336+

parseArgs,

337+

runCase,

338+

runStartupMemoryCheck,

339+

};

340+341+

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

342+

try {

343+

runStartupMemoryCheck();

344+

} catch (error) {

345+

console.error(error instanceof Error ? error.stack : String(error));

346+

process.exitCode = 1;

347+

}

303348

}