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

推荐订阅源

L
LangChain Blog
B
Blog RSS Feed
阮一峰的网络日志
阮一峰的网络日志
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Help Net Security
MyScale Blog
MyScale Blog
WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
小众软件
小众软件
大猫的无限游戏
大猫的无限游戏
Martin Fowler
Martin Fowler
Vercel News
Vercel News
S
SegmentFault 最新的问题
M
MIT News - Artificial intelligence
Microsoft Security Blog
Microsoft Security Blog
G
Google Developers Blog
Last Week in AI
Last Week in AI
Hugging Face - Blog
Hugging Face - Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
Google DeepMind News
Google DeepMind News
Engineering at Meta
Engineering at Meta
云风的 BLOG
云风的 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: dedupe node wake mock calls · openclaw/openclaw@c4b...
steipete · 2026-05-13 · via Recent Commits to openclaw:main

@@ -80,6 +80,12 @@ type RespondCall = [

8080

}?,

8181

];

828283+

type MockCallSource = {

84+

mock: {

85+

calls: ArrayLike<ReadonlyArray<unknown>>;

86+

};

87+

};

88+8389

type TestNodeSession = {

8490

nodeId: string;

8591

commands: string[];

@@ -112,6 +118,22 @@ function requireString(value: unknown, label: string): string {

112118

return value as string;

113119

}

114120121+

function mockCall(source: MockCallSource, callIndex = 0): ReadonlyArray<unknown> {

122+

const call = source.mock.calls[callIndex];

123+

if (!call) {

124+

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

125+

}

126+

return call;

127+

}

128+129+

function firstRespondCall(source: MockCallSource): RespondCall {

130+

return mockCall(source) as RespondCall;

131+

}

132+133+

function mockArg(source: MockCallSource, callIndex: number, argIndex: number) {

134+

return mockCall(source, callIndex)[argIndex];

135+

}

136+115137

function isLowerHex(value: string): boolean {

116138

for (let index = 0; index < value.length; index += 1) {

117139

const code = value.charCodeAt(index);

@@ -380,22 +402,22 @@ describe("node.pair.request", () => {

380402

permissions: { camera: true },

381403

}),

382404

);

383-

expect(broadcast.mock.calls.at(0)?.[0]).toBe("node.pair.resolved");

384-

expect(broadcast.mock.calls.at(0)?.[1]).toEqual({

405+

expect(mockArg(broadcast, 0, 0)).toBe("node.pair.resolved");

406+

expect(mockArg(broadcast, 0, 1)).toEqual({

385407

requestId: "req-old",

386408

nodeId: "ios-node-1",

387409

decision: "rejected",

388410

ts: expect.any(Number),

389411

});

390-

expect(broadcast.mock.calls.at(1)?.[0]).toBe("node.pair.requested");

391-

expect(broadcast.mock.calls.at(1)?.[1]).toEqual(

412+

expect(mockArg(broadcast, 1, 0)).toBe("node.pair.requested");

413+

expect(mockArg(broadcast, 1, 1)).toEqual(

392414

expect.objectContaining({

393415

requestId: "req-new",

394416

nodeId: "ios-node-1",

395417

permissions: { camera: true },

396418

}),

397419

);

398-

expect(respond.mock.calls.at(0)?.[0]).toBe(true);

420+

expect(firstRespondCall(respond)[0]).toBe(true);

399421

});

400422

});

401423

@@ -426,10 +448,10 @@ describe("node plugin surface refresh", () => {

426448

});

427449428450

expect(respond).toHaveBeenCalledTimes(1);

429-

const call = respond.mock.calls.at(0) as RespondCall | undefined;

430-

expect(call?.[0]).toBe(true);

431-

expect(call?.[2]).toBeUndefined();

432-

const payload = requireRecord(call?.[1], "refresh payload");

451+

const call = firstRespondCall(respond);

452+

expect(call[0]).toBe(true);

453+

expect(call[2]).toBeUndefined();

454+

const payload = requireRecord(call[1], "refresh payload");

433455

expect(payload.surface).toBe("canvas");

434456

expect(payload.expiresAtMs).toBe(1_100);

435457

const pluginSurfaceUrls = requireRecord(payload.pluginSurfaceUrls, "refresh surface urls");

@@ -482,10 +504,10 @@ describe("node.invoke APNs wake path", () => {

482504

};

483505484506

const respond = await invokeNode({ nodeRegistry });

485-

const call = respond.mock.calls.at(0) as RespondCall | undefined;

486-

expect(call?.[0]).toBe(false);

487-

expect(call?.[2]?.code).toBe(ErrorCodes.UNAVAILABLE);

488-

expect(call?.[2]?.message).toBe("node not connected");

507+

const call = firstRespondCall(respond);

508+

expect(call[0]).toBe(false);

509+

expect(call[2]?.code).toBe(ErrorCodes.UNAVAILABLE);

510+

expect(call[2]?.message).toBe("node not connected");

489511

expect(mocks.sendApnsBackgroundWake).not.toHaveBeenCalled();

490512

expect(nodeRegistry.invoke).not.toHaveBeenCalled();

491513

});

@@ -591,13 +613,13 @@ describe("node.invoke APNs wake path", () => {

591613592614

expect(mocks.sendApnsBackgroundWake).toHaveBeenCalledTimes(1);

593615

expect(nodeRegistry.invoke).toHaveBeenCalledTimes(1);

594-

expectRecordFields(nodeRegistry.invoke.mock.calls.at(0)?.[0], "node invoke payload", {

616+

expectRecordFields(mockArg(nodeRegistry.invoke, 0, 0), "node invoke payload", {

595617

nodeId: "ios-node-reconnect",

596618

command: "camera.capture",

597619

});

598-

const call = respond.mock.calls.at(0) as RespondCall | undefined;

599-

expect(call?.[0]).toBe(true);

600-

expectRecordFields(call?.[1], "respond payload", { ok: true, nodeId: "ios-node-reconnect" });

620+

const call = firstRespondCall(respond);

621+

expect(call[0]).toBe(true);

622+

expectRecordFields(call[1], "respond payload", { ok: true, nodeId: "ios-node-reconnect" });

601623

});

602624603625

it("broadcasts canonical Talk capture events for successful PTT node commands", async () => {

@@ -635,16 +657,12 @@ describe("node.invoke APNs wake path", () => {

635657

isWebchatConnect: () => false,

636658

});

637659638-

expect(respond.mock.calls.at(0)?.[0]).toBe(true);

639-

expect(broadcast.mock.calls.at(0)?.[0]).toBe("talk.event");

640-

const broadcastPayload = expectRecordFields(

641-

broadcast.mock.calls.at(0)?.[1],

642-

"broadcast payload",

643-

{

644-

nodeId: "android-talk-node",

645-

command: "talk.ptt.start",

646-

},

647-

);

660+

expect(firstRespondCall(respond)[0]).toBe(true);

661+

expect(mockArg(broadcast, 0, 0)).toBe("talk.event");

662+

const broadcastPayload = expectRecordFields(mockArg(broadcast, 0, 1), "broadcast payload", {

663+

nodeId: "android-talk-node",

664+

command: "talk.ptt.start",

665+

});

648666

const talkEvent = expectRecordFields(broadcastPayload.talkEvent, "talk event", {

649667

type: "capture.started",

650668

sessionId: "node:android-talk-node:talk:capture-1",

@@ -659,7 +677,7 @@ describe("node.invoke APNs wake path", () => {

659677

nodeId: "android-talk-node",

660678

command: "talk.ptt.start",

661679

});

662-

expect(broadcast.mock.calls.at(0)?.[2]).toEqual({ dropIfSlow: true });

680+

expect(mockArg(broadcast, 0, 2)).toEqual({ dropIfSlow: true });

663681

});

664682665683

it("clears stale registrations after an invalid device token wake failure", async () => {

@@ -772,14 +790,14 @@ describe("node.invoke APNs wake path", () => {

772790

idempotencyKey: "idem-queued",

773791

},

774792

});

775-

const call = respond.mock.calls.at(0) as RespondCall | undefined;

776-

expect(call?.[0]).toBe(false);

777-

expect(call?.[2]?.code).toBe(ErrorCodes.UNAVAILABLE);

778-

expect(call?.[2]?.message).toBe("node command queued until iOS returns to foreground");

793+

const call = firstRespondCall(respond);

794+

expect(call[0]).toBe(false);

795+

expect(call[2]?.code).toBe(ErrorCodes.UNAVAILABLE);

796+

expect(call[2]?.message).toBe("node command queued until iOS returns to foreground");

779797

expect(mocks.sendApnsBackgroundWake).not.toHaveBeenCalled();

780798781799

const pullRespond = await pullPending("ios-node-queued", ["canvas.navigate"]);

782-

const pullCall = pullRespond.mock.calls.at(0) as RespondCall | undefined;

800+

const pullCall = firstRespondCall(pullRespond);

783801

const pullPayload = requireRespondPayload(pullCall, "pull response");

784802

expectRecordFields(pullPayload, "pull payload", {

785803

nodeId: "ios-node-queued",

@@ -790,7 +808,7 @@ describe("node.invoke APNs wake path", () => {

790808

});

791809792810

const repeatedPullRespond = await pullPending("ios-node-queued", ["canvas.navigate"]);

793-

const repeatedPullCall = repeatedPullRespond.mock.calls.at(0) as RespondCall | undefined;

811+

const repeatedPullCall = firstRespondCall(repeatedPullRespond);

794812

const repeatedPullPayload = requireRespondPayload(repeatedPullCall, "repeated pull response");

795813

expectRecordFields(repeatedPullPayload, "repeated pull payload", {

796814

nodeId: "ios-node-queued",

@@ -807,15 +825,15 @@ describe("node.invoke APNs wake path", () => {

807825

expect(isUuidV4(queuedActionId)).toBe(true);

808826809827

const ackRespond = await ackPending("ios-node-queued", [queuedActionId], ["canvas.navigate"]);

810-

const ackCall = ackRespond.mock.calls.at(0) as RespondCall | undefined;

828+

const ackCall = firstRespondCall(ackRespond);

811829

expectRecordFields(requireRespondPayload(ackCall, "ack response"), "ack payload", {

812830

nodeId: "ios-node-queued",

813831

ackedIds: [queuedActionId],

814832

remainingCount: 0,

815833

});

816834817835

const emptyPullRespond = await pullPending("ios-node-queued", ["canvas.navigate"]);

818-

const emptyPullCall = emptyPullRespond.mock.calls.at(0) as RespondCall | undefined;

836+

const emptyPullCall = firstRespondCall(emptyPullRespond);

819837

expectRecordFields(

820838

requireRespondPayload(emptyPullCall, "empty pull response"),

821839

"empty pull payload",

@@ -871,7 +889,7 @@ describe("node.invoke APNs wake path", () => {

871889

"camera.snap",

872890

"canvas.navigate",

873891

]);

874-

const preChangePullCall = preChangePullRespond.mock.calls.at(0) as RespondCall | undefined;

892+

const preChangePullCall = firstRespondCall(preChangePullRespond);

875893

const preChangePayload = requireRespondPayload(preChangePullCall, "pre-change pull response");

876894

expectRecordFields(preChangePayload, "pre-change pull payload", {

877895

nodeId: "ios-node-policy",

@@ -884,7 +902,7 @@ describe("node.invoke APNs wake path", () => {

884902

allowlistedCommands.delete("camera.snap");

885903886904

const pullRespond = await pullPending("ios-node-policy", ["camera.snap", "canvas.navigate"]);

887-

const pullCall = pullRespond.mock.calls.at(0) as RespondCall | undefined;

905+

const pullCall = firstRespondCall(pullRespond);

888906

expectRecordFields(requireRespondPayload(pullCall, "pull response"), "pull payload", {

889907

nodeId: "ios-node-policy",

890908

actions: [],

@@ -929,7 +947,7 @@ describe("node.invoke APNs wake path", () => {

929947

});

930948931949

const pullRespond = await pullPending("ios-node-dedupe", ["canvas.navigate"]);

932-

const pullCall = pullRespond.mock.calls.at(0) as RespondCall | undefined;

950+

const pullCall = firstRespondCall(pullRespond);

933951

const pullPayload = requireRespondPayload(pullCall, "pull response");

934952

expectRecordFields(pullPayload, "pull payload", {

935953

nodeId: "ios-node-dedupe",