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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The GitHub Blog
The GitHub Blog
J
Java Code Geeks
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
A
About on SuperTechFans
博客园 - 三生石上(FineUI控件)
罗磊的独立博客
MongoDB | Blog
MongoDB | Blog
B
Blog RSS Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Vercel News
Vercel News
腾讯CDC
博客园 - 聂微东
The Cloudflare Blog
F
Fortinet All Blogs
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Visual Studio Blog
Last Week in AI
Last Week in AI
B
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
refactor(agents): hide cleanup timeout helpers · openclaw...
vincentkoc · 2026-06-17 · via Recent Commits to openclaw:main
11

// Verifies agent cleanup steps time out with bounded diagnostic logging.

22

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

3-

import {

4-

AGENT_CLEANUP_STEP_TIMEOUT_MS,

5-

CLEANUP_TIMEOUT_DETAILS_MAX_CHARS,

6-

resolveAgentCleanupStepTimeoutMs,

7-

runAgentCleanupStep,

8-

} from "./run-cleanup-timeout.js";

3+

import { runAgentCleanupStep } from "./run-cleanup-timeout.js";

4+5+

const AGENT_CLEANUP_STEP_TIMEOUT_MS = 10_000;

6+

const CLEANUP_TIMEOUT_DETAILS_MAX_CHARS = 512;

97108

describe("agent cleanup timeout", () => {

119

const log = {

@@ -192,51 +190,98 @@ describe("agent cleanup timeout", () => {

192190

);

193191

});

194192195-

it("prefers explicit cleanup timeout values over environment overrides", () => {

196-

expect(

197-

resolveAgentCleanupStepTimeoutMs({

198-

step: "openclaw-trajectory-flush",

199-

timeoutMs: 2_000,

200-

env: {

201-

OPENCLAW_TRAJECTORY_FLUSH_TIMEOUT_MS: "25000",

202-

OPENCLAW_AGENT_CLEANUP_TIMEOUT_MS: "15000",

203-

},

204-

}),

205-

).toBe(2_000);

193+

it("prefers explicit cleanup timeout values over environment overrides", async () => {

194+

const cleanup = vi.fn(async () => new Promise<never>(() => {}));

195+196+

const result = runAgentCleanupStep({

197+

runId: "run-explicit",

198+

sessionId: "session-explicit",

199+

step: "openclaw-trajectory-flush",

200+

timeoutMs: 2_000,

201+

cleanup,

202+

log,

203+

env: {

204+

OPENCLAW_TRAJECTORY_FLUSH_TIMEOUT_MS: "25000",

205+

OPENCLAW_AGENT_CLEANUP_TIMEOUT_MS: "15000",

206+

},

207+

});

208+209+

await vi.advanceTimersByTimeAsync(1_999);

210+

expect(log.warn).not.toHaveBeenCalled();

211+212+

await vi.advanceTimersByTimeAsync(1);

213+

await expect(result).resolves.toBeUndefined();

214+215+

expect(log.warn).toHaveBeenCalledWith(

216+

"agent cleanup timed out: runId=run-explicit sessionId=session-explicit step=openclaw-trajectory-flush timeoutMs=2000",

217+

);

206218

});

207219208-

it("keeps explicit zero cleanup timeouts as a one millisecond timeout", () => {

209-

expect(

210-

resolveAgentCleanupStepTimeoutMs({

211-

step: "openclaw-trajectory-flush",

212-

timeoutMs: 0,

213-

env: {

214-

OPENCLAW_TRAJECTORY_FLUSH_TIMEOUT_MS: "25000",

215-

},

216-

}),

217-

).toBe(1);

220+

it("keeps explicit zero cleanup timeouts as a one millisecond timeout", async () => {

221+

const cleanup = vi.fn(async () => new Promise<never>(() => {}));

222+223+

const result = runAgentCleanupStep({

224+

runId: "run-zero",

225+

sessionId: "session-zero",

226+

step: "openclaw-trajectory-flush",

227+

timeoutMs: 0,

228+

cleanup,

229+

log,

230+

env: {

231+

OPENCLAW_TRAJECTORY_FLUSH_TIMEOUT_MS: "25000",

232+

},

233+

});

234+235+

await vi.advanceTimersByTimeAsync(1);

236+

await expect(result).resolves.toBeUndefined();

237+238+

expect(log.warn).toHaveBeenCalledWith(

239+

"agent cleanup timed out: runId=run-zero sessionId=session-zero step=openclaw-trajectory-flush timeoutMs=1",

240+

);

218241

});

219242220-

it("ignores invalid cleanup timeout environment values", () => {

221-

expect(

222-

resolveAgentCleanupStepTimeoutMs({

223-

step: "openclaw-trajectory-flush",

224-

env: {

225-

OPENCLAW_TRAJECTORY_FLUSH_TIMEOUT_MS: "0",

226-

OPENCLAW_AGENT_CLEANUP_TIMEOUT_MS: "not-a-number",

227-

},

228-

}),

229-

).toBe(AGENT_CLEANUP_STEP_TIMEOUT_MS);

230-

expect(

231-

resolveAgentCleanupStepTimeoutMs({

243+

it.each([

244+

{

245+

runId: "run-invalid-env-number",

246+

sessionId: "session-invalid-env-number",

247+

env: {

248+

OPENCLAW_TRAJECTORY_FLUSH_TIMEOUT_MS: "0",

249+

OPENCLAW_AGENT_CLEANUP_TIMEOUT_MS: "not-a-number",

250+

},

251+

},

252+

{

253+

runId: "run-invalid-env-format",

254+

sessionId: "session-invalid-env-format",

255+

env: {

256+

OPENCLAW_TRAJECTORY_FLUSH_TIMEOUT_MS: "1e3",

257+

OPENCLAW_AGENT_CLEANUP_TIMEOUT_MS: "0x10",

258+

},

259+

},

260+

])(

261+

"ignores invalid cleanup timeout environment values",

262+

async ({ runId, sessionId, env }) => {

263+

const cleanup = vi.fn(async () => new Promise<never>(() => {}));

264+265+

const result = runAgentCleanupStep({

266+

runId,

267+

sessionId,

232268

step: "openclaw-trajectory-flush",

233-

env: {

234-

OPENCLAW_TRAJECTORY_FLUSH_TIMEOUT_MS: "1e3",

235-

OPENCLAW_AGENT_CLEANUP_TIMEOUT_MS: "0x10",

236-

},

237-

}),

238-

).toBe(AGENT_CLEANUP_STEP_TIMEOUT_MS);

239-

});

269+

cleanup,

270+

log,

271+

env,

272+

});

273+274+

await vi.advanceTimersByTimeAsync(AGENT_CLEANUP_STEP_TIMEOUT_MS - 1);

275+

expect(log.warn).not.toHaveBeenCalled();

276+277+

await vi.advanceTimersByTimeAsync(1);

278+

await expect(result).resolves.toBeUndefined();

279+280+

expect(log.warn).toHaveBeenCalledWith(

281+

`agent cleanup timed out: runId=${runId} sessionId=${sessionId} step=openclaw-trajectory-flush timeoutMs=10000`,

282+

);

283+

},

284+

);

240285241286

it("logs cleanup rejection without throwing", async () => {

242287

await expect(