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

推荐订阅源

月光博客
月光博客
Martin Fowler
Martin Fowler
Last Week in AI
Last Week in AI
罗磊的独立博客
阮一峰的网络日志
阮一峰的网络日志
博客园 - 【当耐特】
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
V
Visual Studio Blog
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
博客园_首页
人人都是产品经理
人人都是产品经理
量子位
美团技术团队
The Cloudflare Blog
小众软件
小众软件
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net
博客园 - Franky

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

@@ -141,7 +141,7 @@ function requireArray(value: unknown, label: string): Array<unknown> {

141141

}

142142143143

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

144-

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

144+

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

145145

}

146146147147

function newContent(content: Record<string, unknown>) {

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

219219

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

220220

});

221221222-

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

222+

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

223223

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

224224225-

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

225+

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

226226

url?: string;

227227

msgtype?: string;

228228

format?: string;

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

243243

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

244244

});

245245246-

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

246+

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

247247

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

248248

"encrypted",

249249

);

250250251-

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

251+

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

252252

url?: string;

253253

file?: { url?: string };

254254

};

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

292292

expect(isRoomEncrypted).toHaveBeenCalledTimes(1);

293293

expect(encryptMedia).toHaveBeenCalledTimes(2);

294294295-

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

295+

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

296296

url?: string;

297297

file?: { url?: string };

298298

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

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

324324

replyToId: "$reply",

325325

});

326326327-

const transcriptContent = sendMessage.mock.calls[1]?.[1] as {

327+

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

328328

body?: string;

329329

"m.relates_to"?: {

330330

"m.in_reply_to"?: { event_id?: string };

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

356356

});

357357358358

expect(sendMessage).toHaveBeenCalledTimes(1);

359-

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

359+

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

360360

msgtype?: string;

361361

body?: string;

362362

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

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

380380

});

381381382382

expect(uploadContent).toHaveBeenCalledTimes(2);

383-

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

383+

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

384384

info?: {

385385

thumbnail_url?: string;

386386

thumbnail_file?: { url?: string };

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

428428

});

429429430430

expect(loadConfigMock).not.toHaveBeenCalled();

431-

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

432-

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

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");

433433

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

434434

expect(mediaOptions.localRoots).toBeUndefined();

435435

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

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

445445

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

446446

});

447447448-

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

449-

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

448+

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

449+

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

450450

expect(mediaOptions.maxBytes).toBeUndefined();

451451

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

452452

});

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

483483

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

484484

});

485485

expect(

486-

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

486+

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

487487

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

488488

});

489489

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

497497498498

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

499499

expect(

500-

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

500+

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

501501

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

502502

});

503503

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

511511512512

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

513513

expect(

514-

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

514+

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

515515

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

516516

});

517517

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

569569

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

570570

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

571571

expect(

572-

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

572+

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

573573

).toBeUndefined();

574574

});

575575

});

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

589589

threadId: "$thread",

590590

});

591591592-

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

592+

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

593593

"m.relates_to"?: {

594594

rel_type?: string;

595595

event_id?: string;

@@ -658,9 +658,9 @@ describe("sendMessageMatrix threads", () => {

658658

expect(sentContent(sendMessage, 0).body).toBe("first");

659659

expect(sentContent(sendMessage, 0)["com.openclaw.approval"]).toEqual({ id: "req-1" });

660660

expect(sentContent(sendMessage, 1).body).toBe("second");

661-

expect(sendMessage.mock.calls[1]?.[1]).not.toHaveProperty("com.openclaw.approval");

661+

expect(sendMessage.mock.calls.at(1)?.[1]).not.toHaveProperty("com.openclaw.approval");

662662

expect(sentContent(sendMessage, 2).body).toBe("third");

663-

expect(sendMessage.mock.calls[2]?.[1]).not.toHaveProperty("com.openclaw.approval");

663+

expect(sendMessage.mock.calls.at(2)?.[1]).not.toHaveProperty("com.openclaw.approval");

664664

});

665665

});

666666

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

697697698698

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

699699

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

700-

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

700+

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

701701

expect(

702-

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

702+

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

703703

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

704704

});

705705

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

719719

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

720720

);

721721

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

722-

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

722+

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

723723

.formatted_body;

724724

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

725725

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

@@ -835,11 +835,11 @@ describe("editMessageMatrix mentions", () => {

835835

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

836836

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

837837

expect(

838-

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

838+

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

839839

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

840840

expect(

841841

(

842-

sendMessage.mock.calls[0]?.[1] as {

842+

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

843843

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

844844

}

845845

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

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

882882

},

883883

);

884884885-

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

886-

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

887-

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

885+

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");

888888

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

889889

room: true,

890890

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