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

推荐订阅源

有赞技术团队
有赞技术团队
G
Google Developers Blog
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
J
Java Code Geeks
P
Proofpoint News Feed
V
Visual Studio Blog
爱范儿
爱范儿
The Cloudflare Blog
博客园 - 叶小钗
V
V2EX
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
M
MIT News - Artificial intelligence
Microsoft Security Blog
Microsoft Security Blog
博客园 - 聂微东
H
Help Net Security
B
Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 【当耐特】
量子位
宝玉的分享
宝玉的分享
WordPress大学
WordPress大学
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

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

@@ -140,6 +140,18 @@ function requireArray(value: unknown, label: string): Array<unknown> {

140140

return value as Array<unknown>;

141141

}

142142143+

function mockCallArg(

144+

mock: { mock: { calls: Array<Array<unknown>> } },

145+

label: string,

146+

argIndex: number,

147+

) {

148+

const call = mock.mock.calls.at(0);

149+

if (!call) {

150+

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

151+

}

152+

return call[argIndex];

153+

}

154+143155

function sentContent(sendMessage: { mock: { calls: Array<Array<unknown>> } }, index = 0) {

144156

return requireRecord(sendMessage.mock.calls.at(index)?.[1], `sent content ${index}`);

145157

}

@@ -219,10 +231,10 @@ describe("sendMessageMatrix media", () => {

219231

mediaUrl: "file:///tmp/photo.png",

220232

});

221233222-

const uploadArg = uploadContent.mock.calls.at(0)?.[0];

234+

const uploadArg = mockCallArg(uploadContent, "uploadContent", 0);

223235

expect(Buffer.isBuffer(uploadArg)).toBe(true);

224236225-

const content = sendMessage.mock.calls.at(0)?.[1] as {

237+

const content = sentContent(sendMessage) as {

226238

url?: string;

227239

msgtype?: string;

228240

format?: string;

@@ -243,12 +255,12 @@ describe("sendMessageMatrix media", () => {

243255

mediaUrl: "file:///tmp/photo.png",

244256

});

245257246-

const uploadArg = uploadContent.mock.calls.at(0)?.[0];

258+

const uploadArg = mockCallArg(uploadContent, "uploadContent", 0);

247259

expect(uploadArg instanceof Uint8Array ? Buffer.from(uploadArg).toString() : undefined).toBe(

248260

"encrypted",

249261

);

250262251-

const content = sendMessage.mock.calls.at(0)?.[1] as {

263+

const content = sentContent(sendMessage) as {

252264

url?: string;

253265

file?: { url?: string };

254266

};

@@ -292,7 +304,7 @@ describe("sendMessageMatrix media", () => {

292304

expect(isRoomEncrypted).toHaveBeenCalledTimes(1);

293305

expect(encryptMedia).toHaveBeenCalledTimes(2);

294306295-

const content = sendMessage.mock.calls.at(0)?.[1] as {

307+

const content = sentContent(sendMessage) as {

296308

url?: string;

297309

file?: { url?: string };

298310

info?: { thumbnail_url?: string; thumbnail_file?: { url?: string } };

@@ -356,7 +368,7 @@ describe("sendMessageMatrix media", () => {

356368

});

357369358370

expect(sendMessage).toHaveBeenCalledTimes(1);

359-

const mediaContent = sendMessage.mock.calls.at(0)?.[1] as {

371+

const mediaContent = sentContent(sendMessage) as {

360372

msgtype?: string;

361373

body?: string;

362374

"org.matrix.msc3245.voice"?: Record<string, never>;

@@ -380,7 +392,7 @@ describe("sendMessageMatrix media", () => {

380392

});

381393382394

expect(uploadContent).toHaveBeenCalledTimes(2);

383-

const content = sendMessage.mock.calls.at(0)?.[1] as {

395+

const content = sentContent(sendMessage) as {

384396

info?: {

385397

thumbnail_url?: string;

386398

thumbnail_file?: { url?: string };

@@ -428,8 +440,11 @@ describe("sendMessageMatrix media", () => {

428440

});

429441430442

expect(loadConfigMock).not.toHaveBeenCalled();

431-

expect(loadWebMediaMock.mock.calls.at(0)?.[0]).toBe("file:///tmp/photo.png");

432-

const mediaOptions = requireRecord(loadWebMediaMock.mock.calls.at(0)?.[1], "media options");

443+

expect(mockCallArg(loadWebMediaMock, "loadWebMedia", 0)).toBe("file:///tmp/photo.png");

444+

const mediaOptions = requireRecord(

445+

mockCallArg(loadWebMediaMock, "loadWebMedia", 1),

446+

"media options",

447+

);

433448

expect(mediaOptions.maxBytes).toBe(1024 * 1024);

434449

expect(mediaOptions.localRoots).toBeUndefined();

435450

expect(resolveTextChunkLimitMock).toHaveBeenCalledWith(explicitCfg, "matrix", "ops");

@@ -445,8 +460,11 @@ describe("sendMessageMatrix media", () => {

445460

mediaLocalRoots: ["/tmp/openclaw-matrix-test"],

446461

});

447462448-

expect(loadWebMediaMock.mock.calls.at(0)?.[0]).toBe("file:///tmp/photo.png");

449-

const mediaOptions = requireRecord(loadWebMediaMock.mock.calls.at(0)?.[1], "media options");

463+

expect(mockCallArg(loadWebMediaMock, "loadWebMedia", 0)).toBe("file:///tmp/photo.png");

464+

const mediaOptions = requireRecord(

465+

mockCallArg(loadWebMediaMock, "loadWebMedia", 1),

466+

"media options",

467+

);

450468

expect(mediaOptions.maxBytes).toBeUndefined();

451469

expect(mediaOptions.localRoots).toEqual(["/tmp/openclaw-matrix-test"]);

452470

});

@@ -482,9 +500,9 @@ describe("sendMessageMatrix mentions", () => {

482500

expect(sentContent(sendMessage)["m.mentions"]).toEqual({

483501

user_ids: ["@alice:example.org"],

484502

});

485-

expect(

486-

(sendMessage.mock.calls.at(0)?.[1] as { formatted_body?: string }).formatted_body,

487-

).toContain('href="https://matrix.to/#/%40alice%3Aexample.org"');

503+

expect((sentContent(sendMessage) as { formatted_body?: string }).formatted_body).toContain(

504+

'href="https://matrix.to/#/%40alice%3Aexample.org"',

505+

);

488506

});

489507490508

it("keeps bare localpart text as plain text", async () => {

@@ -496,9 +514,9 @@ describe("sendMessageMatrix mentions", () => {

496514

});

497515498516

expect(sentContent(sendMessage)["m.mentions"]).toEqual({});

499-

expect(

500-

(sendMessage.mock.calls.at(0)?.[1] as { formatted_body?: string }).formatted_body,

501-

).not.toContain("matrix.to/#/@alice:example.org");

517+

expect((sentContent(sendMessage) as { formatted_body?: string }).formatted_body).not.toContain(

518+

"matrix.to/#/@alice:example.org",

519+

);

502520

});

503521504522

it("does not emit mentions for escaped qualified users", async () => {

@@ -510,9 +528,9 @@ describe("sendMessageMatrix mentions", () => {

510528

});

511529512530

expect(sentContent(sendMessage)["m.mentions"]).toEqual({});

513-

expect(

514-

(sendMessage.mock.calls.at(0)?.[1] as { formatted_body?: string }).formatted_body,

515-

).not.toContain("matrix.to/#/@alice:example.org");

531+

expect((sentContent(sendMessage) as { formatted_body?: string }).formatted_body).not.toContain(

532+

"matrix.to/#/@alice:example.org",

533+

);

516534

});

517535518536

it("does not emit mentions for escaped room mentions", async () => {

@@ -569,7 +587,7 @@ describe("sendMessageMatrix mentions", () => {

569587

expect(sentContent(sendMessage).body).toBe("@room.png");

570588

expect(sentContent(sendMessage)["m.mentions"]).toEqual({});

571589

expect(

572-

(sendMessage.mock.calls.at(0)?.[1] as { formatted_body?: string }).formatted_body,

590+

(sentContent(sendMessage) as { formatted_body?: string }).formatted_body,

573591

).toBeUndefined();

574592

});

575593

});

@@ -589,7 +607,7 @@ describe("sendMessageMatrix threads", () => {

589607

threadId: "$thread",

590608

});

591609592-

const content = sendMessage.mock.calls.at(0)?.[1] as {

610+

const content = sentContent(sendMessage) as {

593611

"m.relates_to"?: {

594612

rel_type?: string;

595613

event_id?: string;

@@ -697,10 +715,10 @@ describe("sendSingleTextMessageMatrix", () => {

697715698716

expect(sentContent(sendMessage).msgtype).toBe("m.notice");

699717

expect(sentContent(sendMessage).body).toBe("@room hi @alice:example.org");

700-

expect(sendMessage.mock.calls.at(0)?.[1]).not.toHaveProperty("m.mentions");

701-

expect(

702-

(sendMessage.mock.calls.at(0)?.[1] as { formatted_body?: string }).formatted_body,

703-

).not.toContain("matrix.to");

718+

expect(sentContent(sendMessage)).not.toHaveProperty("m.mentions");

719+

expect((sentContent(sendMessage) as { formatted_body?: string }).formatted_body).not.toContain(

720+

"matrix.to",

721+

);

704722

});

705723706724

it("does not activate mentions inside Matrix tool-progress code spans", async () => {

@@ -719,8 +737,7 @@ describe("sendSingleTextMessageMatrix", () => {

719737

"Working...\n- `@room ping @alice:example.org !room:example.org`",

720738

);

721739

expect(sentContent(sendMessage)["m.mentions"]).toEqual({});

722-

const formattedBody = (sendMessage.mock.calls.at(0)?.[1] as { formatted_body?: string })

723-

.formatted_body;

740+

const formattedBody = (sentContent(sendMessage) as { formatted_body?: string }).formatted_body;

724741

expect(formattedBody).toContain("<code>@room ping @alice:example.org !room:example.org</code>");

725742

expect(formattedBody).not.toContain("matrix.to");

726743

});

@@ -834,12 +851,12 @@ describe("editMessageMatrix mentions", () => {

834851

expect(newContent(content).msgtype).toBe("m.notice");

835852

expect(content).not.toHaveProperty("m.mentions");

836853

expect(newContent(content)).not.toHaveProperty("m.mentions");

837-

expect(

838-

(sendMessage.mock.calls.at(0)?.[1] as { formatted_body?: string }).formatted_body,

839-

).not.toContain("matrix.to");

854+

expect((sentContent(sendMessage) as { formatted_body?: string }).formatted_body).not.toContain(

855+

"matrix.to",

856+

);

840857

expect(

841858

(

842-

sendMessage.mock.calls.at(0)?.[1] as {

859+

sentContent(sendMessage) as {

843860

"m.new_content"?: { formatted_body?: string };

844861

}

845862

)["m.new_content"]?.formatted_body,

@@ -882,9 +899,9 @@ describe("sendPollMatrix mentions", () => {

882899

},

883900

);

884901885-

expect(sendEvent.mock.calls.at(0)?.[0]).toBe("!room:example");

886-

expect(sendEvent.mock.calls.at(0)?.[1]).toBe("m.poll.start");

887-

const content = requireRecord(sendEvent.mock.calls.at(0)?.[2], "poll start content");

902+

expect(mockCallArg(sendEvent, "sendEvent", 0)).toBe("!room:example");

903+

expect(mockCallArg(sendEvent, "sendEvent", 1)).toBe("m.poll.start");

904+

const content = requireRecord(mockCallArg(sendEvent, "sendEvent", 2), "poll start content");

888905

expect(content["m.mentions"]).toEqual({

889906

room: true,

890907

user_ids: ["@alice:example.org"],