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

推荐订阅源

美团技术团队
T
The Blog of Author Tim Ferriss
月光博客
月光博客
阮一峰的网络日志
阮一峰的网络日志
Engineering at Meta
Engineering at Meta
量子位
I
InfoQ
Jina AI
Jina AI
Microsoft Security Blog
Microsoft Security Blog
H
Help Net Security
H
Hackread – Cybersecurity News, Data Breaches, AI and More
G
Google Developers Blog
J
Java Code Geeks
Recent Announcements
Recent Announcements
aimingoo的专栏
aimingoo的专栏
小众软件
小众软件
V
V2EX
腾讯CDC
P
Proofpoint News Feed
A
About on SuperTechFans
爱范儿
爱范儿
U
Unit 42
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI

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): clean package candidate timeouts · openclaw/ope...
vincentkoc · 2026-06-01 · via Recent Commits to openclaw:main
1-

import { execFile } from "node:child_process";

1+

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

2+

import { existsSync, readFileSync } from "node:fs";

23

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

34

import { tmpdir } from "node:os";

45

import path from "node:path";

6+

import { pathToFileURL } from "node:url";

57

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

68

import {

79

downloadUrl,

@@ -33,6 +35,63 @@ async function missing(file: string): Promise<boolean> {

3335

);

3436

}

353738+

function isProcessAlive(pid: number): boolean {

39+

try {

40+

process.kill(pid, 0);

41+

return true;

42+

} catch {

43+

return false;

44+

}

45+

}

46+47+

async function sleep(ms: number): Promise<void> {

48+

await new Promise((resolve) => {

49+

setTimeout(resolve, ms);

50+

});

51+

}

52+53+

async function waitForFile(filePath: string, timeoutMs: number): Promise<void> {

54+

const deadline = Date.now() + timeoutMs;

55+

while (Date.now() < deadline) {

56+

if (existsSync(filePath)) {

57+

return;

58+

}

59+

await sleep(25);

60+

}

61+

throw new Error(`timeout waiting for ${filePath}`);

62+

}

63+64+

async function waitForDead(pid: number, timeoutMs: number): Promise<void> {

65+

const deadline = Date.now() + timeoutMs;

66+

while (Date.now() < deadline) {

67+

if (!isProcessAlive(pid)) {

68+

return;

69+

}

70+

await sleep(25);

71+

}

72+

throw new Error(`process still alive: ${pid}`);

73+

}

74+75+

async function waitForExit(

76+

child: ReturnType<typeof spawn>,

77+

timeoutMs: number,

78+

): Promise<{ signal: NodeJS.Signals | null; status: number | null }> {

79+

return await new Promise((resolve, reject) => {

80+

const timeout = setTimeout(

81+

() => reject(new Error("timeout waiting for child exit")),

82+

timeoutMs,

83+

);

84+

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

85+

clearTimeout(timeout);

86+

resolve({ signal, status });

87+

});

88+

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

89+

clearTimeout(timeout);

90+

reject(error);

91+

});

92+

});

93+

}

94+3695

afterEach(async () => {

3796

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

3897

});

@@ -161,6 +220,96 @@ describe("resolve-openclaw-package-candidate", () => {

161220

).rejects.toThrow(/produced more than \d+ captured stdout chars/u);

162221

});

163222223+

it("kills timed-out package runner process groups", async () => {

224+

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

225+

return;

226+

}

227+228+

const dir = await mkdtemp(path.join(tmpdir(), "openclaw-package-runner-timeout-"));

229+

tempDirs.push(dir);

230+

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

231+

let childPid: number | undefined;

232+233+

try {

234+

const childScript = "process.on('SIGTERM', () => {}); setInterval(() => {}, 1000);";

235+

const parentScript = [

236+

"const { spawn } = require('node:child_process');",

237+

"const fs = require('node:fs');",

238+

`const child = spawn(process.execPath, ['-e', ${JSON.stringify(childScript)}], { stdio: 'ignore' });`,

239+

"fs.writeFileSync(process.env.OPENCLAW_TEST_CHILD_PID, String(child.pid));",

240+

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

241+

].join("");

242+243+

const timeoutAssertion = expect(

244+

runCommandForTest(process.execPath, ["-e", parentScript], {

245+

env: { ...process.env, OPENCLAW_TEST_CHILD_PID: childPidPath },

246+

killAfterMs: 25,

247+

timeoutMs: 500,

248+

}),

249+

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

250+251+

await waitForFile(childPidPath, 2_000);

252+

childPid = Number.parseInt(readFileSync(childPidPath, "utf8"), 10);

253+

await timeoutAssertion;

254+

await waitForDead(childPid, 2_000);

255+

} finally {

256+

if (childPid !== undefined && isProcessAlive(childPid)) {

257+

process.kill(childPid, "SIGKILL");

258+

}

259+

}

260+

});

261+262+

it("forwards external termination to package runner process groups", async () => {

263+

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

264+

return;

265+

}

266+267+

const dir = await mkdtemp(path.join(tmpdir(), "openclaw-package-runner-signal-"));

268+

tempDirs.push(dir);

269+

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

270+

const scriptUrl = pathToFileURL(

271+

path.resolve("scripts/resolve-openclaw-package-candidate.mjs"),

272+

).href;

273+

let childPid: number | undefined;

274+

let runnerPid: number | undefined;

275+276+

try {

277+

const childScript = "process.on('SIGTERM', () => {}); setInterval(() => {}, 1000);";

278+

const parentScript = [

279+

"const { spawn } = require('node:child_process');",

280+

"const fs = require('node:fs');",

281+

`const child = spawn(process.execPath, ['-e', ${JSON.stringify(childScript)}], { stdio: 'ignore' });`,

282+

"fs.writeFileSync(process.env.OPENCLAW_TEST_CHILD_PID, String(child.pid));",

283+

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

284+

].join("");

285+

const runnerScript = [

286+

`import { runCommandForTest } from ${JSON.stringify(scriptUrl)};`,

287+

`await runCommandForTest(process.execPath, ['-e', ${JSON.stringify(parentScript)}], { timeoutMs: 60000 });`,

288+

].join("\n");

289+

const runner = spawn(process.execPath, ["--input-type=module", "-e", runnerScript], {

290+

cwd: process.cwd(),

291+

env: { ...process.env, OPENCLAW_TEST_CHILD_PID: childPidPath },

292+

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

293+

});

294+

runnerPid = runner.pid;

295+296+

await waitForFile(childPidPath, 2_000);

297+

childPid = Number.parseInt(readFileSync(childPidPath, "utf8"), 10);

298+

runner.kill("SIGTERM");

299+

const result = await waitForExit(runner, 7_000);

300+301+

expect(result).toEqual({ signal: null, status: 143 });

302+

await waitForDead(childPid, 2_000);

303+

} finally {

304+

if (runnerPid !== undefined && isProcessAlive(runnerPid)) {

305+

process.kill(runnerPid, "SIGKILL");

306+

}

307+

if (childPid !== undefined && isProcessAlive(childPid)) {

308+

process.kill(childPid, "SIGKILL");

309+

}

310+

}

311+

});

312+164313

it("loads named trusted package URL source policies", async () => {

165314

const dir = await mkdtemp(path.join(tmpdir(), "openclaw-trusted-package-source-"));

166315

tempDirs.push(dir);