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

推荐订阅源

小众软件
小众软件
博客园 - Franky
罗磊的独立博客
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
P
Proofpoint News Feed
Recent Announcements
Recent Announcements
V
V2EX
F
Fortinet All Blogs
阮一峰的网络日志
阮一峰的网络日志
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
U
Unit 42
GbyAI
GbyAI
A
About on SuperTechFans
WordPress大学
WordPress大学
Engineering at Meta
Engineering at Meta
雷峰网
雷峰网
Microsoft Azure Blog
Microsoft Azure Blog
Martin Fowler
Martin Fowler
D
DataBreaches.Net
The Cloudflare Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
MongoDB | Blog
MongoDB | 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
test: tighten subagent persistence assertions · openclaw/...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -46,6 +46,15 @@ vi.mock("./subagent-orphan-recovery.js", () => ({

4646

scheduleOrphanRecovery: vi.fn(),

4747

}));

484849+

function expectFields(value: unknown, expected: Record<string, unknown>): void {

50+

expect(value).toBeTypeOf("object");

51+

expect(value).not.toBeNull();

52+

const record = value as Record<string, unknown>;

53+

for (const [key, expectedValue] of Object.entries(expected)) {

54+

expect(record[key], key).toEqual(expectedValue);

55+

}

56+

}

57+4958

describe("subagent registry persistence", () => {

5059

const envSnapshot = captureEnv(["OPENCLAW_STATE_DIR"]);

5160

let tempStateDir: string | null = null;

@@ -288,11 +297,13 @@ describe("subagent registry persistence", () => {

288297289298

// announce should NOT be called since cleanupHandled was true

290299

const calls = (announceSpy.mock.calls as unknown as Array<[unknown]>).map((call) => call[0]);

291-

expect(calls).not.toContainEqual(

292-

expect.objectContaining({

293-

childSessionKey: "agent:main:subagent:two",

294-

}),

295-

);

300+

expect(

301+

calls.some(

302+

(call) =>

303+

(call as { childSessionKey?: unknown } | undefined)?.childSessionKey ===

304+

"agent:main:subagent:two",

305+

),

306+

).toBe(false);

296307

});

297308298309

it("maps legacy announce fields into cleanup state", async () => {

@@ -366,10 +377,8 @@ describe("subagent registry persistence", () => {

366377

}

367378

const second = loadSubagentRegistryFromDisk();

368379369-

expect(second.get("run-cached")).toMatchObject({

370-

requesterOrigin: { accountId: "cached-account" },

371-

outcome: { status: "ok" },

372-

});

380+

expectFields(second.get("run-cached")?.requesterOrigin, { accountId: "cached-account" });

381+

expectFields(second.get("run-cached")?.outcome, { status: "ok" });

373382

expect(second.get("run-cached")?.endedAt).toBeUndefined();

374383

expect(second.get("run-cached")?.cleanupHandled).toBeUndefined();

375384

@@ -428,20 +437,18 @@ describe("subagent registry persistence", () => {

428437429438

const restored = loadSubagentRegistryFromDisk();

430439

const restoredEntry = restored.get("run-spaced");

431-

expect(restoredEntry).toMatchObject({

440+

expectFields(restoredEntry, {

432441

childSessionKey: "agent:main:subagent:spaced-child",

433442

controllerSessionKey: "agent:main:subagent:controller",

434443

requesterSessionKey: "agent:main:main",

435444

});

436445437446

resetSubagentRegistryForTests({ persist: false });

438447

addSubagentRunForTests(restoredEntry as never);

439-

expect(listSubagentRunsForRequester("agent:main:main")).toEqual([

440-

expect.objectContaining({

441-

runId: "run-spaced",

442-

}),

443-

]);

444-

expect(getSubagentRunByChildSessionKey("agent:main:subagent:spaced-child")).toMatchObject({

448+

const restoredRuns = listSubagentRunsForRequester("agent:main:main");

449+

expect(restoredRuns).toHaveLength(1);

450+

expectFields(restoredRuns[0], { runId: "run-spaced" });

451+

expectFields(getSubagentRunByChildSessionKey("agent:main:subagent:spaced-child"), {

445452

runId: "run-spaced",

446453

});

447454

@@ -463,15 +470,15 @@ describe("subagent registry persistence", () => {

463470

cleanup: "keep",

464471

});

465472466-

expect(listSubagentRunsForRequester("agent:main:main")).toEqual([

467-

expect.objectContaining({

468-

runId: "run-live",

469-

childSessionKey: "agent:main:subagent:live-child",

470-

controllerSessionKey: "agent:main:subagent:live-controller",

471-

requesterSessionKey: "agent:main:main",

472-

}),

473-

]);

474-

expect(getSubagentRunByChildSessionKey("agent:main:subagent:live-child")).toMatchObject({

473+

const liveRuns = listSubagentRunsForRequester("agent:main:main");

474+

expect(liveRuns).toHaveLength(1);

475+

expectFields(liveRuns[0], {

476+

runId: "run-live",

477+

childSessionKey: "agent:main:subagent:live-child",

478+

controllerSessionKey: "agent:main:subagent:live-controller",

479+

requesterSessionKey: "agent:main:main",

480+

});

481+

expectFields(getSubagentRunByChildSessionKey("agent:main:subagent:live-child"), {

475482

runId: "run-live",

476483

});

477484

});

@@ -672,9 +679,11 @@ describe("subagent registry persistence", () => {

672679673680

it("keeps stale unended restored runs with abortedLastRun for restart recovery", async () => {

674681

vi.mocked(callGateway).mockImplementationOnce(async (request) => {

675-

expect(request).toMatchObject({

682+

expectFields(request, {

676683

method: "agent.wait",

677-

params: { runId: "run-stale-aborted-restore" },

684+

});

685+

expectFields((request as { params?: unknown }).params, {

686+

runId: "run-stale-aborted-restore",

678687

});

679688

return {

680689

status: "pending",

@@ -711,12 +720,10 @@ describe("subagent registry persistence", () => {

711720

restartRegistry();

712721

await waitForRegistryWork(() => vi.mocked(callGateway).mock.calls.length > 0);

713722714-

expect(callGateway).toHaveBeenCalledWith(

715-

expect.objectContaining({

716-

method: "agent.wait",

717-

params: expect.objectContaining({ runId }),

718-

}),

719-

);

723+

expect(callGateway).toHaveBeenCalledTimes(1);

724+

const [request] = vi.mocked(callGateway).mock.calls[0] ?? [];

725+

expectFields(request, { method: "agent.wait" });

726+

expectFields((request as { params?: unknown } | undefined)?.params, { runId });

720727

expect(

721728

listSubagentRunsForRequester("agent:main:main").some((entry) => entry.runId === runId),

722729

).toBe(true);

@@ -755,7 +762,7 @@ describe("subagent registry persistence", () => {

755762

}

756763

});

757764758-

await expect(fs.access(attachmentsDir)).rejects.toMatchObject({ code: "ENOENT" });

765+

await expect(fs.access(attachmentsDir)).rejects.toHaveProperty("code", "ENOENT");

759766

const after = JSON.parse(await fs.readFile(registryPath, "utf8")) as {

760767

runs?: Record<string, unknown>;

761768

};

@@ -801,7 +808,7 @@ describe("subagent registry persistence", () => {

801808

getSubagentRunByChildSessionKey(childSessionKey),

802809

);

803810804-

expect(resolved).toMatchObject({

811+

expectFields(resolved, {

805812

runId: "run-active",

806813

childSessionKey,

807814

});

@@ -847,7 +854,7 @@ describe("subagent registry persistence", () => {

847854

getLatestSubagentRunByChildSessionKey(childSessionKey),

848855

);

849856850-

expect(resolved).toMatchObject({

857+

expectFields(resolved, {

851858

runId: "run-current-ended",

852859

childSessionKey,

853860

});