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

推荐订阅源

Martin Fowler
Martin Fowler
大猫的无限游戏
大猫的无限游戏
J
Java Code Geeks
罗磊的独立博客
雷峰网
雷峰网
G
Google Developers Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
爱范儿
爱范儿
B
Blog RSS Feed
腾讯CDC
Apple Machine Learning Research
Apple Machine Learning Research
D
Docker
Recent Announcements
Recent Announcements
T
Tailwind CSS Blog
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Vercel News
Vercel News
小众软件
小众软件
人人都是产品经理
人人都是产品经理
云风的 BLOG
云风的 BLOG
IT之家
IT之家
Blog — PlanetScale
Blog — PlanetScale
I
InfoQ
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(testing): bound openclaw instance logs · openclaw/ope...
vincentkoc · 2026-05-28 · via Recent Commits to openclaw:main

@@ -64,8 +64,63 @@ const GATEWAY_START_TIMEOUT_MS = 60_000;

6464

const GATEWAY_STOP_TIMEOUT_MS = 1_500;

6565

const GATEWAY_ENTRYPOINT_PREPARE_TIMEOUT_MS = 120_000;

6666

const COMMAND_TIMEOUT_MS = 30_000;

67+

const LOG_TAIL_MAX_BYTES = 256 * 1024;

6768

const entrypointPromises = new Map<string, Promise<string[]>>();

686970+

type BoundedStringLog = string[] & {

71+

byteLength?: number;

72+

truncated?: boolean;

73+

};

74+75+

function createBoundedStringLog(): string[] {

76+

const log = [] as BoundedStringLog;

77+

log.byteLength = 0;

78+

log.truncated = false;

79+

return log;

80+

}

81+82+

function appendLogChunk(log: string[], chunk: unknown, maxBytes = LOG_TAIL_MAX_BYTES): void {

83+

const chunks = log as BoundedStringLog;

84+

const limit = Math.max(1, maxBytes);

85+

const text = String(chunk);

86+

const textBytes = Buffer.byteLength(text);

87+

if (textBytes >= limit) {

88+

const buffer = Buffer.from(text);

89+

const tail = buffer.subarray(buffer.length - limit).toString("utf8");

90+

chunks.splice(0, chunks.length, tail);

91+

chunks.byteLength = Buffer.byteLength(tail);

92+

chunks.truncated = true;

93+

return;

94+

}

95+96+

chunks.push(text);

97+

chunks.byteLength = (chunks.byteLength ?? 0) + textBytes;

98+

while ((chunks.byteLength ?? 0) > limit && chunks.length > 0) {

99+

const first = chunks[0] ?? "";

100+

const firstBytes = Buffer.byteLength(first);

101+

const overflow = (chunks.byteLength ?? 0) - limit;

102+

if (firstBytes <= overflow) {

103+

chunks.shift();

104+

chunks.byteLength = (chunks.byteLength ?? 0) - firstBytes;

105+

chunks.truncated = true;

106+

continue;

107+

}

108+109+

const buffer = Buffer.from(first);

110+

const tail = buffer.subarray(overflow).toString("utf8");

111+

chunks[0] = tail;

112+

chunks.byteLength = chunks.reduce((total, entry) => total + Buffer.byteLength(entry), 0);

113+

chunks.truncated = true;

114+

}

115+

}

116+117+

function readLogBuffer(log: string[]): string {

118+

const text = log.join("");

119+

return (log as BoundedStringLog).truncated

120+

? `[output truncated to last ${LOG_TAIL_MAX_BYTES} bytes]\n${text}`

121+

: text;

122+

}

123+69124

async function resolveBuiltGatewayEntrypoint(cwd: string): Promise<string[] | null> {

70125

const buildStampPath = path.join(cwd, "dist", BUILD_STAMP_FILE);

71126

const runtimePostBuildStampPath = path.join(cwd, "dist", RUNTIME_POSTBUILD_STAMP_FILE);

@@ -90,17 +145,17 @@ async function prepareGatewayEntrypoint(cwd: string): Promise<string[]> {

90145

return builtEntrypoint;

91146

}

9214793-

const stdout: string[] = [];

94-

const stderr: string[] = [];

148+

const stdout = createBoundedStringLog();

149+

const stderr = createBoundedStringLog();

95150

const child = spawn("node", ["scripts/run-node.mjs", "--help"], {

96151

cwd,

97152

env: { ...process.env, VITEST: "1" },

98153

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

99154

});

100155

child.stdout?.setEncoding("utf8");

101156

child.stderr?.setEncoding("utf8");

102-

child.stdout?.on("data", (d) => stdout.push(String(d)));

103-

child.stderr?.on("data", (d) => stderr.push(String(d)));

157+

child.stdout?.on("data", (d) => appendLogChunk(stdout, d));

158+

child.stderr?.on("data", (d) => appendLogChunk(stderr, d));

104159105160

const completed = await Promise.race([

106161

new Promise<{ code: number | null; signal: NodeJS.Signals | null }>((resolve, reject) => {

@@ -112,15 +167,13 @@ async function prepareGatewayEntrypoint(cwd: string): Promise<string[]> {

112167113168

if (completed === null) {

114169

child.kill("SIGKILL");

115-

throw new Error(

116-

`timeout preparing gateway entrypoint\n--- stdout ---\n${stdout.join("")}\n--- stderr ---\n${stderr.join("")}`,

117-

);

170+

throw new Error(`timeout preparing gateway entrypoint\n${formatLogs(stdout, stderr)}`);

118171

}

119172

if (completed.code !== 0) {

120173

throw new Error(

121174

`failed preparing gateway entrypoint (code=${String(completed.code)} signal=${String(

122175

completed.signal,

123-

)})\n--- stdout ---\n${stdout.join("")}\n--- stderr ---\n${stderr.join("")}`,

176+

)})\n${formatLogs(stdout, stderr)}`,

124177

);

125178

}

126179

@@ -224,7 +277,7 @@ function mergeConfig(

224277

}

225278226279

function formatLogs(stdout: string[], stderr: string[]): string {

227-

return `--- stdout ---\n${stdout.join("")}\n--- stderr ---\n${stderr.join("")}`;

280+

return `--- stdout ---\n${readLogBuffer(stdout)}\n--- stderr ---\n${readLogBuffer(stderr)}`;

228281

}

229282230283

function createInstanceEnv(params: {

@@ -282,8 +335,8 @@ export async function createOpenClawTestInstance(

282335

),

283336

);

284337285-

const stdout: string[] = [];

286-

const stderr: string[] = [];

338+

const stdout = createBoundedStringLog();

339+

const stderr = createBoundedStringLog();

287340

const env = createInstanceEnv({

288341

stateEnv: state.env,

289342

extraEnv: options.env ?? {},

@@ -343,8 +396,8 @@ export async function createOpenClawTestInstance(

343396344397

child.stdout?.setEncoding("utf8");

345398

child.stderr?.setEncoding("utf8");

346-

child.stdout?.on("data", (d) => stdout.push(String(d)));

347-

child.stderr?.on("data", (d) => stderr.push(String(d)));

399+

child.stdout?.on("data", (d) => appendLogChunk(stdout, d));

400+

child.stderr?.on("data", (d) => appendLogChunk(stderr, d));

348401349402

try {

350403

await waitForPortOpen(

@@ -410,17 +463,17 @@ async function runCommand(params: {

410463

if (!command) {

411464

throw new Error("missing command");

412465

}

413-

const stdout: string[] = [];

414-

const stderr: string[] = [];

466+

const stdout = createBoundedStringLog();

467+

const stderr = createBoundedStringLog();

415468

const child = spawn(command, args, {

416469

cwd: params.cwd,

417470

env: params.env,

418471

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

419472

});

420473

child.stdout?.setEncoding("utf8");

421474

child.stderr?.setEncoding("utf8");

422-

child.stdout?.on("data", (d) => stdout.push(String(d)));

423-

child.stderr?.on("data", (d) => stderr.push(String(d)));

475+

child.stdout?.on("data", (d) => appendLogChunk(stdout, d));

476+

child.stderr?.on("data", (d) => appendLogChunk(stderr, d));

424477425478

const completed = await Promise.race([

426479

new Promise<{ code: number | null; signal: NodeJS.Signals | null }>((resolve, reject) => {

@@ -438,7 +491,13 @@ async function runCommand(params: {

438491

}

439492

return {

440493

...completed,

441-

stdout: stdout.join(""),

442-

stderr: stderr.join(""),

494+

stdout: readLogBuffer(stdout),

495+

stderr: readLogBuffer(stderr),

443496

};

444497

}

498+499+

export const testing = {

500+

appendLogChunk,

501+

createBoundedStringLog,

502+

formatLogs,

503+

};