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

推荐订阅源

腾讯CDC
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 叶小钗
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
The Cloudflare Blog
爱范儿
爱范儿
阮一峰的网络日志
阮一峰的网络日志
WordPress大学
WordPress大学
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
Last Week in AI
Last Week in AI
Jina AI
Jina AI
V
V2EX
罗磊的独立博客
V
Visual Studio Blog
A
About on SuperTechFans
IT之家
IT之家
P
Proofpoint News Feed
B
Blog
博客园 - Franky
Blog — PlanetScale
Blog — PlanetScale
Google DeepMind News
Google DeepMind News
Y
Y Combinator 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): preserve host command timeout grace · openclaw/...
vincentkoc · 2026-06-20 · via Recent Commits to openclaw:main

@@ -15,7 +15,7 @@ import { tmpdir } from "node:os";

1515

import { basename, delimiter, join, win32 } from "node:path";

1616

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

1717

import { pathToFileURL } from "node:url";

18-

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

18+

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

1919

import {

2020

extractLastOpenClawVersionFromLog,

2121

modelProviderConfigBatchJson,

@@ -50,6 +50,7 @@ import {

5050

import { parseArgs as parseWindowsSmokeArgs } from "../../scripts/e2e/parallels/windows-smoke.ts";

5151

import { withEnv } from "../../src/test-utils/env.js";

5252

import { spawnNodeEvalSync } from "../../src/test-utils/node-process.js";

53+

import { cleanupTempDirs, makeTempDir } from "../helpers/temp-dir.js";

53545455

const WRAPPERS = {

5556

linux: "scripts/e2e/parallels-linux-smoke.sh",

@@ -82,6 +83,11 @@ const TS_PATHS = {

8283

};

83848485

const OS_TS_PATHS = [TS_PATHS.linux, TS_PATHS.macos, TS_PATHS.windows];

86+

const tempDirs: string[] = [];

87+88+

afterEach(() => {

89+

cleanupTempDirs(tempDirs);

90+

});

85918692

function countNonEmptyLines(value: string): number {

8793

let count = 0;

@@ -1300,28 +1306,50 @@ if (isPrlctl) {

13001306

expect(result.stdout).toBeTypeOf("string");

13011307

});

130213081303-

it("does not wait for host commands that trap SIGTERM after a timeout", () => {

1304-

const startedAt = Date.now();

1305-

const result = run(

1306-

process.execPath,

1307-

[

1308-

"-e",

1309-

[

1310-

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

1311-

"setTimeout(() => process.exit(77), 700);",

1312-

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

1313-

].join(""),

1314-

],

1315-

{

1316-

check: false,

1317-

quiet: true,

1318-

timeoutMs: 50,

1319-

},

1320-

);

1309+

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

1310+

"lets timed host command descendants drain before force kill",

1311+

() => {

1312+

const tempDir = makeTempDir(tempDirs, "openclaw-parallels-host-command-drain-");

1313+

const readyFile = join(tempDir, "ready");

1314+

const drainFile = join(tempDir, "drained");

1315+

const descendantScript = [

1316+

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

1317+

"writeFileSync(process.env.READY_FILE, 'ready');",

1318+

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

1319+

" setTimeout(() => {",

1320+

" writeFileSync(process.env.DRAIN_FILE, 'drained');",

1321+

" process.exit(0);",

1322+

" }, 25);",

1323+

"});",

1324+

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

1325+

].join("\n");

1326+

const parentScript = [

1327+

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

1328+

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

1329+

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

1330+

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

1331+

].join("\n");

132113321322-

expect(result.status).toBe(124);

1323-

expect(Date.now() - startedAt).toBeLessThan(500);

1324-

});

1333+

try {

1334+

const result = run(process.execPath, ["-e", parentScript], {

1335+

check: false,

1336+

env: {

1337+

...process.env,

1338+

DRAIN_FILE: drainFile,

1339+

READY_FILE: readyFile,

1340+

},

1341+

quiet: true,

1342+

timeoutMs: 1_000,

1343+

});

1344+1345+

expect(result.status).toBe(124);

1346+

expect(existsSync(readyFile)).toBe(true);

1347+

expect(readFileSync(drainFile, "utf8")).toBe("drained");

1348+

} finally {

1349+

cleanupTempDirs(tempDirs);

1350+

}

1351+

},

1352+

);

1325135313261354

it.runIf(process.platform !== "win32")("throws checked timed host command timeouts", () => {

13271355

expect(() =>

@@ -1424,6 +1452,52 @@ setInterval(() => {}, 1000);

14241452

}

14251453

});

142614541455+

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

1456+

"lets timed streaming host command descendants drain before force kill",

1457+

async () => {

1458+

const tempDir = makeTempDir(tempDirs, "openclaw-parallels-streaming-host-command-drain-");

1459+

const readyFile = join(tempDir, "ready");

1460+

const drainFile = join(tempDir, "drained");

1461+

const logPath = join(tempDir, "stream.log");

1462+

const descendantScript = [

1463+

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

1464+

"writeFileSync(process.env.READY_FILE, 'ready');",

1465+

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

1466+

" setTimeout(() => {",

1467+

" writeFileSync(process.env.DRAIN_FILE, 'drained');",

1468+

" process.exit(0);",

1469+

" }, 50);",

1470+

"});",

1471+

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

1472+

].join("\n");

1473+

const parentScript = [

1474+

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

1475+

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

1476+

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

1477+

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

1478+

].join("\n");

1479+1480+

try {

1481+

const statusPromise = runStreaming(process.execPath, ["-e", parentScript], {

1482+

env: {

1483+

...process.env,

1484+

DRAIN_FILE: drainFile,

1485+

READY_FILE: readyFile,

1486+

},

1487+

logPath,

1488+

quiet: true,

1489+

timeoutMs: 500,

1490+

});

1491+1492+

await waitFor(() => existsSync(readyFile), 2_000);

1493+

await expect(statusPromise).resolves.toBe(124);

1494+

expect(readFileSync(drainFile, "utf8")).toBe("drained");

1495+

} finally {

1496+

cleanupTempDirs(tempDirs);

1497+

}

1498+

},

1499+

);

1500+14271501

it("streams host command logs instead of retaining them in memory", async () => {

14281502

const source = readFileSync(TS_PATHS.hostCommand, "utf8");

14291503

const runStreamingBlock = source.slice(source.indexOf("export async function runStreaming"));