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

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
G
Google Developers Blog
V
V2EX
美团技术团队
H
Help Net Security
月光博客
月光博客
爱范儿
爱范儿
Engineering at Meta
Engineering at Meta
The Cloudflare Blog
U
Unit 42
大猫的无限游戏
大猫的无限游戏
Recent Announcements
Recent Announcements
A
About on SuperTechFans
博客园 - Franky
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium
人人都是产品经理
人人都是产品经理
博客园 - 司徒正美
MyScale Blog
MyScale Blog
B
Blog
雷峰网
雷峰网
Y
Y Combinator Blog
云风的 BLOG
云风的 BLOG
T
The Blog of Author Tim Ferriss

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 deadcode scan process groups · ope...
vincentkoc · 2026-06-18 · via Recent Commits to openclaw:main
11

// Check Deadcode Unused Files tests cover check deadcode unused files script behavior.

2+

import { spawn } from "node:child_process";

23

import { EventEmitter } from "node:events";

3-

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

4+

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

45

import os from "node:os";

56

import path from "node:path";

67

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

@@ -27,6 +28,43 @@ function finishFakeProcess(

2728

child.emit("close", status, signal);

2829

}

293031+

function isProcessAlive(pid: number): boolean {

32+

try {

33+

process.kill(pid, 0);

34+

return true;

35+

} catch {

36+

return false;

37+

}

38+

}

39+40+

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

41+

await new Promise((resolve) => {

42+

setTimeout(resolve, ms);

43+

});

44+

}

45+46+

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

47+

const deadlineAt = Date.now() + timeoutMs;

48+

while (Date.now() < deadlineAt) {

49+

if (existsSync(filePath)) {

50+

return;

51+

}

52+

await sleep(25);

53+

}

54+

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

55+

}

56+57+

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

58+

const deadlineAt = Date.now() + timeoutMs;

59+

while (Date.now() < deadlineAt) {

60+

if (!isProcessAlive(pid)) {

61+

return;

62+

}

63+

await sleep(25);

64+

}

65+

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

66+

}

67+3068

describe("check-deadcode-unused-files", () => {

3169

it("parses the compact Knip unused-file section", () => {

3270

expect(

@@ -243,6 +281,9 @@ src/a.ts: src/a.ts

243281

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

244282

process.kill = ((pid: number, signal?: NodeJS.Signals | number) => {

245283

if (Math.abs(pid) === child.pid) {

284+

if (signal === 0) {

285+

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

286+

}

246287

kills.push(signal);

247288

finishFakeProcess(child, null, (signal as NodeJS.Signals | undefined) ?? "SIGTERM");

248289

return true;

@@ -274,6 +315,57 @@ src/a.ts: src/a.ts

274315

}

275316

});

276317318+

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

319+

"waits for timed-out Knip process groups after the wrapper exits",

320+

async () => {

321+

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

322+

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

323+

let childPid = 0;

324+325+

try {

326+

const childScript = [

327+

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

328+

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

329+

].join("");

330+

const parentScript = [

331+

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

332+

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

333+

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

334+

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

335+

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

336+

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

337+

].join("");

338+339+

const resultPromise = runKnipUnusedFiles({

340+

env: { ...process.env, OPENCLAW_TEST_CHILD_PID: childPidPath },

341+

killGraceMs: 50,

342+

spawnCommand(_command: string, _args: string[], options: unknown) {

343+

return spawn(process.execPath, ["-e", parentScript], {

344+

...(options as Parameters<typeof spawn>[2]),

345+

env: { ...process.env, OPENCLAW_TEST_CHILD_PID: childPidPath },

346+

});

347+

},

348+

timeoutMs: 100,

349+

writeStatus: () => {},

350+

});

351+352+

await waitForFile(childPidPath, 2_000);

353+

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

354+

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

355+356+

await expect(resultPromise).resolves.toMatchObject({

357+

errorCode: "ETIMEDOUT",

358+

});

359+

await waitForDead(childPid, 2_000);

360+

} finally {

361+

if (childPid && isProcessAlive(childPid)) {

362+

process.kill(childPid, "SIGKILL");

363+

}

364+

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

365+

}

366+

},

367+

);

368+277369

it("keeps output delivered after process exit but before stdio close", async () => {

278370

const child = new FakeKnipProcess();

279371

const resultPromise = runKnipUnusedFiles({

@@ -300,6 +392,9 @@ src/a.ts: src/a.ts

300392

const originalKill = process.kill.bind(process);

301393

process.kill = ((pid: number, signal?: NodeJS.Signals | number) => {

302394

if (Math.abs(pid) === child.pid) {

395+

if (signal === 0) {

396+

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

397+

}

303398

finishFakeProcess(child, null, (signal as NodeJS.Signals | undefined) ?? "SIGTERM");

304399

return true;

305400

}