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

推荐订阅源

Y
Y Combinator Blog
The GitHub Blog
The GitHub Blog
云风的 BLOG
云风的 BLOG
Engineering at Meta
Engineering at Meta
Google DeepMind News
Google DeepMind News
aimingoo的专栏
aimingoo的专栏
Recent Announcements
Recent Announcements
A
About on SuperTechFans
U
Unit 42
MyScale Blog
MyScale Blog
J
Java Code Geeks
博客园_首页
Blog — PlanetScale
Blog — PlanetScale
D
Docker
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 司徒正美
量子位
月光博客
月光博客
G
Google Developers Blog
V
V2EX
博客园 - 聂微东
宝玉的分享
宝玉的分享
IT之家
IT之家
Vercel News
Vercel News

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: guard send handler mock calls · openclaw/openclaw@f...
steipete · 2026-05-12 · via Recent Commits to openclaw:main

@@ -208,7 +208,11 @@ function firstRespondCall(respond: ReturnType<typeof vi.fn>) {

208208

Record<string, any> | undefined,

209209

]

210210

>;

211-

return calls[0];

211+

const call = calls[0];

212+

if (!call) {

213+

throw new Error("Expected respond call");

214+

}

215+

return call;

212216

}

213217214218

function lastDispatchChannelMessageActionCall(): Record<string, any> | undefined {

@@ -218,9 +222,13 @@ function lastDispatchChannelMessageActionCall(): Record<string, any> | undefined

218222

return calls.at(-1)?.[0];

219223

}

220224221-

function pollCall(index = 0): Record<string, any> | undefined {

225+

function pollCall(index = 0): Record<string, any> {

222226

const calls = mocks.sendPoll.mock.calls as unknown as Array<[Record<string, any>]>;

223-

return calls[index]?.[0];

227+

const call = calls[index]?.[0];

228+

if (!call) {

229+

throw new Error(`Expected poll call at index ${index}`);

230+

}

231+

return call;

224232

}

225233226234

function outboundRouteCall(index = 0): Record<string, any> | undefined {

@@ -679,9 +687,10 @@ describe("gateway send mirroring", () => {

679687

{ connect: { scopes: ["operator.admin"] } },

680688

);

681689682-

expect(pollCall()?.cfg).toBeDefined();

683-

expect(pollCall()?.to).toBe("resolved");

684-

expect(pollCall()?.gatewayClientScopes).toEqual(["operator.admin"]);

690+

const call = pollCall();

691+

expect(call.cfg).toBeDefined();

692+

expect(call.to).toBe("resolved");

693+

expect(call.gatewayClientScopes).toEqual(["operator.admin"]);

685694

});

686695687696

it("forwards an empty gateway scope array into outbound poll delivery", async () => {

@@ -696,9 +705,10 @@ describe("gateway send mirroring", () => {

696705

{ connect: { scopes: [] } },

697706

);

698707699-

expect(pollCall()?.cfg).toBeDefined();

700-

expect(pollCall()?.to).toBe("resolved");

701-

expect(pollCall()?.gatewayClientScopes).toEqual([]);

708+

const call = pollCall();

709+

expect(call.cfg).toBeDefined();

710+

expect(call.to).toBe("resolved");

711+

expect(call.gatewayClientScopes).toEqual([]);

702712

});

703713704714

it("includes optional poll delivery identifiers in the gateway payload", async () => {

@@ -743,10 +753,10 @@ describe("gateway send mirroring", () => {

743753744754

expect(mocks.resolveMessageChannelSelection).toHaveBeenCalled();

745755

const response = firstRespondCall(respond);

746-

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

747-

expect(response?.[1]).toBeDefined();

748-

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

749-

expect(response?.[3]).toEqual({ channel: "slack" });

756+

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

757+

expect(response[1]).toBeDefined();

758+

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

759+

expect(response[3]).toEqual({ channel: "slack" });

750760

});

751761752762

it("returns invalid request when poll channel selection is ambiguous", async () => {

@@ -1313,7 +1323,7 @@ describe("gateway send mirroring", () => {

13131323

idempotencyKey: "idem-message-action-media-roots",

13141324

});

131513251316-

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

1326+

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

13171327

const actionCall = lastDispatchChannelMessageActionCall();

13181328

expect(actionCall?.mediaLocalRoots).toContain(TEST_AGENT_WORKSPACE);

13191329

});