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

推荐订阅源

S
SegmentFault 最新的问题
J
Java Code Geeks
V
V2EX
Blog — PlanetScale
Blog — PlanetScale
博客园 - 司徒正美
Hugging Face - Blog
Hugging Face - Blog
F
Fortinet All Blogs
aimingoo的专栏
aimingoo的专栏
B
Blog
A
About on SuperTechFans
有赞技术团队
有赞技术团队
月光博客
月光博客
Microsoft Azure Blog
Microsoft Azure Blog
阮一峰的网络日志
阮一峰的网络日志
腾讯CDC
美团技术团队
大猫的无限游戏
大猫的无限游戏
爱范儿
爱范儿
N
Netflix TechBlog - Medium
C
Check Point Blog
Recent Announcements
Recent Announcements
博客园 - Franky
博客园 - 叶小钗
T
Tailwind CSS 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(cron): release cancelled embedded lanes · openclaw/op...
vincentkoc · 2026-06-19 · via Recent Commits to openclaw:main

@@ -187,6 +187,206 @@ describe("post-compaction loop guard wired into runEmbeddedAgent", () => {

187187

expect(attemptSignalReason).toBeInstanceOf(PostCompactionLoopPersistedError);

188188

});

189189190+

it("releases the lane after a post-compaction abort when the backend ignores cancellation", async () => {

191+

vi.useFakeTimers();

192+

let settleIgnoredAttempt: ((value: ReturnType<typeof makeAttemptResult>) => void) | undefined;

193+

let resolveAttemptAborted: (() => void) | undefined;

194+

const attemptAbortedPromise = new Promise<void>((resolve) => {

195+

resolveAttemptAborted = resolve;

196+

});

197+

try {

198+

const overflowError = makeOverflowError();

199+

let attemptAborted = false;

200+

mockedRunEmbeddedAttempt.mockResolvedValueOnce(

201+

makeAttemptResult({ promptError: overflowError }),

202+

);

203+

mockedRunEmbeddedAttempt.mockImplementationOnce(async (attemptParams: unknown) => {

204+

const { abortSignal, onToolOutcome } = attemptParams as {

205+

abortSignal?: AbortSignal;

206+

onToolOutcome?: ToolOutcomeObserver;

207+

};

208+

for (let i = 0; i < 3; i += 1) {

209+

await executeWrappedToolOutcome(

210+

"gateway",

211+

{ action: "lookup", path: "x" },

212+

"identical-result",

213+

onToolOutcome,

214+

);

215+

}

216+

attemptAborted = abortSignal?.aborted ?? false;

217+

resolveAttemptAborted?.();

218+

return await new Promise((resolve) => {

219+

settleIgnoredAttempt = resolve;

220+

});

221+

});

222+

mockedCompactDirect.mockResolvedValueOnce(

223+

makeCompactionSuccess({

224+

summary: "Compacted session",

225+

firstKeptEntryId: "entry-5",

226+

tokensBefore: 150000,

227+

}),

228+

);

229+230+

const run = runEmbeddedAgent({

231+

...baseParams,

232+

runId: "run-post-compaction-abort-lane-release",

233+

timeoutMs: 48 * 60 * 60 * 1000,

234+

});

235+

let settled = false;

236+

void run

237+

.finally(() => {

238+

settled = true;

239+

})

240+

.catch(() => {});

241+242+

await attemptAbortedPromise;

243+

expect(attemptAborted).toBe(true);

244+

await vi.advanceTimersByTimeAsync(30_001);

245+246+

expect(settled).toBe(true);

247+

await expect(run).rejects.toMatchObject({ name: "CommandLaneTaskTimeoutError" });

248+

} finally {

249+

settleIgnoredAttempt?.(makeAttemptResult());

250+

vi.useRealTimers();

251+

}

252+

});

253+254+

it("keeps a native lane alive while a tool is still running", async () => {

255+

vi.useFakeTimers();

256+

let settleAttempt: ((value: ReturnType<typeof makeAttemptResult>) => void) | undefined;

257+

let resolveAttemptStarted: (() => void) | undefined;

258+

const attemptStarted = new Promise<void>((resolve) => {

259+

resolveAttemptStarted = resolve;

260+

});

261+

try {

262+

mockedRunEmbeddedAttempt.mockImplementationOnce(async (attemptParams: unknown) => {

263+

const { onAttemptTimeoutArmed } = attemptParams as {

264+

onAttemptTimeoutArmed?: () => void;

265+

};

266+

resolveAttemptStarted?.();

267+

onAttemptTimeoutArmed?.();

268+

return await new Promise((resolve) => {

269+

settleAttempt = resolve;

270+

});

271+

});

272+273+

const run = runEmbeddedAgent({

274+

...baseParams,

275+

runId: "run-native-tool-heartbeat",

276+

timeoutMs: 1,

277+

agentHarnessRuntimeOverride: "openclaw",

278+

});

279+

let settled = false;

280+

void run

281+

.finally(() => {

282+

settled = true;

283+

})

284+

.catch(() => {});

285+286+

await vi.advanceTimersByTimeAsync(0);

287+

await attemptStarted;

288+

await vi.advanceTimersByTimeAsync(30_001);

289+290+

expect(settled).toBe(false);

291+

settleAttempt?.(makeAttemptResult());

292+

await expect(run).resolves.toMatchObject({ meta: { aborted: false } });

293+

} finally {

294+

vi.useRealTimers();

295+

}

296+

});

297+298+

it("releases a native lane when a timed-out attempt ignores cancellation", async () => {

299+

vi.useFakeTimers();

300+

let settleAttempt: ((value: ReturnType<typeof makeAttemptResult>) => void) | undefined;

301+

let resolveAttemptStarted: (() => void) | undefined;

302+

const attemptStarted = new Promise<void>((resolve) => {

303+

resolveAttemptStarted = resolve;

304+

});

305+

try {

306+

mockedRunEmbeddedAttempt.mockImplementationOnce(async (attemptParams: unknown) => {

307+

const { onAttemptTimeoutArmed, onAttemptTimeout } = attemptParams as {

308+

onAttemptTimeoutArmed?: () => void;

309+

onAttemptTimeout?: (reason: Error) => void;

310+

};

311+

resolveAttemptStarted?.();

312+

onAttemptTimeoutArmed?.();

313+

onAttemptTimeout?.(new Error("attempt timed out"));

314+

return await new Promise((resolve) => {

315+

settleAttempt = resolve;

316+

});

317+

});

318+319+

const run = runEmbeddedAgent({

320+

...baseParams,

321+

runId: "run-native-timeout-lane-release",

322+

timeoutMs: 48 * 60 * 60 * 1000,

323+

agentHarnessRuntimeOverride: "openclaw",

324+

});

325+

let settled = false;

326+

void run

327+

.finally(() => {

328+

settled = true;

329+

})

330+

.catch(() => {});

331+332+

await vi.advanceTimersByTimeAsync(0);

333+

await attemptStarted;

334+

await vi.advanceTimersByTimeAsync(30_001);

335+336+

expect(settled).toBe(true);

337+

await expect(run).rejects.toMatchObject({ name: "CommandLaneTaskTimeoutError" });

338+

} finally {

339+

settleAttempt?.(makeAttemptResult());

340+

vi.useRealTimers();

341+

}

342+

});

343+344+

it("releases a native lane when an explicit abort ignores cancellation", async () => {

345+

vi.useFakeTimers();

346+

let settleAttempt: ((value: ReturnType<typeof makeAttemptResult>) => void) | undefined;

347+

let resolveAttemptStarted: (() => void) | undefined;

348+

const attemptStarted = new Promise<void>((resolve) => {

349+

resolveAttemptStarted = resolve;

350+

});

351+

try {

352+

mockedRunEmbeddedAttempt.mockImplementationOnce(async (attemptParams: unknown) => {

353+

const { onAttemptTimeoutArmed, onAttemptAbort } = attemptParams as {

354+

onAttemptTimeoutArmed?: () => void;

355+

onAttemptAbort?: () => void;

356+

};

357+

resolveAttemptStarted?.();

358+

onAttemptTimeoutArmed?.();

359+

onAttemptAbort?.();

360+

return await new Promise((resolve) => {

361+

settleAttempt = resolve;

362+

});

363+

});

364+365+

const run = runEmbeddedAgent({

366+

...baseParams,

367+

runId: "run-native-abort-lane-release",

368+

timeoutMs: 48 * 60 * 60 * 1000,

369+

agentHarnessRuntimeOverride: "openclaw",

370+

});

371+

let settled = false;

372+

void run

373+

.finally(() => {

374+

settled = true;

375+

})

376+

.catch(() => {});

377+378+

await vi.advanceTimersByTimeAsync(0);

379+

await attemptStarted;

380+

await vi.advanceTimersByTimeAsync(30_001);

381+382+

expect(settled).toBe(true);

383+

await expect(run).rejects.toMatchObject({ name: "CommandLaneTaskTimeoutError" });

384+

} finally {

385+

settleAttempt?.(makeAttemptResult());

386+

vi.useRealTimers();

387+

}

388+

});

389+190390

it("does not abort when the result hash changes across post-compaction attempts (progress was made)", async () => {

191391

const overflowError = makeOverflowError();

192392

// Attempt 1: overflow → triggers compaction.