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

推荐订阅源

V
Visual Studio Blog
量子位
大猫的无限游戏
大猫的无限游戏
Hugging Face - Blog
Hugging Face - Blog
S
SegmentFault 最新的问题
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
Google DeepMind News
Google DeepMind News
小众软件
小众软件
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
MongoDB | Blog
MongoDB | Blog
B
Blog RSS Feed
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog
博客园 - 聂微东
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
雷峰网
雷峰网
Jina AI
Jina AI
酷 壳 – CoolShell
酷 壳 – CoolShell

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 gateway send scope assertions · openclaw/op...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -186,11 +186,21 @@ function deliveryCall(index = 0): Record<string, any> | undefined {

186186187187

function firstRespondCall(respond: ReturnType<typeof vi.fn>) {

188188

const calls = respond.mock.calls as unknown as Array<

189-

[boolean, Record<string, any>, unknown, Record<string, any>]

189+

[

190+

boolean,

191+

Record<string, any> | undefined,

192+

Record<string, any> | undefined,

193+

Record<string, any> | undefined,

194+

]

190195

>;

191196

return calls[0];

192197

}

193198199+

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

200+

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

201+

return calls[index]?.[0];

202+

}

203+194204

function expectDeliverySessionMirror(params: { agentId: string; sessionKey: string }) {

195205

const call = deliveryCall();

196206

expect(call?.session?.agentId).toBe(params.agentId);

@@ -315,12 +325,8 @@ describe("gateway send mirroring", () => {

315325

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

316326

);

317327318-

expect(mocks.deliverOutboundPayloads).toHaveBeenCalledWith(

319-

expect.objectContaining({

320-

channel: "slack",

321-

gatewayClientScopes: ["operator.write"],

322-

}),

323-

);

328+

expect(deliveryCall()?.channel).toBe("slack");

329+

expect(deliveryCall()?.gatewayClientScopes).toEqual(["operator.write"]);

324330

});

325331326332

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

@@ -336,12 +342,8 @@ describe("gateway send mirroring", () => {

336342

{ connect: { scopes: [] } },

337343

);

338344339-

expect(mocks.deliverOutboundPayloads).toHaveBeenCalledWith(

340-

expect.objectContaining({

341-

channel: "slack",

342-

gatewayClientScopes: [],

343-

}),

344-

);

345+

expect(deliveryCall()?.channel).toBe("slack");

346+

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

345347

});

346348347349

it("rejects empty sends when neither text nor media is present", async () => {

@@ -353,13 +355,10 @@ describe("gateway send mirroring", () => {

353355

});

354356355357

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

356-

expect(respond).toHaveBeenCalledWith(

357-

false,

358-

undefined,

359-

expect.objectContaining({

360-

message: expect.stringContaining("text or media is required"),

361-

}),

362-

);

358+

const response = firstRespondCall(respond);

359+

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

360+

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

361+

expect(response?.[2]?.message).toContain("text or media is required");

363362

});

364363365364

it("returns actionable guidance when channel is internal webchat", async () => {

@@ -371,20 +370,11 @@ describe("gateway send mirroring", () => {

371370

});

372371373372

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

374-

expect(respond).toHaveBeenCalledWith(

375-

false,

376-

undefined,

377-

expect.objectContaining({

378-

message: expect.stringContaining("unsupported channel: webchat"),

379-

}),

380-

);

381-

expect(respond).toHaveBeenCalledWith(

382-

false,

383-

undefined,

384-

expect.objectContaining({

385-

message: expect.stringContaining("Use `chat.send`"),

386-

}),

387-

);

373+

const response = firstRespondCall(respond);

374+

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

375+

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

376+

expect(response?.[2]?.message).toContain("unsupported channel: webchat");

377+

expect(response?.[2]?.message).toContain("Use `chat.send`");

388378

});

389379390380

it("auto-picks the single configured channel for send", async () => {

@@ -398,12 +388,11 @@ describe("gateway send mirroring", () => {

398388399389

expect(mocks.resolveMessageChannelSelection).toHaveBeenCalled();

400390

expect(mocks.deliverOutboundPayloads).toHaveBeenCalled();

401-

expect(respond).toHaveBeenCalledWith(

402-

true,

403-

expect.objectContaining({ messageId: "m-single-send" }),

404-

undefined,

405-

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

406-

);

391+

const response = firstRespondCall(respond);

392+

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

393+

expect(response?.[1]?.messageId).toBe("m-single-send");

394+

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

395+

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

407396

});

408397409398

it("auto-picks the single configured channel from the auto-enabled config snapshot for send", async () => {

@@ -428,12 +417,11 @@ describe("gateway send mirroring", () => {

428417

expect(mocks.resolveMessageChannelSelection).toHaveBeenCalledWith({

429418

cfg: autoEnabledConfig,

430419

});

431-

expect(respond).toHaveBeenCalledWith(

432-

true,

433-

expect.objectContaining({ messageId: "m-single-send-auto" }),

434-

undefined,

435-

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

436-

);

420+

const response = firstRespondCall(respond);

421+

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

422+

expect(response?.[1]?.messageId).toBe("m-single-send-auto");

423+

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

424+

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

437425

});

438426439427

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

@@ -448,13 +436,10 @@ describe("gateway send mirroring", () => {

448436

});

449437450438

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

451-

expect(respond).toHaveBeenCalledWith(

452-

false,

453-

undefined,

454-

expect.objectContaining({

455-

message: expect.stringContaining("Channel is required"),

456-

}),

457-

);

439+

const response = firstRespondCall(respond);

440+

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

441+

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

442+

expect(response?.[2]?.message).toContain("Channel is required");

458443

});

459444460445

it("forwards gateway client scopes into outbound poll delivery", async () => {

@@ -469,13 +454,9 @@ describe("gateway send mirroring", () => {

469454

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

470455

);

471456472-

expect(mocks.sendPoll).toHaveBeenCalledWith(

473-

expect.objectContaining({

474-

cfg: expect.any(Object),

475-

to: "resolved",

476-

gatewayClientScopes: ["operator.admin"],

477-

}),

478-

);

457+

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

458+

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

459+

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

479460

});

480461481462

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

@@ -490,13 +471,9 @@ describe("gateway send mirroring", () => {

490471

{ connect: { scopes: [] } },

491472

);

492473493-

expect(mocks.sendPoll).toHaveBeenCalledWith(

494-

expect.objectContaining({

495-

cfg: expect.any(Object),

496-

to: "resolved",

497-

gatewayClientScopes: [],

498-

}),

499-

);

474+

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

475+

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

476+

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

500477

});

501478502479

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

@@ -516,20 +493,19 @@ describe("gateway send mirroring", () => {

516493

idempotencyKey: "idem-poll-rich",

517494

});

518495519-

expect(respond).toHaveBeenCalledWith(

520-

true,

521-

expect.objectContaining({

522-

runId: "idem-poll-rich",

523-

messageId: "poll-rich",

524-

channel: "slack",

525-

channelId: "C123",

526-

conversationId: "conv-1",

527-

toJid: "jid-1",

528-

pollId: "poll-meta-1",

529-

}),

530-

undefined,

531-

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

532-

);

496+

const response = firstRespondCall(respond);

497+

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

498+

expect(response?.[1]).toEqual({

499+

runId: "idem-poll-rich",

500+

messageId: "poll-rich",

501+

channel: "slack",

502+

channelId: "C123",

503+

conversationId: "conv-1",

504+

toJid: "jid-1",

505+

pollId: "poll-meta-1",

506+

});

507+

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

508+

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

533509

});

534510535511

it("auto-picks the single configured channel for poll", async () => {

@@ -541,9 +517,11 @@ describe("gateway send mirroring", () => {

541517

});

542518543519

expect(mocks.resolveMessageChannelSelection).toHaveBeenCalled();

544-

expect(respond).toHaveBeenCalledWith(true, expect.any(Object), undefined, {

545-

channel: "slack",

546-

});

520+

const response = firstRespondCall(respond);

521+

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

522+

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

523+

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

524+

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

547525

});

548526549527

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