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

推荐订阅源

罗磊的独立博客
Recent Announcements
Recent Announcements
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
J
Java Code Geeks
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
aimingoo的专栏
aimingoo的专栏
U
Unit 42
The GitHub Blog
The GitHub Blog
云风的 BLOG
云风的 BLOG
T
Tailwind CSS Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
博客园 - 司徒正美
腾讯CDC
I
InfoQ
GbyAI
GbyAI
博客园_首页

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: clear outbound message broad matchers · openclaw/op...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -69,6 +69,46 @@ import { createTestRegistry } from "../../test-utils/channel-plugins.js";

6969

let sendMessage: typeof import("./message.js").sendMessage;

7070

let resetOutboundChannelResolutionStateForTest: typeof import("./channel-resolution.js").resetOutboundChannelResolutionStateForTest;

717172+

function requireRecord(value: unknown, label: string): Record<string, unknown> {

73+

if (typeof value !== "object" || value === null || Array.isArray(value)) {

74+

throw new Error(`expected ${label} to be an object`);

75+

}

76+

return value as Record<string, unknown>;

77+

}

78+79+

function expectRecordFields(

80+

value: unknown,

81+

expected: Record<string, unknown>,

82+

label: string,

83+

): Record<string, unknown> {

84+

const record = requireRecord(value, label);

85+

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

86+

expect(record[key], `${label}.${key}`).toEqual(expectedValue);

87+

}

88+

return record;

89+

}

90+91+

function getMockCallArg(

92+

mock: { mock: { calls: readonly unknown[][] } },

93+

callIndex: number,

94+

argIndex: number,

95+

label: string,

96+

): unknown {

97+

const call = (mock.mock.calls as unknown[][])[callIndex];

98+

if (!call) {

99+

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

100+

}

101+

return call[argIndex];

102+

}

103+104+

function expectDeliveryCallFields(expected: Record<string, unknown>): Record<string, unknown> {

105+

return expectRecordFields(

106+

getMockCallArg(mocks.deliverOutboundPayloads, 0, 0, "outbound delivery"),

107+

expected,

108+

"outbound delivery params",

109+

);

110+

}

111+72112

describe("sendMessage", () => {

73113

beforeAll(async () => {

74114

({ sendMessage } = await import("./message.js"));

@@ -101,13 +141,8 @@ describe("sendMessage", () => {

101141

agentId: "work",

102142

});

103143104-

expect(mocks.deliverOutboundPayloads).toHaveBeenCalledWith(

105-

expect.objectContaining({

106-

session: expect.objectContaining({ agentId: "work" }),

107-

channel: "forum",

108-

to: "123456",

109-

}),

110-

);

144+

const deliveryParams = expectDeliveryCallFields({ channel: "forum", to: "123456" });

145+

expectRecordFields(deliveryParams.session, { agentId: "work" }, "outbound session");

111146

});

112147113148

it("forwards requesterSenderId into the outbound delivery session", async () => {

@@ -122,13 +157,13 @@ describe("sendMessage", () => {

122157

},

123158

});

124159125-

expect(mocks.deliverOutboundPayloads).toHaveBeenCalledWith(

126-

expect.objectContaining({

127-

session: expect.objectContaining({

128-

key: "agent:main:forum:group:ops",

129-

requesterSenderId: "attacker",

130-

}),

131-

}),

160+

expectRecordFields(

161+

expectDeliveryCallFields({}).session,

162+

{

163+

key: "agent:main:forum:group:ops",

164+

requesterSenderId: "attacker",

165+

},

166+

"outbound session",

132167

);

133168

});

134169

@@ -146,15 +181,15 @@ describe("sendMessage", () => {

146181

},

147182

});

148183149-

expect(mocks.deliverOutboundPayloads).toHaveBeenCalledWith(

150-

expect.objectContaining({

151-

session: expect.objectContaining({

152-

key: "agent:main:forum:group:ops",

153-

requesterSenderName: "Alice",

154-

requesterSenderUsername: "alice_u",

155-

requesterSenderE164: "+15551234567",

156-

}),

157-

}),

184+

expectRecordFields(

185+

expectDeliveryCallFields({}).session,

186+

{

187+

key: "agent:main:forum:group:ops",

188+

requesterSenderName: "Alice",

189+

requesterSenderUsername: "alice_u",

190+

requesterSenderE164: "+15551234567",

191+

},

192+

"outbound session",

158193

);

159194

});

160195

@@ -172,17 +207,20 @@ describe("sendMessage", () => {

172207

},

173208

});

174209175-

expect(mocks.deliverOutboundPayloads).toHaveBeenCalledWith(

176-

expect.objectContaining({

177-

session: expect.objectContaining({

178-

key: "agent:main:directchat:group:ops",

179-

requesterAccountId: "work",

180-

requesterSenderId: "attacker",

181-

}),

182-

mirror: expect.objectContaining({

183-

sessionKey: "agent:main:forum:dm:123456",

184-

}),

185-

}),

210+

const deliveryParams = expectDeliveryCallFields({});

211+

expectRecordFields(

212+

deliveryParams.session,

213+

{

214+

key: "agent:main:directchat:group:ops",

215+

requesterAccountId: "work",

216+

requesterSenderId: "attacker",

217+

},

218+

"outbound session",

219+

);

220+

expectRecordFields(

221+

deliveryParams.mirror,

222+

{ sessionKey: "agent:main:forum:dm:123456" },

223+

"outbound mirror",

186224

);

187225

});

188226

@@ -198,14 +236,14 @@ describe("sendMessage", () => {

198236

},

199237

});

200238201-

expect(mocks.deliverOutboundPayloads).toHaveBeenCalledWith(

202-

expect.objectContaining({

203-

mirror: expect.objectContaining({

204-

sessionKey: "agent:main:forum:dm:123456",

205-

text: "hi",

206-

idempotencyKey: "idem-send-1",

207-

}),

208-

}),

239+

expectRecordFields(

240+

expectDeliveryCallFields({}).mirror,

241+

{

242+

sessionKey: "agent:main:forum:dm:123456",

243+

text: "hi",

244+

idempotencyKey: "idem-send-1",

245+

},

246+

"outbound mirror",

209247

);

210248

});

211249

@@ -219,16 +257,14 @@ describe("sendMessage", () => {

219257

asVoice: true,

220258

});

221259222-

expect(mocks.deliverOutboundPayloads).toHaveBeenCalledWith(

223-

expect.objectContaining({

224-

payloads: [

225-

expect.objectContaining({

226-

text: "voice note",

227-

mediaUrl: "file:///tmp/openclaw-voice.ogg",

228-

audioAsVoice: true,

229-

}),

230-

],

231-

}),

260+

expectRecordFields(

261+

(expectDeliveryCallFields({}).payloads as unknown[] | undefined)?.[0],

262+

{

263+

text: "voice note",

264+

mediaUrl: "file:///tmp/openclaw-voice.ogg",

265+

audioAsVoice: true,

266+

},

267+

"voice payload",

232268

);

233269

});

234270

@@ -248,26 +284,35 @@ describe("sendMessage", () => {

248284

mediaAccess,

249285

});

250286251-

expect(mocks.deliverOutboundPayloads).toHaveBeenCalledWith(

252-

expect.objectContaining({

253-

payloads: [

254-

expect.objectContaining({

255-

text: "prepared",

256-

channelData: { forum: { card: true } },

257-

}),

258-

],

259-

queuePolicy: "required",

260-

mediaAccess,

261-

}),

287+

const deliveryParams = expectDeliveryCallFields({

288+

queuePolicy: "required",

289+

mediaAccess,

290+

});

291+

expectRecordFields(

292+

(deliveryParams.payloads as unknown[] | undefined)?.[0],

293+

{

294+

text: "prepared",

295+

channelData: { forum: { card: true } },

296+

},

297+

"prepared payload",

262298

);

263-

expect(mocks.resolveOutboundDurableFinalDeliverySupport).toHaveBeenCalledWith(

264-

expect.objectContaining({

265-

channel: "forum",

266-

requirements: expect.objectContaining({

267-

payload: true,

268-

reconcileUnknownSend: true,

269-

}),

270-

}),

299+

const supportParams = expectRecordFields(

300+

getMockCallArg(

301+

mocks.resolveOutboundDurableFinalDeliverySupport,

302+

0,

303+

0,

304+

"durable delivery support",

305+

),

306+

{ channel: "forum" },

307+

"durable delivery support params",

308+

);

309+

expectRecordFields(

310+

supportParams.requirements,

311+

{

312+

payload: true,

313+

reconcileUnknownSend: true,

314+

},

315+

"durable delivery requirements",

271316

);

272317

});

273318

@@ -385,12 +430,14 @@ describe("sendMessage", () => {

385430

mediaUrls: payload.mediaUrls ?? [],

386431

}));

387432

expect(payloadSummary, entry.name).toEqual(entry.expectedPayloads);

388-

expect(deliveryCall?.mirror, entry.name).toEqual(

389-

expect.objectContaining({

433+

expectRecordFields(

434+

deliveryCall?.mirror,

435+

{

390436

sessionKey: "agent:main:forum:dm:123456",

391437

text: entry.expectedMirror.text,

392438

mediaUrls: entry.expectedMirror.mediaUrls,

393-

}),

439+

},

440+

entry.name,

394441

);

395442

}

396443

});

@@ -404,18 +451,21 @@ describe("sendMessage", () => {

404451

.mockReturnValueOnce(forumPlugin)

405452

.mockReturnValue(forumPlugin);

406453407-

await expect(

408-

sendMessage({

409-

cfg: { channels: { forum: { token: "test-token" } } },

410-

channel: "forum",

411-

to: "123456",

412-

content: "hi",

413-

}),

414-

).resolves.toMatchObject({

454+

const result = await sendMessage({

455+

cfg: { channels: { forum: { token: "test-token" } } },

415456

channel: "forum",

416457

to: "123456",

417-

via: "direct",

458+

content: "hi",

418459

});

460+

expectRecordFields(

461+

result,

462+

{

463+

channel: "forum",

464+

to: "123456",

465+

via: "direct",

466+

},

467+

"send message result",

468+

);

419469420470

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

421471

});

@@ -442,26 +492,27 @@ describe("sendMessage", () => {

442492

return [];

443493

});

444494445-

await expect(

446-

sendMessage({

447-

cfg: {},

448-

channel: "forum",

449-

to: "123456",

450-

content: "hi",

451-

bestEffort: true,

452-

}),

453-

).resolves.toMatchObject({

495+

const result = await sendMessage({

496+

cfg: {},

454497

channel: "forum",

455498

to: "123456",

456-

via: "direct",

457-

result: undefined,

499+

content: "hi",

500+

bestEffort: true,

458501

});

459-460-

expect(mocks.deliverOutboundPayloads).toHaveBeenCalledWith(

461-

expect.objectContaining({

462-

bestEffort: true,

463-

queuePolicy: "best_effort",

464-

}),

502+

expectRecordFields(

503+

result,

504+

{

505+

channel: "forum",

506+

to: "123456",

507+

via: "direct",

508+

result: undefined,

509+

},

510+

"best-effort send message result",

465511

);

512+513+

expectDeliveryCallFields({

514+

bestEffort: true,

515+

queuePolicy: "best_effort",

516+

});

466517

});

467518

});