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

推荐订阅源

Recent Announcements
Recent Announcements
J
Java Code Geeks
雷峰网
雷峰网
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
腾讯CDC
博客园 - 司徒正美
B
Blog RSS Feed
博客园 - 三生石上(FineUI控件)
I
InfoQ
N
Netflix TechBlog - Medium
L
LangChain Blog
博客园_首页
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
Tailwind CSS Blog
MyScale Blog
MyScale Blog
美团技术团队
The Cloudflare Blog
爱范儿
爱范儿
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
H
Help Net Security
Martin Fowler
Martin Fowler
V
Visual Studio Blog

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

@@ -110,8 +110,14 @@ function requireMockCall<T extends unknown[]>(call: T | undefined, label: string

110110

return call;

111111

}

112112113+

function mockCall(mock: ReturnType<typeof vi.fn>, index: number, label: string): unknown[] {

114+

const calls = mock.mock.calls;

115+

const resolvedIndex = index < 0 ? calls.length + index : index;

116+

return requireMockCall(calls[resolvedIndex], label);

117+

}

118+113119

function firstMockCall(mock: ReturnType<typeof vi.fn>, label: string): unknown[] {

114-

return requireMockCall(mock.mock.calls.at(0), label);

120+

return mockCall(mock, 0, label);

115121

}

116122117123

function requireString(value: unknown, label: string): string {

@@ -121,6 +127,10 @@ function requireString(value: unknown, label: string): string {

121127

return value;

122128

}

123129130+

function mockCallText(call: unknown[], label: string): string {

131+

return requireString(call[1], label);

132+

}

133+124134

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

125135

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

126136

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

@@ -144,7 +154,7 @@ function expectMediaSendCall(

144154145155

function expectPersistedTarget(fields: Record<string, unknown>): void {

146156

const [target] = requireMockCall(

147-

maybePersistResolvedTelegramTarget.mock.calls.at(-1),

157+

mockCall(maybePersistResolvedTelegramTarget, -1, "persisted Telegram target"),

148158

"persisted Telegram target",

149159

);

150160

const record = requireRecord(target, "persisted Telegram target");

@@ -1985,10 +1995,15 @@ describe("sendMessageTelegram", () => {

19851995

message_thread_id: 271,

19861996

},

19871997

);

1988-

expectMediaSendCall(sendPhoto.mock.calls.at(1), "second send photo call", chatId, {

1989-

caption: "photo",

1990-

parse_mode: "HTML",

1991-

});

1998+

expectMediaSendCall(

1999+

mockCall(sendPhoto, 1, "second send photo call"),

2000+

"second send photo call",

2001+

chatId,

2002+

{

2003+

caption: "photo",

2004+

parse_mode: "HTML",

2005+

},

2006+

);

19922007

expect(res.messageId).toBe("59");

19932008

});

19942009

@@ -2082,7 +2097,7 @@ describe("sendMessageTelegram", () => {

2082209720832098

expect(sendMessage).toHaveBeenCalledTimes(2);

20842099

const firstCall = firstMockCall(sendMessage, "first sendMessage call");

2085-

const secondCall = requireMockCall(sendMessage.mock.calls.at(1), "second sendMessage call");

2100+

const secondCall = mockCall(sendMessage, 1, "second sendMessage call");

20862101

const firstParams = requireRecord(firstCall[2], "first sendMessage params");

20872102

const secondParams = requireRecord(secondCall[2], "second sendMessage params");

20882103

expect((firstCall[1] as string).length).toBeLessThanOrEqual(4000);

@@ -2113,7 +2128,7 @@ describe("sendMessageTelegram", () => {

2113212821142129

expect(sendMessage).toHaveBeenCalledTimes(2);

21152130

const firstCall = firstMockCall(sendMessage, "first sendMessage call");

2116-

const secondCall = requireMockCall(sendMessage.mock.calls.at(1), "second sendMessage call");

2131+

const secondCall = mockCall(sendMessage, 1, "second sendMessage call");

21172132

const firstParams = requireRecord(firstCall[2], "first sendMessage params");

21182133

const secondParams = requireRecord(secondCall[2], "second sendMessage params");

21192134

const firstText = requireString(firstCall[1], "first sendMessage text");

@@ -2155,9 +2170,15 @@ describe("sendMessageTelegram", () => {

21552170

});

2156217121572172

expect(sendMessage).toHaveBeenCalledTimes(4);

2158-

const plainFallbackCalls = [sendMessage.mock.calls.at(1), sendMessage.mock.calls.at(3)];

2159-

expect(plainFallbackCalls.map((call) => String(call?.[1] ?? "")).join("")).toBe(plainText);

2160-

expect(plainFallbackCalls.map((call) => String(call?.[1] ?? "")).join("")).not.toContain("<");

2173+

const plainFallbackCalls = [

2174+

mockCall(sendMessage, 1, "first plain fallback sendMessage call"),

2175+

mockCall(sendMessage, 3, "second plain fallback sendMessage call"),

2176+

];

2177+

const plainFallbackText = plainFallbackCalls

2178+

.map((call) => mockCallText(call, "plain fallback text"))

2179+

.join("");

2180+

expect(plainFallbackText).toBe(plainText);

2181+

expect(plainFallbackText).not.toContain("<");

21612182

expect(res.messageId).toBe("91");

21622183

});

21632184

@@ -2188,11 +2209,15 @@ describe("sendMessageTelegram", () => {

21882209

expect(

21892210

requireString(firstMockCall(sendMessage, "sendMessage call")[1], "sendMessage text"),

21902211

).toMatch(/^&/);

2191-

const plainFallbackCalls = [sendMessage.mock.calls.at(1), sendMessage.mock.calls.at(3)];

2192-

expect(plainFallbackCalls.map((call) => String(call?.[1] ?? "")).join("")).toBe(plainText);

2193-

expect(

2194-

plainFallbackCalls.map((call) => String(call?.[1] ?? "")).filter((text) => text === ""),

2195-

).toEqual([]);

2212+

const plainFallbackCalls = [

2213+

mockCall(sendMessage, 1, "first plain fallback sendMessage call"),

2214+

mockCall(sendMessage, 3, "second plain fallback sendMessage call"),

2215+

];

2216+

const plainFallbackTexts = plainFallbackCalls.map((call) =>

2217+

mockCallText(call, "plain fallback text"),

2218+

);

2219+

expect(plainFallbackTexts.join("")).toBe(plainText);

2220+

expect(plainFallbackTexts.filter((text) => text === "")).toEqual([]);

21962221

expect(res.messageId).toBe("93");

21972222

});

21982223

@@ -2749,7 +2774,7 @@ describe("editMessageTelegram", () => {

2749277427502775

if ("secondExpectReplyMarkup" in testCase && testCase.secondExpectReplyMarkup) {

27512776

const secondParams = requireRecord(

2752-

(botApi.editMessageText.mock.calls.at(1) ?? [])[3],

2777+

mockCall(botApi.editMessageText, 1, "second editMessageText call")[3],

27532778

"second edit params",

27542779

);

27552780

expect(secondParams.reply_markup, testCase.name).toEqual(testCase.secondExpectReplyMarkup);

@@ -2885,8 +2910,8 @@ describe("sendPollTelegram", () => {

28852910

.message_thread_id,

28862911

).toBe(99);

28872912

expect(

2888-

(api.sendPoll.mock.calls.at(1)?.[3] as { message_thread_id?: unknown } | undefined)

2889-

?.message_thread_id,

2913+

(mockCall(api.sendPoll, 1, "second send poll call")[3] as { message_thread_id?: unknown })

2914+

.message_thread_id,

28902915

).toBeUndefined();

28912916

});

28922917