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

推荐订阅源

美团技术团队
Microsoft Azure Blog
Microsoft Azure Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog
Y
Y Combinator Blog
博客园_首页
有赞技术团队
有赞技术团队
博客园 - Franky
腾讯CDC
G
Google Developers Blog
Recent Announcements
Recent Announcements
博客园 - 【当耐特】
D
Docker
The GitHub Blog
The GitHub Blog
MyScale Blog
MyScale Blog
H
Help Net Security
Apple Machine Learning Research
Apple Machine Learning Research
A
About on SuperTechFans
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss
V
V2EX
U
Unit 42
aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学

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
test: tighten subagent orphan recovery assertions · openc...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -99,6 +99,21 @@ function getResumeMessage() {

9999

return params.message as string;

100100

}

101101102+

function firstCallParam(calls: ReadonlyArray<readonly unknown[]>, label: string) {

103+

const call = calls[0];

104+

if (call === undefined) {

105+

throw new Error(`expected ${label} call`);

106+

}

107+

return call[0];

108+

}

109+110+

function requireRecord(value: unknown, label: string): Record<string, unknown> {

111+

if (value === null || typeof value !== "object" || Array.isArray(value)) {

112+

throw new Error(`expected ${label} to be a record`);

113+

}

114+

return value as Record<string, unknown>;

115+

}

116+102117

describe("subagent-orphan-recovery", () => {

103118

beforeEach(() => {

104119

vi.useFakeTimers();

@@ -142,13 +157,17 @@ describe("subagent-orphan-recovery", () => {

142157

expect(params.sessionKey).toBe("agent:main:subagent:test-session-1");

143158

expect(params.message).toContain("gateway reload");

144159

expect(params.message).toContain("Test task: implement feature X");

145-

expect(subagentRegistrySteerRuntime.replaceSubagentRunAfterSteer).toHaveBeenCalledWith(

146-

expect.objectContaining({

147-

previousRunId: "run-1",

148-

nextRunId: "test-run-id",

149-

fallback: run,

150-

}),

160+

expect(subagentRegistrySteerRuntime.replaceSubagentRunAfterSteer).toHaveBeenCalledOnce();

161+

const replaceParams = requireRecord(

162+

firstCallParam(

163+

vi.mocked(subagentRegistrySteerRuntime.replaceSubagentRunAfterSteer).mock.calls,

164+

"run replacement",

165+

),

166+

"run replacement params",

151167

);

168+

expect(replaceParams.previousRunId).toBe("run-1");

169+

expect(replaceParams.nextRunId).toBe("test-run-id");

170+

expect(replaceParams.fallback).toBe(run);

152171

});

153172154173

it("skips sessions that are not aborted", async () => {

@@ -281,13 +300,11 @@ describe("subagent-orphan-recovery", () => {

281300282301

expect(result.recovered).toBe(0);

283302

expect(result.failed).toBe(1);

284-

expect(result.failedRuns).toEqual([

285-

expect.objectContaining({

286-

runId: "run-1",

287-

childSessionKey: "agent:main:subagent:test-session-1",

288-

error: "gateway unavailable",

289-

}),

290-

]);

303+

expect(result.failedRuns).toHaveLength(1);

304+

const failedRun = requireRecord(result.failedRuns[0], "failed run");

305+

expect(failedRun.runId).toBe("run-1");

306+

expect(failedRun.childSessionKey).toBe("agent:main:subagent:test-session-1");

307+

expect(failedRun.error).toBe("gateway unavailable");

291308292309

// abortedLastRun flag should NOT be cleared on failure,

293310

// so the next restart can retry the recovery

@@ -361,14 +378,15 @@ describe("subagent-orphan-recovery", () => {

361378

},

362379

};

363380

await updater(mockStore);

364-

expect(mockStore["agent:main:subagent:test-session-1"]).toMatchObject({

365-

abortedLastRun: false,

366-

subagentRecovery: {

367-

automaticAttempts: 1,

368-

lastRunId: "run-1",

369-

lastAttemptAt: expect.any(Number),

370-

},

371-

});

381+

const sessionEntry = requireRecord(

382+

mockStore["agent:main:subagent:test-session-1"],

383+

"updated session entry",

384+

);

385+

expect(sessionEntry.abortedLastRun).toBe(false);

386+

const recovery = requireRecord(sessionEntry.subagentRecovery, "subagent recovery");

387+

expect(recovery.automaticAttempts).toBe(1);

388+

expect(recovery.lastRunId).toBe("run-1");

389+

expect(recovery.lastAttemptAt).toBeTypeOf("number");

372390

});

373391374392

it("tombstones rapid repeated accepted recovery before resuming again", async () => {

@@ -385,18 +403,14 @@ describe("subagent-orphan-recovery", () => {

385403

getActiveRuns: () => createActiveRuns(createTestRunRecord()),

386404

});

387405388-

expect(result).toMatchObject({

389-

recovered: 0,

390-

failed: 0,

391-

skipped: 1,

392-

failedRuns: [

393-

expect.objectContaining({

394-

runId: "run-1",

395-

childSessionKey: "agent:main:subagent:test-session-1",

396-

error: expect.stringContaining("recovery blocked after 2 rapid accepted resume attempts"),

397-

}),

398-

],

399-

});

406+

expect(result.recovered).toBe(0);

407+

expect(result.failed).toBe(0);

408+

expect(result.skipped).toBe(1);

409+

expect(result.failedRuns).toHaveLength(1);

410+

const blockedRun = requireRecord(result.failedRuns[0], "blocked run");

411+

expect(blockedRun.runId).toBe("run-1");

412+

expect(blockedRun.childSessionKey).toBe("agent:main:subagent:test-session-1");

413+

expect(blockedRun.error).toContain("recovery blocked after 2 rapid accepted resume attempts");

400414

expect(gateway.callGateway).not.toHaveBeenCalled();

401415

expect(sessions.updateSessionStore).toHaveBeenCalledOnce();

402416

@@ -414,15 +428,16 @@ describe("subagent-orphan-recovery", () => {

414428

},

415429

};

416430

await updater(mockStore);

417-

expect(mockStore["agent:main:subagent:test-session-1"]).toMatchObject({

418-

abortedLastRun: false,

419-

subagentRecovery: {

420-

automaticAttempts: 2,

421-

lastRunId: "run-1",

422-

wedgedAt: expect.any(Number),

423-

wedgedReason: expect.stringContaining("recovery blocked"),

424-

},

425-

});

431+

const sessionEntry = requireRecord(

432+

mockStore["agent:main:subagent:test-session-1"],

433+

"wedged session entry",

434+

);

435+

expect(sessionEntry.abortedLastRun).toBe(false);

436+

const recovery = requireRecord(sessionEntry.subagentRecovery, "wedged recovery");

437+

expect(recovery.automaticAttempts).toBe(2);

438+

expect(recovery.lastRunId).toBe("run-1");

439+

expect(recovery.wedgedAt).toBeTypeOf("number");

440+

expect(recovery.wedgedReason).toContain("recovery blocked");

426441

});

427442428443

it("skips already tombstoned wedged sessions without rewriting them", async () => {

@@ -513,12 +528,15 @@ describe("subagent-orphan-recovery", () => {

513528

});

514529515530

expect(announceDelivery.deliverSubagentAnnouncement).toHaveBeenCalledOnce();

516-

expect(announceDelivery.deliverSubagentAnnouncement).toHaveBeenCalledWith(

517-

expect.objectContaining({

518-

requesterSessionKey: "agent:main:quietchat:direct:+1234567890",

519-

triggerMessage: expect.stringContaining("Automatic recovery is already in progress"),

520-

}),

531+

const announcement = requireRecord(

532+

firstCallParam(

533+

vi.mocked(announceDelivery.deliverSubagentAnnouncement).mock.calls,

534+

"recovery announcement",

535+

),

536+

"recovery announcement params",

521537

);

538+

expect(announcement.requesterSessionKey).toBe("agent:main:quietchat:direct:+1234567890");

539+

expect(announcement.triggerMessage).toContain("Automatic recovery is already in progress");

522540

expect(notifiedRecoverySessionKeys).toEqual(new Set(["agent:main:subagent:test-session-1"]));

523541524542

await recoverOrphanedSubagentSessions({

@@ -615,17 +633,17 @@ describe("subagent-orphan-recovery", () => {

615633

await vi.advanceTimersByTimeAsync(2);

616634

await Promise.resolve();

617635618-

expect(subagentRegistrySteerRuntime.finalizeInterruptedSubagentRun).toHaveBeenCalledWith(

619-

expect.objectContaining({

620-

runId: "run-1",

621-

childSessionKey: "agent:main:subagent:test-session-1",

622-

error: expect.stringContaining("Automatic recovery failed after 2 attempts"),

623-

}),

624-

);

625-

expect(subagentRegistrySteerRuntime.finalizeInterruptedSubagentRun).toHaveBeenCalledWith(

626-

expect.objectContaining({

627-

error: expect.stringContaining("service restart"),

628-

}),

636+

expect(subagentRegistrySteerRuntime.finalizeInterruptedSubagentRun).toHaveBeenCalledOnce();

637+

const finalizeParams = requireRecord(

638+

firstCallParam(

639+

vi.mocked(subagentRegistrySteerRuntime.finalizeInterruptedSubagentRun).mock.calls,

640+

"interrupted run finalization",

641+

),

642+

"interrupted run finalization params",

629643

);

644+

expect(finalizeParams.runId).toBe("run-1");

645+

expect(finalizeParams.childSessionKey).toBe("agent:main:subagent:test-session-1");

646+

expect(finalizeParams.error).toContain("Automatic recovery failed after 2 attempts");

647+

expect(finalizeParams.error).toContain("service restart");

630648

});

631649

});