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

推荐订阅源

The GitHub Blog
The GitHub Blog
Jina AI
Jina AI
月光博客
月光博客
博客园 - Franky
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
Visual Studio Blog
有赞技术团队
有赞技术团队
V
V2EX
IT之家
IT之家
阮一峰的网络日志
阮一峰的网络日志
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
Apple Machine Learning Research
Apple Machine Learning Research
腾讯CDC
D
DataBreaches.Net
Hugging Face - Blog
Hugging Face - Blog
Martin Fowler
Martin Fowler
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
WordPress大学
WordPress大学
C
Check Point Blog
Microsoft Azure Blog
Microsoft Azure Blog
Microsoft Security Blog
Microsoft Security 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(qa): kill timed out Matrix CLI runs · openclaw/opencl...
vincentkoc · 2026-05-27 · via Recent Commits to openclaw:main

@@ -1,5 +1,6 @@

1-

import { mkdir, mkdtemp, rm, writeFile } from "node:fs/promises";

1+

import { mkdir, mkdtemp, readFile, rm, writeFile } from "node:fs/promises";

22

import path from "node:path";

3+

import { setTimeout as sleep } from "node:timers/promises";

34

import { resolvePreferredOpenClawTmpDir } from "openclaw/plugin-sdk/temp-path";

45

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

56

import {

@@ -10,6 +11,15 @@ import {

1011

startMatrixQaOpenClawCli,

1112

} from "./scenario-runtime-cli.js";

121314+

function isProcessRunning(pid: number): boolean {

15+

try {

16+

process.kill(pid, 0);

17+

return true;

18+

} catch {

19+

return false;

20+

}

21+

}

22+1323

describe("Matrix QA CLI runtime", () => {

1424

it("redacts secret CLI arguments in diagnostic command text", () => {

1525

expect(

@@ -176,4 +186,131 @@ describe("Matrix QA CLI runtime", () => {

176186

await rm(root, { force: true, recursive: true });

177187

}

178188

});

189+190+

it("kills CLI commands that ignore graceful timeout termination", async () => {

191+

const root = await mkdtemp(

192+

path.join(resolvePreferredOpenClawTmpDir(), "matrix-qa-cli-timeout-kill-"),

193+

);

194+

const pidPath = path.join(root, "cli.pid");

195+

let childPid: number | undefined;

196+

try {

197+

await mkdir(path.join(root, "dist"));

198+

await writeFile(

199+

path.join(root, "dist", "index.mjs"),

200+

[

201+

"import { writeFileSync } from 'node:fs';",

202+

`writeFileSync(${JSON.stringify(pidPath)}, String(process.pid));`,

203+

"process.stdout.write('waiting despite graceful shutdown\\n');",

204+

"process.on('SIGTERM', () => { process.stdout.write('ignored sigterm\\n'); });",

205+

"setInterval(() => {}, 1000);",

206+

].join("\n"),

207+

);

208+209+

await expect(

210+

runMatrixQaOpenClawCli({

211+

args: ["matrix", "verify", "self"],

212+

cwd: root,

213+

env: process.env,

214+

timeoutMs: 500,

215+

}),

216+

).rejects.toThrow(/timed out after 500ms/u);

217+218+

childPid = Number(await readFile(pidPath, "utf8"));

219+

expect(isProcessRunning(childPid)).toBe(false);

220+

} finally {

221+

if (childPid && isProcessRunning(childPid)) {

222+

process.kill(childPid, "SIGKILL");

223+

}

224+

await rm(root, { force: true, recursive: true });

225+

}

226+

});

227+228+

it("preserves timeout diagnostics when wait attaches after timeout", async () => {

229+

const root = await mkdtemp(

230+

path.join(resolvePreferredOpenClawTmpDir(), "matrix-qa-cli-late-wait-timeout-"),

231+

);

232+

const pidPath = path.join(root, "cli.pid");

233+

let childPid: number | undefined;

234+

try {

235+

await mkdir(path.join(root, "dist"));

236+

await writeFile(

237+

path.join(root, "dist", "index.mjs"),

238+

[

239+

"import { writeFileSync } from 'node:fs';",

240+

`writeFileSync(${JSON.stringify(pidPath)}, String(process.pid));`,

241+

"process.stdout.write('late wait timeout marker\\n');",

242+

"process.on('SIGTERM', () => {});",

243+

"setInterval(() => {}, 1000);",

244+

].join("\n"),

245+

);

246+247+

const session = startMatrixQaOpenClawCli({

248+

args: ["matrix", "verify", "self"],

249+

cwd: root,

250+

env: process.env,

251+

timeoutMs: 500,

252+

});

253+

await sleep(850);

254+255+

await expect(session.wait()).rejects.toThrow(/timed out after 500ms/u);

256+

await expect(session.wait()).rejects.toThrow(/late wait timeout marker/u);

257+258+

childPid = Number(await readFile(pidPath, "utf8"));

259+

expect(isProcessRunning(childPid)).toBe(false);

260+

} finally {

261+

if (childPid && isProcessRunning(childPid)) {

262+

process.kill(childPid, "SIGKILL");

263+

}

264+

await rm(root, { force: true, recursive: true });

265+

}

266+

});

267+268+

it("settles and kills descendants that keep timed-out CLI stdio open", async () => {

269+

const root = await mkdtemp(

270+

path.join(resolvePreferredOpenClawTmpDir(), "matrix-qa-cli-timeout-tree-"),

271+

);

272+

const childPidPath = path.join(root, "child.pid");

273+

const grandchildPidPath = path.join(root, "grandchild.pid");

274+

let childPid: number | undefined;

275+

let grandchildPid: number | undefined;

276+

try {

277+

await mkdir(path.join(root, "dist"));

278+

await writeFile(

279+

path.join(root, "dist", "index.mjs"),

280+

[

281+

"import { spawn } from 'node:child_process';",

282+

"import { writeFileSync } from 'node:fs';",

283+

`writeFileSync(${JSON.stringify(childPidPath)}, String(process.pid));`,

284+

"const grandchild = spawn(process.execPath, ['-e', 'setInterval(() => {}, 1000);'], { stdio: ['ignore', 'inherit', 'inherit'] });",

285+

`writeFileSync(${JSON.stringify(grandchildPidPath)}, String(grandchild.pid));`,

286+

"process.stdout.write('spawned persistent descendant\\n');",

287+

"process.on('SIGTERM', () => {});",

288+

"setInterval(() => {}, 1000);",

289+

].join("\n"),

290+

);

291+292+

await expect(

293+

runMatrixQaOpenClawCli({

294+

args: ["matrix", "verify", "self"],

295+

cwd: root,

296+

env: process.env,

297+

timeoutMs: 500,

298+

}),

299+

).rejects.toThrow(/timed out after 500ms/u);

300+301+

childPid = Number(await readFile(childPidPath, "utf8"));

302+

grandchildPid = Number(await readFile(grandchildPidPath, "utf8"));

303+

expect(isProcessRunning(childPid)).toBe(false);

304+

if (process.platform !== "win32") {

305+

expect(isProcessRunning(grandchildPid)).toBe(false);

306+

}

307+

} finally {

308+

for (const pid of [grandchildPid, childPid]) {

309+

if (pid && isProcessRunning(pid)) {

310+

process.kill(pid, "SIGKILL");

311+

}

312+

}

313+

await rm(root, { force: true, recursive: true });

314+

}

315+

});

179316

});