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

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页
雷峰网
雷峰网
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
WordPress大学
WordPress大学
腾讯CDC
T
Tailwind CSS Blog
A
About on SuperTechFans
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
G
Google Developers Blog
The Cloudflare Blog
D
DataBreaches.Net
Recent Announcements
Recent Announcements
Engineering at Meta
Engineering at Meta
B
Blog
博客园 - 聂微东
阮一峰的网络日志
阮一峰的网络日志
月光博客
月光博客
博客园 - 司徒正美
MongoDB | Blog
MongoDB | Blog
Google DeepMind News
Google DeepMind News
Apple Machine Learning Research
Apple Machine Learning Research

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(scripts): wait for extension boundary process groups ...
vincentkoc · 2026-06-18 · via Recent Commits to openclaw:main
11

// Check Extension Package Tsc Boundary tests cover check extension package tsc boundary script behavior.

2+

import { spawn } from "node:child_process";

23

import { EventEmitter } from "node:events";

34

import fs from "node:fs";

45

import os from "node:os";

@@ -46,6 +47,43 @@ function createMockPipe() {

4647

return pipe;

4748

}

484950+

function isProcessAlive(pid: number): boolean {

51+

try {

52+

process.kill(pid, 0);

53+

return true;

54+

} catch {

55+

return false;

56+

}

57+

}

58+59+

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

60+

await new Promise((resolve) => {

61+

setTimeout(resolve, ms);

62+

});

63+

}

64+65+

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

66+

const deadlineAt = Date.now() + timeoutMs;

67+

while (Date.now() < deadlineAt) {

68+

if (fs.existsSync(filePath)) {

69+

return;

70+

}

71+

await sleep(25);

72+

}

73+

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

74+

}

75+76+

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

77+

const deadlineAt = Date.now() + timeoutMs;

78+

while (Date.now() < deadlineAt) {

79+

if (!isProcessAlive(pid)) {

80+

return;

81+

}

82+

await sleep(25);

83+

}

84+

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

85+

}

86+4987

afterEach(() => {

5088

for (const rootDir of tempRoots) {

5189

fs.rmSync(rootDir, { force: true, recursive: true });

@@ -423,6 +461,7 @@ describe("check-extension-package-tsc-boundary", () => {

423461424462

it("hard-kills timed out async node steps", async () => {

425463

const processSignals: Array<[number, NodeJS.Signals | number | undefined]> = [];

464+

let processGroupAlive = true;

426465

const child = new EventEmitter() as EventEmitter & {

427466

kill: (signal?: NodeJS.Signals | number) => boolean;

428467

pid: number;

@@ -445,6 +484,13 @@ describe("check-extension-package-tsc-boundary", () => {

445484

return child;

446485

},

447486

killProcess(pid: number, signal?: NodeJS.Signals | number) {

487+

if (signal === "SIGKILL") {

488+

processGroupAlive = false;

489+

}

490+

if (signal === 0 && !processGroupAlive) {

491+

processSignals.push([pid, signal]);

492+

throw Object.assign(new Error("gone"), { code: "ESRCH" });

493+

}

448494

processSignals.push([pid, signal]);

449495

return true;

450496

},

@@ -457,7 +503,10 @@ describe("check-extension-package-tsc-boundary", () => {

457503

(error: unknown) => error,

458504

);

459505460-

expect(processSignals).toEqual([[-1234, "SIGKILL"]]);

506+

expect(processSignals).toEqual([

507+

[-1234, "SIGKILL"],

508+

[-1234, 0],

509+

]);

461510

expect(failure).toBeInstanceOf(Error);

462511

if (!(failure instanceof Error)) {

463512

throw new Error("expected timeout failure to reject with an Error");

@@ -466,6 +515,57 @@ describe("check-extension-package-tsc-boundary", () => {

466515

expect((failure as { kind?: unknown }).kind).toBe("timeout");

467516

});

468517518+

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

519+

"waits for timed-out async node step process groups",

520+

async () => {

521+

const root = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-extension-tsc-timeout-"));

522+

tempRoots.add(root);

523+

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

524+

let childPid = 0;

525+

const childScript = [

526+

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

527+

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

528+

].join("");

529+

const parentScript = [

530+

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

531+

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

532+

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

533+

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

534+

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

535+

].join("");

536+537+

try {

538+

const failurePromise = runNodeStepAsync(

539+

"hung-step-group",

540+

["--eval", parentScript],

541+

100,

542+

{

543+

spawnImpl(command: string, args: string[], options: unknown) {

544+

return spawn(command, args, options as Parameters<typeof spawn>[2]);

545+

},

546+

},

547+

).then(

548+

() => {

549+

throw new Error("expected hung-step-group to time out");

550+

},

551+

(error: unknown) => error,

552+

);

553+554+

await waitForFile(childPidPath, 2_000);

555+

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

556+

expect(isProcessAlive(childPid)).toBe(true);

557+558+

const failure = await failurePromise;

559+

expect(failure).toBeInstanceOf(Error);

560+

await waitForDead(childPid, 2_000);

561+

} finally {

562+

if (childPid && isProcessAlive(childPid)) {

563+

process.kill(childPid, "SIGKILL");

564+

}

565+

}

566+

},

567+

);

568+469569

it("aborts concurrent sibling steps after the first failure", async () => {

470570

const startedAt = Date.now();

471571

const slowStepTimeoutMs = 60_000;