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

推荐订阅源

V
Visual Studio Blog
罗磊的独立博客
宝玉的分享
宝玉的分享
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell
T
Tailwind CSS Blog
博客园_首页
量子位
月光博客
月光博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 司徒正美
人人都是产品经理
人人都是产品经理
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
爱范儿
爱范儿
S
SegmentFault 最新的问题
雷峰网
雷峰网
小众软件
小众软件
博客园 - 聂微东
美团技术团队
Apple Machine Learning Research
Apple Machine Learning Research
WordPress大学
WordPress大学
Jina AI
Jina AI
Hugging Face - Blog
Hugging Face - 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(e2e): catch runtime package-manager descendants · ope...
vincentkoc · 2026-06-01 · via Recent Commits to openclaw:main

@@ -445,6 +445,110 @@ describe("bundled plugin install/uninstall probe", () => {

445445

}

446446

});

447447448+

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

449+

"rejects package-manager grandchildren under runtime gateways",

450+

async () => {

451+

const runtimeSmoke = await importRuntimeSmokeWithEnv({

452+

OPENCLAW_BUNDLED_PLUGIN_RUNTIME_TEARDOWN_GRACE_MS: "50",

453+

OPENCLAW_BUNDLED_PLUGIN_RUNTIME_TEARDOWN_KILL_GRACE_MS: "1000",

454+

});

455+

const root = makePackageRoot();

456+

const entrypoint = path.join(root, "dist", "gateway-with-package-manager-grandchild.js");

457+

const logPath = path.join(root, "gateway-package-manager.log");

458+

const packageManagerPidPath = path.join(root, "package-manager.pid");

459+

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

460+

const helperScript = [

461+

"import childProcess from 'node:child_process';",

462+

"import fs from 'node:fs';",

463+

`const child = childProcess.spawn(process.execPath, ["-e", ${JSON.stringify(

464+

packageManagerScript,

465+

)}], { argv0: "pnpm", stdio: "ignore" });`,

466+

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

467+

"process.on('SIGTERM', () => { child.kill('SIGTERM'); process.exit(0); });",

468+

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

469+

].join("\n");

470+

fs.writeFileSync(

471+

entrypoint,

472+

[

473+

"import childProcess from 'node:child_process';",

474+

"if (process.argv[2] === 'gateway') {",

475+

` childProcess.spawn(process.execPath, ["--input-type=module", "--eval", ${JSON.stringify(

476+

helperScript,

477+

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

478+

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

479+

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

480+

"}",

481+

"",

482+

].join("\n"),

483+

"utf8",

484+

);

485+486+

const child = runtimeSmoke.startGateway({

487+

entrypoint,

488+

env: {},

489+

logPath,

490+

port: 19007,

491+

skipChannels: true,

492+

});

493+

let packageManagerPid: number | undefined;

494+

try {

495+

await waitForFile(packageManagerPidPath, 1000);

496+

packageManagerPid = Number(fs.readFileSync(packageManagerPidPath, "utf8"));

497+

expect(pidIsAlive(packageManagerPid)).toBe(true);

498+499+

await expect(runtimeSmoke.assertNoPackageManagerChildren(child.pid)).rejects.toThrow(

500+

/package manager descendant process still running/u,

501+

);

502+

} finally {

503+

await runtimeSmoke.stopGateway(child);

504+

if (packageManagerPid !== undefined && pidIsAlive(packageManagerPid)) {

505+

process.kill(packageManagerPid, "SIGKILL");

506+

}

507+

}

508+

},

509+

);

510+511+

it("finds package-manager descendants recursively in process snapshots", async () => {

512+

const runtimeSmoke = await import(pathToFileURL(runtimeSmokePath).href);

513+

const runtimeSmokeSource = fs.readFileSync(runtimeSmokePath, "utf8");

514+

const longWrapperPath = `/tmp/${"nested/".repeat(40)}pnpm.cjs`;

515+516+

const descendants = runtimeSmoke.findPackageManagerDescendants(

517+

[

518+

" 100 1 node gateway",

519+

" 101 100 sh -c helper",

520+

" 102 101 /usr/local/bin/pnpm install",

521+

" 103 100 /usr/bin/npm-helper",

522+

" 104 1 yarn install",

523+

" 105 101 node /opt/pnpm.cjs install",

524+

` 106 101 node ${longWrapperPath} install`,

525+

].join("\n"),

526+

100,

527+

);

528+529+

expect(runtimeSmokeSource).toContain('["-ww", "-eo", "pid=,ppid=,args="]');

530+

expect(

531+

descendants.toSorted((left: { pid: number }, right: { pid: number }) => left.pid - right.pid),

532+

).toEqual([

533+

{ args: "/usr/local/bin/pnpm install", pid: 102, ppid: 101 },

534+

{ args: "/usr/bin/npm-helper", pid: 103, ppid: 100 },

535+

{ args: "node /opt/pnpm.cjs install", pid: 105, ppid: 101 },

536+

{ args: `node ${longWrapperPath} install`, pid: 106, ppid: 101 },

537+

]);

538+

expect(

539+

runtimeSmoke.findPackageManagerDescendants(

540+

[

541+

" 100 1 node gateway",

542+

" 101 100 sh -c helper",

543+

" 102 101 /usr/local/bin/pnpm install",

544+

" 103 100 /usr/bin/npm-helper",

545+

" 104 1 yarn install",

546+

].join("\n"),

547+

100,

548+

),

549+

).not.toContainEqual({ args: "yarn install", pid: 104, ppid: 1 });

550+

});

551+448552

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

449553

"cleans detached runtime gateway groups when the parent is signaled",

450554

async () => {