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

推荐订阅源

V
Visual Studio Blog
Y
Y Combinator Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
L
LangChain Blog
美团技术团队
N
Netflix TechBlog - Medium
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog
博客园 - 司徒正美
爱范儿
爱范儿
D
DataBreaches.Net
月光博客
月光博客
U
Unit 42
B
Blog RSS Feed
Engineering at Meta
Engineering at Meta
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
MongoDB | Blog
MongoDB | Blog
腾讯CDC

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(build): clean tsdown child trees on parent signal · o...
vincentkoc · 2026-06-20 · via Recent Commits to openclaw:main
11

// Tsdown Build tests cover tsdown build script behavior.

2-

import { spawnSync } from "node:child_process";

2+

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

33

import fs from "node:fs";

44

import fsPromises from "node:fs/promises";

55

import path from "node:path";

6+

import { pathToFileURL } from "node:url";

67

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

78

import {

89

cleanTsdownOutputRoots,

@@ -72,6 +73,21 @@ async function waitForDead(pid: number, timeoutMs: number): Promise<void> {

7273

throw new Error(`timed out waiting for pid ${pid} to exit`);

7374

}

747576+

function waitForChildClose(

77+

child: ReturnType<typeof spawn>,

78+

timeoutMs = 5_000,

79+

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

80+

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

81+

const timeout = setTimeout(() => {

82+

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

83+

}, timeoutMs);

84+

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

85+

clearTimeout(timeout);

86+

resolve({ code, signal });

87+

});

88+

});

89+

}

90+7591

describe("resolveTsdownBuildInvocation", () => {

7692

it("parses wrapper help before any tsdown work", () => {

7793

expect(parseTsdownBuildArgs(["--help"])).toEqual({ forwardedArgs: [], help: true });

@@ -767,4 +783,64 @@ describe("runTsdownBuildInvocation", () => {

767783

}

768784

},

769785

);

786+787+

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

788+

"cleans process-group descendants before forwarding parent SIGTERM",

789+

async () => {

790+

const rootDir = createTempDir("openclaw-tsdown-parent-signal-");

791+

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

792+

const readyPath = path.join(rootDir, "child.ready");

793+

const scriptUrl = pathToFileURL(path.resolve("scripts/tsdown-build.mjs")).href;

794+

let childPid = 0;

795+

let runner: ReturnType<typeof spawn> | undefined;

796+797+

try {

798+

const childScript = [

799+

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

800+

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

801+

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

802+

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

803+

].join("");

804+

const parentScript = [

805+

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

806+

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

807+

`require('node:fs').writeFileSync(${JSON.stringify(readyPath)}, 'ready');`,

808+

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

809+

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

810+

].join("");

811+

const runnerScript = [

812+

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

813+

"await runTsdownBuildInvocation(",

814+

` { command: process.execPath, args: ['-e', ${JSON.stringify(parentScript)}], options: { stdio: ['ignore', 'pipe', 'pipe'], shell: false, env: process.env } },`,

815+

" { env: { ...process.env, OPENCLAW_TSDOWN_HEARTBEAT_MS: '0' } },",

816+

");",

817+

].join("\n");

818+819+

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

820+

cwd: process.cwd(),

821+

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

822+

});

823+824+

await waitForFile(readyPath, 2_000);

825+

await waitForFile(childPidPath, 2_000);

826+

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

827+

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

828+829+

runner.kill("SIGTERM");

830+831+

await expect(waitForChildClose(runner)).resolves.toEqual({

832+

code: null,

833+

signal: "SIGTERM",

834+

});

835+

await waitForDead(childPid, 2_000);

836+

} finally {

837+

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

838+

runner.kill("SIGKILL");

839+

}

840+

if (childPid && isProcessAlive(childPid)) {

841+

process.kill(childPid, "SIGKILL");

842+

}

843+

}

844+

},

845+

);

770846

});