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

推荐订阅源

博客园 - Franky
Apple Machine Learning Research
Apple Machine Learning Research
月光博客
月光博客
Vercel News
Vercel News
Recent Announcements
Recent Announcements
B
Blog RSS Feed
Y
Y Combinator Blog
M
MIT News - Artificial intelligence
MongoDB | Blog
MongoDB | Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
雷峰网
雷峰网
D
Docker
Jina AI
Jina AI
IT之家
IT之家
人人都是产品经理
人人都是产品经理
L
LangChain Blog
G
Google Developers Blog
Google DeepMind News
Google DeepMind News
MyScale Blog
MyScale Blog
博客园 - 叶小钗
The GitHub Blog
The GitHub Blog
The Cloudflare Blog
A
About on SuperTechFans
Hugging Face - Blog
Hugging Face - 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: clear telegram bot broad matchers · openclaw/opencl...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -161,6 +161,36 @@ function requireValue<T>(value: T | null | undefined, label: string): T {

161161

return value;

162162

}

163163164+

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

165+

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

166+

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

167+

}

168+

return value as Record<string, unknown>;

169+

}

170+171+

function expectRecordFields(

172+

value: unknown,

173+

expected: Record<string, unknown>,

174+

label: string,

175+

): Record<string, unknown> {

176+

const record = requireRecord(value, label);

177+

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

178+

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

179+

}

180+

return record;

181+

}

182+183+

function getBotCtorOptions(callIndex = 0): Record<string, unknown> {

184+

const call = requireValue(botCtorSpy.mock.calls[callIndex], `bot constructor call ${callIndex}`);

185+

expect(call[0]).toBe("tok");

186+

return requireRecord(call[1], `bot constructor options ${callIndex}`);

187+

}

188+189+

function expectBotClientFields(expected: Record<string, unknown>, callIndex = 0): void {

190+

const options = getBotCtorOptions(callIndex);

191+

expectRecordFields(options.client, expected, `bot constructor client ${callIndex}`);

192+

}

193+164194

describe("createTelegramBot", () => {

165195

beforeAll(() => {

166196

process.env.TZ = "UTC";

@@ -242,12 +272,7 @@ describe("createTelegramBot", () => {

242272

},

243273

});

244274

createTelegramBot({ token: "tok" });

245-

expect(botCtorSpy).toHaveBeenCalledWith(

246-

"tok",

247-

expect.objectContaining({

248-

client: expect.objectContaining({ timeoutSeconds: 60 }),

249-

}),

250-

);

275+

expectBotClientFields({ timeoutSeconds: 60 });

251276

botCtorSpy.mockClear();

252277253278

loadConfig.mockReturnValue({

@@ -263,12 +288,7 @@ describe("createTelegramBot", () => {

263288

},

264289

});

265290

createTelegramBot({ token: "tok", accountId: "foo" });

266-

expect(botCtorSpy).toHaveBeenCalledWith(

267-

"tok",

268-

expect.objectContaining({

269-

client: expect.objectContaining({ timeoutSeconds: 61 }),

270-

}),

271-

);

291+

expectBotClientFields({ timeoutSeconds: 61 });

272292

});

273293274294

it("keeps low timeoutSeconds above the outbound request guard", () => {

@@ -278,12 +298,7 @@ describe("createTelegramBot", () => {

278298

},

279299

});

280300

createTelegramBot({ token: "tok" });

281-

expect(botCtorSpy).toHaveBeenCalledWith(

282-

"tok",

283-

expect.objectContaining({

284-

client: expect.objectContaining({ timeoutSeconds: 60 }),

285-

}),

286-

);

301+

expectBotClientFields({ timeoutSeconds: 60 });

287302

});

288303289304

it("keeps polling client timeout above the outbound request guard", () => {

@@ -293,12 +308,7 @@ describe("createTelegramBot", () => {

293308

},

294309

});

295310

createTelegramBot({ token: "tok", minimumClientTimeoutSeconds: 45 });

296-

expect(botCtorSpy).toHaveBeenCalledWith(

297-

"tok",

298-

expect.objectContaining({

299-

client: expect.objectContaining({ timeoutSeconds: 60 }),

300-

}),

301-

);

311+

expectBotClientFields({ timeoutSeconds: 60 });

302312

});

303313304314

it("passes startup probe botInfo to grammY", () => {

@@ -319,12 +329,7 @@ describe("createTelegramBot", () => {

319329320330

createTelegramBot({ token: "tok", botInfo });

321331322-

expect(botCtorSpy).toHaveBeenCalledWith(

323-

"tok",

324-

expect.objectContaining({

325-

botInfo,

326-

}),

327-

);

332+

expect(getBotCtorOptions().botInfo).toBe(botInfo);

328333

});

329334330335

it("normalizes full Telegram bot endpoint apiRoot before passing it to grammY", () => {

@@ -340,12 +345,7 @@ describe("createTelegramBot", () => {

340345341346

createTelegramBot({ token: "tok" });

342347343-

expect(botCtorSpy).toHaveBeenCalledWith(

344-

"tok",

345-

expect.objectContaining({

346-

client: expect.objectContaining({ apiRoot: "https://api.telegram.org" }),

347-

}),

348-

);

348+

expectBotClientFields({ apiRoot: "https://api.telegram.org" });

349349

});

350350351351

it("sequentializes updates by chat and thread", () => {

@@ -949,7 +949,8 @@ describe("createTelegramBot", () => {

949949

it("wraps inbound message with Telegram envelope", async () => {

950950

await withEnvAsync({ TZ: "Europe/Vienna" }, async () => {

951951

createTelegramBot({ token: "tok" });

952-

expect(onSpy).toHaveBeenCalledWith("message", expect.any(Function));

952+

const messageRegistration = onSpy.mock.calls.find(([event]) => event === "message");

953+

expect(messageRegistration?.[1]).toBeTypeOf("function");

953954

const handler = getOnHandler("message") as (ctx: Record<string, unknown>) => Promise<void>;

954955955956

const message = {

@@ -1041,9 +1042,7 @@ describe("createTelegramBot", () => {

10411042

expect(pairingText, testCase.name).toContain(`Your Telegram user id: ${senderId}`);

10421043

expect(pairingText, testCase.name).toContain("Pairing code:");

10431044

expect(pairingText, testCase.name).toContain("openclaw pairing approve telegram");

1044-

expect(sendMessageSpy.mock.calls[0]?.[2], testCase.name).toEqual(

1045-

expect.objectContaining({ parse_mode: "HTML" }),

1046-

);

1045+

expectRecordFields(sendMessageSpy.mock.calls[0]?.[2], { parse_mode: "HTML" }, testCase.name);

10471046

}

10481047

});

10491048

@@ -1123,8 +1122,10 @@ describe("createTelegramBot", () => {

11231122

const pairingText = String(sendMessageSpy.mock.calls[0]?.[1]);

11241123

expect(pairingText).toContain("Pairing code:");

11251124

expect(pairingText).toContain("<pre><code>");

1126-

expect(sendMessageSpy.mock.calls[0]?.[2]).toEqual(

1127-

expect.objectContaining({ parse_mode: "HTML" }),

1125+

expectRecordFields(

1126+

sendMessageSpy.mock.calls[0]?.[2],

1127+

{ parse_mode: "HTML" },

1128+

"pairing reply options",

11281129

);

11291130

expect(replySpy).not.toHaveBeenCalled();

11301131

} finally {

@@ -1243,8 +1244,10 @@ describe("createTelegramBot", () => {

12431244

const pairingText = String(sendMessageSpy.mock.calls[0]?.[1]);

12441245

expect(pairingText).toContain("Pairing code:");

12451246

expect(pairingText).toContain("<pre><code>");

1246-

expect(sendMessageSpy.mock.calls[0]?.[2]).toEqual(

1247-

expect.objectContaining({ parse_mode: "HTML" }),

1247+

expectRecordFields(

1248+

sendMessageSpy.mock.calls[0]?.[2],

1249+

{ parse_mode: "HTML" },

1250+

"album pairing reply options",

12481251

);

12491252

expect(replySpy).not.toHaveBeenCalled();

12501253

} finally {

@@ -2366,7 +2369,10 @@ describe("createTelegramBot", () => {

23662369

});

2367237023682371

expect(sendAnimationSpy).toHaveBeenCalledTimes(1);

2369-

expect(sendAnimationSpy).toHaveBeenCalledWith("1234", expect.anything(), {

2372+

const animationCall = requireValue(sendAnimationSpy.mock.calls[0], "animation send call");

2373+

expect(animationCall[0]).toBe("1234");

2374+

requireValue(animationCall[1], "animation payload");

2375+

expect(animationCall[2]).toEqual({

23702376

caption: "caption",

23712377

parse_mode: "HTML",

23722378

reply_to_message_id: undefined,

@@ -2826,14 +2832,16 @@ describe("createTelegramBot", () => {

2826283228272833

expect(getChatSpy).toHaveBeenCalledOnce();

28282834

expect(getChatSpy).toHaveBeenCalledWith(-1001234567890);

2829-

expect(dispatchCall?.ctx).toEqual(

2830-

expect.objectContaining({

2831-

SessionKey: expect.stringContaining("telegram:group:-1001234567890:topic:1"),

2835+

const dispatchCtx = expectRecordFields(

2836+

dispatchCall?.ctx,

2837+

{

28322838

From: "telegram:group:-1001234567890:topic:1",

28332839

MessageThreadId: 1,

28342840

IsForum: true,

2835-

}),

2841+

},

2842+

"forum dispatch context",

28362843

);

2844+

expect(String(dispatchCtx.SessionKey)).toContain("telegram:group:-1001234567890:topic:1");

28372845

expect(sendChatActionSpy).toHaveBeenCalledWith(-1001234567890, "typing", {

28382846

message_thread_id: 1,

28392847

});

@@ -3264,10 +3272,13 @@ describe("createTelegramBot", () => {

32643272

match: "",

32653273

});

326632743267-

expect(sendMessageSpy).toHaveBeenCalledWith(

3268-

"-1001234567890",

3269-

expect.any(String),

3270-

expect.objectContaining({ message_thread_id: 99, reply_to_message_id: 42 }),

3275+

const statusCall = requireValue(sendMessageSpy.mock.calls[0], "status reply call");

3276+

expect(statusCall[0]).toBe("-1001234567890");

3277+

expect(statusCall[1]).toBeTypeOf("string");

3278+

expectRecordFields(

3279+

statusCall[2],

3280+

{ message_thread_id: 99, reply_to_message_id: 42 },

3281+

"status reply options",

32713282

);

32723283

});

32733284

it("reloads native command routing bindings between invocations without recreating the bot", async () => {