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

推荐订阅源

T
The Blog of Author Tim Ferriss
IT之家
IT之家
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
C
Check Point Blog
T
Tailwind CSS Blog
博客园 - Franky
H
Help Net Security
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Google DeepMind News
Google DeepMind News
博客园 - 叶小钗
J
Java Code Geeks
腾讯CDC
罗磊的独立博客
爱范儿
爱范儿
阮一峰的网络日志
阮一峰的网络日志
Martin Fowler
Martin Fowler
酷 壳 – CoolShell
酷 壳 – CoolShell
I
InfoQ
B
Blog
V
Visual Studio Blog
F
Fortinet All Blogs

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(test-live): force cleanup shard child groups on paren...
vincentkoc · 2026-06-20 · via Recent Commits to openclaw:main
11

// Test Live Shard tests cover test live shard script behavior.

2-

import { spawnSync } from "node:child_process";

3-

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

2+

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

3+

import { chmodSync, existsSync, mkdtempSync, readFileSync, rmSync, writeFileSync } from "node:fs";

44

import { tmpdir } from "node:os";

55

import path from "node:path";

6+

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

67

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

78

import {

89

LIVE_TEST_SHARDS,

@@ -421,4 +422,119 @@ describe("scripts/test-live-shard", () => {

421422

stdio: "inherit",

422423

});

423424

});

425+426+

it.skipIf(process.platform === "win32")(

427+

"cleans live shard descendants before forwarding parent SIGTERM",

428+

async () => {

429+

const root = mkdtempSync(path.join(tmpdir(), "openclaw-live-shard-signal-"));

430+

const fakePnpmPath = path.join(root, "pnpm");

431+

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

432+

const descendantPidPath = path.join(root, "descendant.pid");

433+

const signaledPath = path.join(root, "signaled");

434+

let childPid = 0;

435+

let descendantPid = 0;

436+

let runner: ReturnType<typeof spawn> | undefined;

437+438+

try {

439+

writeFakePnpm(fakePnpmPath);

440+

runner = spawn(

441+

process.execPath,

442+

["scripts/test-live-shard.mjs", "native-live-src-agents"],

443+

{

444+

env: {

445+

...process.env,

446+

OPENCLAW_FAKE_PNPM_DESCENDANT_PID_PATH: descendantPidPath,

447+

OPENCLAW_FAKE_PNPM_PID_PATH: childPidPath,

448+

OPENCLAW_FAKE_PNPM_SIGNALED_PATH: signaledPath,

449+

npm_execpath: fakePnpmPath,

450+

},

451+

stdio: "ignore",

452+

},

453+

);

454+455+

await waitFor(() => existsSync(childPidPath), 5_000);

456+

await waitFor(() => existsSync(descendantPidPath), 5_000);

457+

childPid = Number(readFileSync(childPidPath, "utf8"));

458+

descendantPid = Number(readFileSync(descendantPidPath, "utf8"));

459+

expect(Number.isInteger(childPid)).toBe(true);

460+

expect(Number.isInteger(descendantPid)).toBe(true);

461+462+

runner.kill("SIGTERM");

463+464+

await expect(waitForClose(runner)).resolves.toEqual({ code: null, signal: "SIGTERM" });

465+

await waitFor(() => existsSync(signaledPath), 5_000);

466+

expect(readFileSync(signaledPath, "utf8")).toBe("SIGTERM");

467+

await waitFor(() => !isProcessAlive(childPid), 5_000);

468+

await waitFor(() => !isProcessAlive(descendantPid), 5_000);

469+

} finally {

470+

if (runner?.pid && isProcessAlive(runner.pid)) {

471+

process.kill(runner.pid, "SIGKILL");

472+

}

473+

if (childPid && isProcessAlive(childPid)) {

474+

process.kill(childPid, "SIGKILL");

475+

}

476+

if (descendantPid && isProcessAlive(descendantPid)) {

477+

process.kill(descendantPid, "SIGKILL");

478+

}

479+

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

480+

}

481+

},

482+

);

424483

});

484+485+

function writeFakePnpm(filePath: string): void {

486+

writeFileSync(

487+

filePath,

488+

[

489+

"#!/usr/bin/env node",

490+

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

491+

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

492+

"const child = spawn(process.execPath, [",

493+

' "-e",',

494+

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

495+

"], { stdio: 'ignore' });",

496+

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

497+

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

498+

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

499+

' fs.writeFileSync(process.env.OPENCLAW_FAKE_PNPM_SIGNALED_PATH, "SIGTERM");',

500+

" process.exit(0);",

501+

"});",

502+

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

503+

"",

504+

].join("\n"),

505+

);

506+

chmodSync(filePath, 0o755);

507+

}

508+509+

async function waitFor(condition: () => boolean, timeoutMs: number): Promise<void> {

510+

const startedAt = Date.now();

511+

while (!condition()) {

512+

if (Date.now() - startedAt > timeoutMs) {

513+

throw new Error("timed out waiting for condition");

514+

}

515+

await delay(25);

516+

}

517+

}

518+519+

async function waitForClose(

520+

child: ReturnType<typeof spawn>,

521+

timeoutMs = 5_000,

522+

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

523+

return await Promise.race([

524+

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

525+

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

526+

}),

527+

delay(timeoutMs).then(() => {

528+

throw new Error("timed out waiting for child close");

529+

}),

530+

]);

531+

}

532+533+

function isProcessAlive(pid: number): boolean {

534+

try {

535+

process.kill(pid, 0);

536+

return true;

537+

} catch {

538+

return false;

539+

}

540+

}