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

推荐订阅源

D
Docker
IT之家
IT之家
Microsoft Security Blog
Microsoft Security Blog
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
P
Proofpoint News Feed
D
DataBreaches.Net
B
Blog RSS Feed
博客园_首页
The GitHub Blog
The GitHub Blog
I
InfoQ
L
LangChain Blog
G
Google Developers Blog
M
MIT News - Artificial intelligence
美团技术团队
腾讯CDC
V
Visual Studio Blog
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Apple Machine Learning Research
Apple Machine Learning Research
A
About on SuperTechFans
博客园 - 三生石上(FineUI控件)
博客园 - 叶小钗

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): kill timed kitchen rpc command groups · opencla...
vincentkoc · 2026-05-27 · via Recent Commits to openclaw:main

@@ -1,6 +1,7 @@

1-

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

1+

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

22

import { tmpdir } from "node:os";

33

import path from "node:path";

4+

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

45

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

56

import {

67

appendBoundedOutput,

@@ -10,12 +11,15 @@ import {

1011

fetchJson,

1112

findDistCallGatewayModuleFiles,

1213

makeEnv,

14+

runCommand,

1315

sampleProcess,

1416

sampleWindowsProcessByPort,

1517

summarizeProcessSamples,

1618

usesBuiltOpenClawEntry,

1719

} from "../../scripts/e2e/kitchen-sink-rpc-walk.mjs";

182021+

const posixIt = process.platform === "win32" ? it.skip : it;

22+1923

describe("kitchen-sink RPC isolated state", () => {

2024

it("cleans up the generated temporary home tree", async () => {

2125

const { root, env } = makeEnv();

@@ -42,6 +46,52 @@ describe("kitchen-sink RPC command output capture", () => {

4246

const second = appendBoundedOutput(first, "ghij", 5);

4347

expect(second).toEqual({ text: "fghij", truncatedChars: 5 });

4448

});

49+50+

posixIt("kills timed command process groups", async () => {

51+

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

52+

const scriptPath = path.join(root, "trap-term.mjs");

53+

const grandchildPidPath = path.join(root, "grandchild.pid");

54+

let grandchildPid = 0;

55+56+

writeFileSync(

57+

scriptPath,

58+

`

59+

import { spawn } from "node:child_process";

60+

import fs from "node:fs";

61+62+

const grandchild = spawn(process.execPath, [

63+

"-e",

64+

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

65+

], { stdio: "ignore" });

66+

fs.writeFileSync(process.argv[2], String(grandchild.pid));

67+

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

68+

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

69+

`,

70+

"utf8",

71+

);

72+73+

const runPromise = runCommand(process.execPath, [scriptPath, grandchildPidPath], {

74+

detached: undefined,

75+

timeoutKillGraceMs: 50,

76+

timeoutMs: 2000,

77+

});

78+79+

try {

80+

await waitFor(() => existsSync(grandchildPidPath));

81+

grandchildPid = Number.parseInt(readText(grandchildPidPath), 10);

82+

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

83+

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

84+85+

await expect(runPromise).rejects.toThrow("timed out after 2000ms");

86+

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

87+

} finally {

88+

await runPromise.catch(() => {});

89+

if (grandchildPid && isProcessAlive(grandchildPid)) {

90+

process.kill(grandchildPid, "SIGKILL");

91+

}

92+

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

93+

}

94+

});

4595

});

46964797

describe("kitchen-sink RPC caller loading", () => {

@@ -324,3 +374,26 @@ describe("kitchen-sink RPC process sampling", () => {

324374

expect(() => assertResourceCeiling(null)).toThrow("gateway RSS sample was not captured");

325375

});

326376

});

377+378+

function readText(file: string) {

379+

return readFileSync(file, "utf8");

380+

}

381+382+

async function waitFor(condition: () => boolean, timeoutMs = 3_000) {

383+

const startedAt = Date.now();

384+

while (!condition()) {

385+

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

386+

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

387+

}

388+

await delay(25);

389+

}

390+

}

391+392+

function isProcessAlive(pid: number) {

393+

try {

394+

process.kill(pid, 0);

395+

return true;

396+

} catch {

397+

return false;

398+

}

399+

}