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

推荐订阅源

Y
Y Combinator Blog
D
Docker
小众软件
小众软件
B
Blog
爱范儿
爱范儿
G
Google Developers Blog
Vercel News
Vercel News
博客园 - 【当耐特】
Jina AI
Jina AI
美团技术团队
月光博客
月光博客
量子位
Martin Fowler
Martin Fowler
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
V
Visual Studio Blog
有赞技术团队
有赞技术团队
罗磊的独立博客
宝玉的分享
宝玉的分享
aimingoo的专栏
aimingoo的专栏
C
Check Point Blog
P
Proofpoint News Feed
D
DataBreaches.Net
Engineering at Meta
Engineering at Meta

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

@@ -51,7 +51,7 @@ function mockCallArg<T>(

5151

argIndex: number,

5252

_type?: (value: unknown) => value is T,

5353

): T {

54-

const call = mock.mock.calls[callIndex];

54+

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

5555

if (!call) {

5656

throw new Error(`Expected mock call at index ${callIndex}`);

5757

}

@@ -140,7 +140,7 @@ describe("registerFeishuDriveTools", () => {

140140

);

141141142142

expect(registerTool).toHaveBeenCalledTimes(1);

143-

const toolFactory = registerTool.mock.calls[0]?.[0];

143+

const toolFactory = registerTool.mock.calls.at(0)?.[0];

144144

const tool = toolFactory?.({ agentAccountId: undefined });

145145

expect(tool?.name).toBe("feishu_drive");

146146

@@ -358,7 +358,7 @@ describe("registerFeishuDriveTools", () => {

358358

}),

359359

);

360360361-

const toolFactory = registerTool.mock.calls[0]?.[0];

361+

const toolFactory = registerTool.mock.calls.at(0)?.[0];

362362

const tool = toolFactory?.({ agentAccountId: undefined });

363363364364

requestMock.mockResolvedValueOnce({

@@ -379,7 +379,7 @@ describe("registerFeishuDriveTools", () => {

379379

file_type: "docx",

380380

reply_elements: [{ type: "text", text: "defaulted file type" }],

381381

});

382-

expect(infoSpy.mock.calls[0]?.[0]).toContain(

382+

expect(infoSpy.mock.calls.at(0)?.[0]).toContain(

383383

"add_comment missing file_type; defaulting to docx",

384384

);

385385

expect((result.details as { comment_id?: string; success?: boolean }).success).toBe(true);

@@ -405,7 +405,7 @@ describe("registerFeishuDriveTools", () => {

405405

}),

406406

);

407407408-

const toolFactory = registerTool.mock.calls[0]?.[0];

408+

const toolFactory = registerTool.mock.calls.at(0)?.[0];

409409

const tool = toolFactory?.({ agentAccountId: undefined });

410410411411

requestMock.mockResolvedValueOnce({

@@ -423,7 +423,7 @@ describe("registerFeishuDriveTools", () => {

423423

expect(request.url).toBe(

424424

"/open-apis/drive/v1/files/doc_1/comments?file_type=docx&user_id_type=open_id",

425425

);

426-

expect(infoSpy.mock.calls[0]?.[0]).toContain(

426+

expect(infoSpy.mock.calls.at(0)?.[0]).toContain(

427427

"list_comments missing file_type; defaulting to docx",

428428

);

429429

});

@@ -447,7 +447,7 @@ describe("registerFeishuDriveTools", () => {

447447

}),

448448

);

449449450-

const toolFactory = registerTool.mock.calls[0]?.[0];

450+

const toolFactory = registerTool.mock.calls.at(0)?.[0];

451451

const tool = toolFactory?.({ agentAccountId: undefined });

452452453453

requestMock.mockResolvedValueOnce({

@@ -466,7 +466,7 @@ describe("registerFeishuDriveTools", () => {

466466

expect(request.url).toBe(

467467

"/open-apis/drive/v1/files/doc_1/comments/c1/replies?file_type=docx&user_id_type=open_id",

468468

);

469-

expect(infoSpy.mock.calls[0]?.[0]).toContain(

469+

expect(infoSpy.mock.calls.at(0)?.[0]).toContain(

470470

"list_comment_replies missing file_type; defaulting to docx",

471471

);

472472

});

@@ -490,7 +490,7 @@ describe("registerFeishuDriveTools", () => {

490490

}),

491491

);

492492493-

const toolFactory = registerTool.mock.calls[0]?.[0];

493+

const toolFactory = registerTool.mock.calls.at(0)?.[0];

494494

const tool = toolFactory?.({ agentAccountId: undefined });

495495496496

requestMock

@@ -548,7 +548,7 @@ describe("registerFeishuDriveTools", () => {

548548

],

549549

},

550550

});

551-

expect(warnSpy.mock.calls[0]?.[0]).toContain("replyComment threw");

551+

expect(warnSpy.mock.calls.at(0)?.[0]).toContain("replyComment threw");

552552

expect((replyCommentResult.details as { error?: string }).error).toBe(

553553

"Request failed with status code 400",

554554

);

@@ -572,7 +572,7 @@ describe("registerFeishuDriveTools", () => {

572572

}),

573573

);

574574575-

const toolFactory = registerTool.mock.calls[0]?.[0];

575+

const toolFactory = registerTool.mock.calls.at(0)?.[0];

576576

const tool = toolFactory?.({

577577

agentAccountId: undefined,

578578

deliveryContext: {

@@ -670,7 +670,7 @@ describe("registerFeishuDriveTools", () => {

670670

}),

671671

);

672672673-

const toolFactory = registerTool.mock.calls[0]?.[0];

673+

const toolFactory = registerTool.mock.calls.at(0)?.[0];

674674

const tool = toolFactory?.({

675675

agentAccountId: undefined,

676676

deliveryContext: {

@@ -747,7 +747,7 @@ describe("registerFeishuDriveTools", () => {

747747

}),

748748

);

749749750-

const toolFactory = registerTool.mock.calls[0]?.[0];

750+

const toolFactory = registerTool.mock.calls.at(0)?.[0];

751751

const tool = toolFactory?.({

752752

agentAccountId: undefined,

753753

deliveryContext: {

@@ -774,7 +774,7 @@ describe("registerFeishuDriveTools", () => {

774774

file_type: "docx",

775775

reply_elements: [{ type: "text", text: "default add comment" }],

776776

});

777-

expect(infoSpy.mock.calls[0]?.[0]).toContain(

777+

expect(infoSpy.mock.calls.at(0)?.[0]).toContain(

778778

"add_comment missing file_type; defaulting to docx",

779779

);

780780

expect((result.details as { comment_id?: string; success?: boolean }).success).toBe(true);

@@ -800,7 +800,7 @@ describe("registerFeishuDriveTools", () => {

800800

}),

801801

);

802802803-

const toolFactory = registerTool.mock.calls[0]?.[0];

803+

const toolFactory = registerTool.mock.calls.at(0)?.[0];

804804

const tool = toolFactory?.({ agentAccountId: undefined });

805805806806

requestMock

@@ -844,7 +844,7 @@ describe("registerFeishuDriveTools", () => {

844844

},

845845

},

846846

});

847-

expect(infoSpy.mock.calls[0]?.[0]).toContain(

847+

expect(infoSpy.mock.calls.at(0)?.[0]).toContain(

848848

"reply_comment missing file_type; defaulting to docx",

849849

);

850850

expect((result.details as { reply_id?: string; success?: boolean }).success).toBe(true);

@@ -870,7 +870,7 @@ describe("registerFeishuDriveTools", () => {

870870

}),

871871

);

872872873-

const toolFactory = registerTool.mock.calls[0]?.[0];

873+

const toolFactory = registerTool.mock.calls.at(0)?.[0];

874874

const tool = toolFactory?.({ agentAccountId: undefined });

875875876876

requestMock

@@ -906,7 +906,7 @@ describe("registerFeishuDriveTools", () => {

906906

reply_elements: [{ type: "text", text: "whole comment follow-up" }],

907907

},

908908

});

909-

expect(infoSpy.mock.calls[0]?.[0]).toContain("whole-comment compatibility path");

909+

expect(infoSpy.mock.calls.at(0)?.[0]).toContain("whole-comment compatibility path");

910910

const details = result.details as {

911911

comment_id?: string;

912912

delivery_mode?: string;

@@ -936,7 +936,7 @@ describe("registerFeishuDriveTools", () => {

936936

}),

937937

);

938938939-

const toolFactory = registerTool.mock.calls[0]?.[0];

939+

const toolFactory = registerTool.mock.calls.at(0)?.[0];

940940

const tool = toolFactory?.({ agentAccountId: undefined });

941941942942

requestMock.mockRejectedValueOnce(new Error("preflight unavailable")).mockResolvedValueOnce({

@@ -974,7 +974,7 @@ describe("registerFeishuDriveTools", () => {

974974

},

975975

},

976976

});

977-

expect(warnSpy.mock.calls[0]?.[0]).toContain("comment metadata preflight failed");

977+

expect(warnSpy.mock.calls.at(0)?.[0]).toContain("comment metadata preflight failed");

978978

const details = result.details as {

979979

delivery_mode?: string;

980980

reply_id?: string;

@@ -1004,7 +1004,7 @@ describe("registerFeishuDriveTools", () => {

10041004

}),

10051005

);

100610061007-

const toolFactory = registerTool.mock.calls[0]?.[0];

1007+

const toolFactory = registerTool.mock.calls.at(0)?.[0];

10081008

const tool = toolFactory?.({ agentAccountId: undefined });

1009100910101010

requestMock

@@ -1083,7 +1083,7 @@ describe("registerFeishuDriveTools", () => {

10831083

}),

10841084

);

108510851086-

const toolFactory = registerTool.mock.calls[0]?.[0];

1086+

const toolFactory = registerTool.mock.calls.at(0)?.[0];

10871087

const tool = toolFactory?.({ agentAccountId: undefined });

1088108810891089

requestMock

@@ -1131,7 +1131,7 @@ describe("registerFeishuDriveTools", () => {

11311131

reply_elements: [{ type: "text", text: "compat follow-up" }],

11321132

},

11331133

});

1134-

expect(infoSpy.mock.calls[0]?.[0]).toContain("reply-not-allowed compatibility path");

1134+

expect(infoSpy.mock.calls.at(0)?.[0]).toContain("reply-not-allowed compatibility path");

11351135

const details = result.details as {

11361136

comment_id?: string;

11371137

delivery_mode?: string;

@@ -1160,7 +1160,7 @@ describe("registerFeishuDriveTools", () => {

11601160

}),

11611161

);

116211621163-

const toolFactory = registerTool.mock.calls[0]?.[0];

1163+

const toolFactory = registerTool.mock.calls.at(0)?.[0];

11641164

const tool = toolFactory?.({ agentAccountId: undefined });

1165116511661166

requestMock.mockResolvedValueOnce({ code: 0, data: { has_more: false, items: [] } });

@@ -1207,7 +1207,7 @@ describe("registerFeishuDriveTools", () => {

12071207

}),

12081208

);

120912091210-

const toolFactory = registerTool.mock.calls[0]?.[0];

1210+

const toolFactory = registerTool.mock.calls.at(0)?.[0];

12111211

const tool = toolFactory?.({ agentAccountId: undefined });

12121212

const result = await tool.execute("call-5", {

12131213

action: "add_comment",