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

推荐订阅源

美团技术团队
人人都是产品经理
人人都是产品经理
月光博客
月光博客
V
V2EX
WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
V
Visual Studio Blog
宝玉的分享
宝玉的分享
雷峰网
雷峰网
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - Franky
博客园 - 聂微东
博客园 - 司徒正美
博客园 - 【当耐特】
爱范儿
爱范儿
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
阮一峰的网络日志
阮一峰的网络日志

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: spell out gateway send responses · openclaw/opencla...
shakkernerd · 2026-05-11 · via Recent Commits to openclaw:main

@@ -211,6 +211,13 @@ function firstRespondCall(respond: ReturnType<typeof vi.fn>) {

211211

return calls[0];

212212

}

213213214+

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

215+

const calls = mocks.dispatchChannelMessageAction.mock.calls as unknown as Array<

216+

[Record<string, any>]

217+

>;

218+

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

219+

}

220+214221

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

215222

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

216223

return calls[index]?.[0];

@@ -323,18 +330,20 @@ describe("gateway send mirroring", () => {

323330

await Promise.all([firstRequest, secondRequest]);

324331325332

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

326-

expect(firstRespond).toHaveBeenCalledWith(

327-

true,

328-

{ action: "handled" },

329-

undefined,

330-

expect.objectContaining({ channel: "slack" }),

331-

);

332-

expect(secondRespond).toHaveBeenCalledWith(

333-

true,

334-

{ action: "handled" },

335-

undefined,

336-

expect.objectContaining({ channel: "slack", cached: true }),

337-

);

333+

expect(firstRespond).toHaveBeenCalledTimes(1);

334+

expect(secondRespond).toHaveBeenCalledTimes(1);

335+

const firstCall = firstRespondCall(firstRespond);

336+

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

337+

expect(firstCall?.[1]).toEqual({ action: "handled" });

338+

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

339+

expect(firstCall?.[3]?.channel).toBe("slack");

340+

expect(firstCall?.[3]?.cached).toBeUndefined();

341+

const secondCall = firstRespondCall(secondRespond);

342+

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

343+

expect(secondCall?.[1]).toEqual({ action: "handled" });

344+

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

345+

expect(secondCall?.[3]?.channel).toBe("slack");

346+

expect(secondCall?.[3]?.cached).toBe(true);

338347

});

339348340349

it("dedupes concurrent send requests while inflight", async () => {

@@ -380,18 +389,22 @@ describe("gateway send mirroring", () => {

380389

await Promise.all([firstRequest, secondRequest]);

381390382391

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

383-

expect(firstRespond).toHaveBeenCalledWith(

384-

true,

385-

expect.objectContaining({ messageId: "m-concurrent", runId: "idem-send-concurrent" }),

386-

undefined,

387-

expect.objectContaining({ channel: "slack" }),

388-

);

389-

expect(secondRespond).toHaveBeenCalledWith(

390-

true,

391-

expect.objectContaining({ messageId: "m-concurrent", runId: "idem-send-concurrent" }),

392-

undefined,

393-

expect.objectContaining({ channel: "slack", cached: true }),

394-

);

392+

expect(firstRespond).toHaveBeenCalledTimes(1);

393+

expect(secondRespond).toHaveBeenCalledTimes(1);

394+

const firstCall = firstRespondCall(firstRespond);

395+

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

396+

expect(firstCall?.[1]?.messageId).toBe("m-concurrent");

397+

expect(firstCall?.[1]?.runId).toBe("idem-send-concurrent");

398+

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

399+

expect(firstCall?.[3]?.channel).toBe("slack");

400+

expect(firstCall?.[3]?.cached).toBeUndefined();

401+

const secondCall = firstRespondCall(secondRespond);

402+

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

403+

expect(secondCall?.[1]?.messageId).toBe("m-concurrent");

404+

expect(secondCall?.[1]?.runId).toBe("idem-send-concurrent");

405+

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

406+

expect(secondCall?.[3]?.channel).toBe("slack");

407+

expect(secondCall?.[3]?.cached).toBe(true);

395408

});

396409397410

it("dedupes concurrent poll requests while inflight", async () => {

@@ -438,26 +451,24 @@ describe("gateway send mirroring", () => {

438451

await Promise.all([firstRequest, secondRequest]);

439452440453

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

441-

expect(firstRespond).toHaveBeenCalledWith(

442-

true,

443-

expect.objectContaining({

444-

messageId: "poll-concurrent",

445-

pollId: "poll-1",

446-

runId: "idem-poll-concurrent",

447-

}),

448-

undefined,

449-

expect.objectContaining({ channel: "slack" }),

450-

);

451-

expect(secondRespond).toHaveBeenCalledWith(

452-

true,

453-

expect.objectContaining({

454-

messageId: "poll-concurrent",

455-

pollId: "poll-1",

456-

runId: "idem-poll-concurrent",

457-

}),

458-

undefined,

459-

expect.objectContaining({ channel: "slack", cached: true }),

460-

);

454+

expect(firstRespond).toHaveBeenCalledTimes(1);

455+

expect(secondRespond).toHaveBeenCalledTimes(1);

456+

const firstCall = firstRespondCall(firstRespond);

457+

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

458+

expect(firstCall?.[1]?.messageId).toBe("poll-concurrent");

459+

expect(firstCall?.[1]?.pollId).toBe("poll-1");

460+

expect(firstCall?.[1]?.runId).toBe("idem-poll-concurrent");

461+

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

462+

expect(firstCall?.[3]?.channel).toBe("slack");

463+

expect(firstCall?.[3]?.cached).toBeUndefined();

464+

const secondCall = firstRespondCall(secondRespond);

465+

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

466+

expect(secondCall?.[1]?.messageId).toBe("poll-concurrent");

467+

expect(secondCall?.[1]?.pollId).toBe("poll-1");

468+

expect(secondCall?.[1]?.runId).toBe("idem-poll-concurrent");

469+

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

470+

expect(secondCall?.[3]?.channel).toBe("slack");

471+

expect(secondCall?.[3]?.cached).toBe(true);

461472

});

462473463474

it("accepts media-only sends without message", async () => {

@@ -1303,11 +1314,8 @@ describe("gateway send mirroring", () => {

13031314

});

1304131513051316

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

1306-

expect(mocks.dispatchChannelMessageAction).toHaveBeenLastCalledWith(

1307-

expect.objectContaining({

1308-

mediaLocalRoots: expect.arrayContaining([TEST_AGENT_WORKSPACE]),

1309-

}),

1310-

);

1317+

const actionCall = lastDispatchChannelMessageActionCall();

1318+

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

13111319

});

1312132013131321

it("forces senderIsOwner=false for narrowly-scoped callers but honors it for full operators", async () => {

@@ -1356,9 +1364,7 @@ describe("gateway send mirroring", () => {

13561364

},

13571365

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

13581366

);

1359-

expect(mocks.dispatchChannelMessageAction).toHaveBeenLastCalledWith(

1360-

expect.objectContaining({ senderIsOwner: false }),

1361-

);

1367+

expect(lastDispatchChannelMessageActionCall()?.senderIsOwner).toBe(false);

1362136813631369

// Full operator (admin-scoped): the trusted runtime is allowed to

13641370

// forward the real channel-sender ownership bit. Wire true → true.

@@ -1376,9 +1382,7 @@ describe("gateway send mirroring", () => {

13761382

},

13771383

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

13781384

);

1379-

expect(mocks.dispatchChannelMessageAction).toHaveBeenLastCalledWith(

1380-

expect.objectContaining({ senderIsOwner: true }),

1381-

);

1385+

expect(lastDispatchChannelMessageActionCall()?.senderIsOwner).toBe(true);

1382138613831387

// Full operator forwarding a non-owner sender: wire false → false

13841388

// (admin scope does not inflate ownership on its own).

@@ -1396,8 +1400,6 @@ describe("gateway send mirroring", () => {

13961400

},

13971401

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

13981402

);

1399-

expect(mocks.dispatchChannelMessageAction).toHaveBeenLastCalledWith(

1400-

expect.objectContaining({ senderIsOwner: false }),

1401-

);

1403+

expect(lastDispatchChannelMessageActionCall()?.senderIsOwner).toBe(false);

14021404

});

14031405

});