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

推荐订阅源

G
Google Developers Blog
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
B
Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
H
Help Net Security
B
Blog RSS Feed
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
N
Netflix TechBlog - Medium
S
SegmentFault 最新的问题
The Cloudflare Blog
I
InfoQ
美团技术团队
博客园 - 三生石上(FineUI控件)
MyScale Blog
MyScale Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 司徒正美
L
LangChain Blog
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
Y
Y Combinator 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(parallels): reap signaled host command groups · openc...
vincentkoc · 2026-06-20 · via Recent Commits to openclaw:main
11

// Parallels Smoke Model tests cover parallels smoke model script behavior.

2+

import { spawn } from "node:child_process";

23

import { EventEmitter } from "node:events";

34

import {

45

chmodSync,

@@ -189,6 +190,21 @@ async function waitFor(predicate: () => boolean, timeoutMs = 3_000): Promise<voi

189190

throw new Error("condition was not met before timeout");

190191

}

191192193+

async function waitForProcessClose(

194+

child: ReturnType<typeof spawn>,

195+

timeoutMs = 3_000,

196+

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

197+

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

198+

const timer = setTimeout(() => {

199+

reject(new Error("child process did not close before timeout"));

200+

}, timeoutMs);

201+

child.once("close", (code, signal) => {

202+

clearTimeout(timer);

203+

resolve({ code, signal });

204+

});

205+

});

206+

}

207+192208

describe("Parallels smoke model selection", () => {

193209

let invalidProviderResult: ReturnType<typeof spawnNodeEvalSync>;

194210

let missingProviderKeyResult: ReturnType<typeof spawnNodeEvalSync>;

@@ -1413,6 +1429,78 @@ setInterval(() => {}, 1000);

14131429

},

14141430

);

141514311432+

it.runIf(process.platform !== "win32")(

1433+

"reaps externally signaled timed host command descendants",

1434+

async () => {

1435+

const tempDir = makeTempDir(tempDirs, "openclaw-parallels-host-command-signal-");

1436+

const runnerPath = join(tempDir, "runner.mjs");

1437+

const readyPath = join(tempDir, "ready");

1438+

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

1439+

const hostCommandUrl = pathToFileURL(join(process.cwd(), TS_PATHS.hostCommand)).href;

1440+

let runnerPid = 0;

1441+

let grandchildPid = 0;

1442+1443+

try {

1444+

const grandchildScript = [

1445+

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

1446+

"writeFileSync(process.env.OPENCLAW_TEST_GRANDCHILD_PID, String(process.pid));",

1447+

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

1448+

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

1449+

].join("\n");

1450+

const parentScript = [

1451+

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

1452+

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

1453+

`spawn(process.execPath, ['-e', ${JSON.stringify(grandchildScript)}], { env: process.env, stdio: 'ignore' });`,

1454+

"writeFileSync(process.env.OPENCLAW_TEST_READY_FILE, 'ready');",

1455+

"process.on('SIGTERM', () => process.exit(0));",

1456+

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

1457+

].join("\n");

1458+

writeFileSync(

1459+

runnerPath,

1460+

[

1461+

`import { run } from ${JSON.stringify(hostCommandUrl)};`,

1462+

`run(process.execPath, ['-e', ${JSON.stringify(parentScript)}], {`,

1463+

" check: false,",

1464+

" env: {",

1465+

" ...process.env,",

1466+

` OPENCLAW_TEST_GRANDCHILD_PID: ${JSON.stringify(grandchildPidPath)},`,

1467+

` OPENCLAW_TEST_READY_FILE: ${JSON.stringify(readyPath)},`,

1468+

" },",

1469+

" quiet: true,",

1470+

" timeoutMs: 30_000,",

1471+

"});",

1472+

].join("\n"),

1473+

"utf8",

1474+

);

1475+1476+

const runner = spawn(process.execPath, ["--import", "tsx", runnerPath], {

1477+

cwd: process.cwd(),

1478+

detached: true,

1479+

stdio: "ignore",

1480+

});

1481+

runnerPid = runner.pid ?? 0;

1482+

expect(runnerPid).toBeGreaterThan(0);

1483+

await waitFor(() => existsSync(readyPath) && existsSync(grandchildPidPath), 2_000);

1484+

grandchildPid = Number.parseInt(readFileSync(grandchildPidPath, "utf8"), 10);

1485+1486+

process.kill(-runnerPid, "SIGTERM");

1487+1488+

await expect(waitForProcessClose(runner, 3_000)).resolves.toEqual({

1489+

code: null,

1490+

signal: "SIGTERM",

1491+

});

1492+

await waitFor(() => !isProcessAlive(grandchildPid), 3_000);

1493+

} finally {

1494+

if (runnerPid && isProcessAlive(runnerPid)) {

1495+

process.kill(-runnerPid, "SIGKILL");

1496+

}

1497+

if (grandchildPid && isProcessAlive(grandchildPid)) {

1498+

process.kill(grandchildPid, "SIGKILL");

1499+

}

1500+

}

1501+

},

1502+

);

1503+14161504

it.runIf(process.platform !== "win32")("preserves timed host command spawn errors", () => {

14171505

expect(() =>

14181506

run("openclaw-definitely-missing-host-command", [], {

@@ -1498,6 +1586,78 @@ setInterval(() => {}, 1000);

14981586

},

14991587

);

150015881589+

it.runIf(process.platform !== "win32")(

1590+

"reaps externally signaled streaming host command descendants before re-raising",

1591+

async () => {

1592+

const tempDir = makeTempDir(tempDirs, "openclaw-parallels-streaming-host-command-signal-");

1593+

const runnerPath = join(tempDir, "runner.mjs");

1594+

const readyPath = join(tempDir, "ready");

1595+

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

1596+

const logPath = join(tempDir, "stream.log");

1597+

const hostCommandUrl = pathToFileURL(join(process.cwd(), TS_PATHS.hostCommand)).href;

1598+

let runnerPid = 0;

1599+

let grandchildPid = 0;

1600+1601+

try {

1602+

const grandchildScript = [

1603+

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

1604+

"writeFileSync(process.env.OPENCLAW_TEST_GRANDCHILD_PID, String(process.pid));",

1605+

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

1606+

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

1607+

].join("\n");

1608+

const parentScript = [

1609+

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

1610+

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

1611+

`spawn(process.execPath, ['-e', ${JSON.stringify(grandchildScript)}], { env: process.env, stdio: 'ignore' });`,

1612+

"writeFileSync(process.env.OPENCLAW_TEST_READY_FILE, 'ready');",

1613+

"process.on('SIGTERM', () => process.exit(0));",

1614+

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

1615+

].join("\n");

1616+

writeFileSync(

1617+

runnerPath,

1618+

[

1619+

`import { runStreaming } from ${JSON.stringify(hostCommandUrl)};`,

1620+

`await runStreaming(process.execPath, ['-e', ${JSON.stringify(parentScript)}], {`,

1621+

" env: {",

1622+

" ...process.env,",

1623+

` OPENCLAW_TEST_GRANDCHILD_PID: ${JSON.stringify(grandchildPidPath)},`,

1624+

` OPENCLAW_TEST_READY_FILE: ${JSON.stringify(readyPath)},`,

1625+

" },",

1626+

` logPath: ${JSON.stringify(logPath)},`,

1627+

" quiet: true,",

1628+

" timeoutMs: 30_000,",

1629+

"});",

1630+

].join("\n"),

1631+

"utf8",

1632+

);

1633+1634+

const runner = spawn(process.execPath, ["--import", "tsx", runnerPath], {

1635+

cwd: process.cwd(),

1636+

stdio: "ignore",

1637+

});

1638+

runnerPid = runner.pid ?? 0;

1639+

expect(runnerPid).toBeGreaterThan(0);

1640+

await waitFor(() => existsSync(readyPath) && existsSync(grandchildPidPath), 2_000);

1641+

grandchildPid = Number.parseInt(readFileSync(grandchildPidPath, "utf8"), 10);

1642+1643+

runner.kill("SIGTERM");

1644+1645+

await expect(waitForProcessClose(runner, 3_000)).resolves.toEqual({

1646+

code: null,

1647+

signal: "SIGTERM",

1648+

});

1649+

await waitFor(() => !isProcessAlive(grandchildPid), 3_000);

1650+

} finally {

1651+

if (runnerPid && isProcessAlive(runnerPid)) {

1652+

process.kill(runnerPid, "SIGKILL");

1653+

}

1654+

if (grandchildPid && isProcessAlive(grandchildPid)) {

1655+

process.kill(grandchildPid, "SIGKILL");

1656+

}

1657+

}

1658+

},

1659+

);

1660+15011661

it("streams host command logs instead of retaining them in memory", async () => {

15021662

const source = readFileSync(TS_PATHS.hostCommand, "utf8");

15031663

const runStreamingBlock = source.slice(source.indexOf("export async function runStreaming"));