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

推荐订阅源

IT之家
IT之家
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog RSS Feed
U
Unit 42
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
雷峰网
雷峰网
罗磊的独立博客
Microsoft Security Blog
Microsoft Security Blog
Hugging Face - Blog
Hugging Face - Blog
L
LangChain Blog
人人都是产品经理
人人都是产品经理
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Help Net Security
P
Proofpoint News Feed
The Cloudflare Blog
D
Docker
大猫的无限游戏
大猫的无限游戏

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
fix(telegram): clean rich message CI gates · openclaw/ope...
obviyus · 2026-06-14 · via Recent Commits to openclaw:main

@@ -17,6 +17,7 @@ import {

1717

} from "./message-cache.js";

1818

import { clearTelegramRuntime, setTelegramRuntime } from "./runtime.js";

1919

import type { TelegramRuntime } from "./runtime.types.js";

20+

import type { TelegramApiOverride } from "./send.js";

2021

import {

2122

getTelegramSendTestMocks,

2223

importTelegramSendModule,

@@ -64,7 +65,12 @@ const {

6465

} = telegramSendModule;

6566

const sendMessageTelegramImpl = sendMessageTelegramImported;

666767-

type RichRawTextTestApi = Bot["api"] & {

68+

type RichSendCallParams = {

69+

rich_message?: { markdown?: string; html?: string };

70+

reply_markup?: unknown;

71+

};

72+73+

type RichRawTextTestApi = Omit<TelegramApiOverride, "raw" | "sendMessage"> & {

6874

raw?: {

6975

sendRichMessage?: (params: {

7076

chat_id: number | string;

@@ -85,26 +91,30 @@ function richTextForTest(richMessage: { markdown?: string; html?: string }): str

8591

: (richMessage.html ?? "");

8692

}

879388-

function withRichRawTextTestApi(api: Bot["api"] | undefined): Bot["api"] | undefined {

94+

function richSendCallParams(): RichSendCallParams[] {

95+

return botRawApi.sendRichMessage.mock.calls.map(([params]) => params);

96+

}

97+98+

function withRichRawTextTestApi(

99+

api: TelegramApiOverride | undefined,

100+

): TelegramApiOverride | undefined {

89101

if (!api) {

90102

return undefined;

91103

}

92104

const textApi = api as RichRawTextTestApi;

93105

if (textApi.raw?.sendRichMessage || !textApi.sendMessage) {

94106

return api;

95107

}

96-

return {

97-

...textApi,

98-

raw: {

99-

...textApi.raw,

100-

sendRichMessage: async ({ chat_id, rich_message, ...params }) =>

101-

await textApi.sendMessage?.(chat_id, richTextForTest(rich_message), {

102-

parse_mode: "HTML",

103-

...(rich_message.skip_entity_detection === true ? { skip_entity_detection: true } : {}),

104-

...params,

105-

}),

106-

},

107-

} as Bot["api"];

108+

textApi.raw = {

109+

...textApi.raw,

110+

sendRichMessage: async ({ chat_id, rich_message, ...params }) =>

111+

await textApi.sendMessage?.(chat_id, richTextForTest(rich_message), {

112+

parse_mode: "HTML",

113+

...(rich_message.skip_entity_detection === true ? { skip_entity_detection: true } : {}),

114+

...params,

115+

}),

116+

};

117+

return api;

108118

}

109119110120

const sendMessageTelegram: typeof sendMessageTelegramImpl = async (to, text, opts) =>

@@ -1060,9 +1070,7 @@ describe("sendMessageTelegram", () => {

10601070

});

1061107110621072

expect(botRawApi.sendRichMessage.mock.calls.length).toBeGreaterThan(1);

1063-

const chunks = botRawApi.sendRichMessage.mock.calls.map(

1064-

([params]: [{ rich_message?: { markdown?: string } }]) => params.rich_message?.markdown ?? "",

1065-

);

1073+

const chunks = richSendCallParams().map((params) => params.rich_message?.markdown ?? "");

10661074

const joinedChunks = chunks.join("\n");

10671075

expect(joinedChunks.startsWith("# Long")).toBe(true);

10681076

expect(joinedChunks.match(/\*\*section\*\* with _style_ and `code`/g)?.length).toBe(3000);

@@ -1078,9 +1086,7 @@ describe("sendMessageTelegram", () => {

10781086

token: "tok",

10791087

});

108010881081-

const chunks = botRawApi.sendRichMessage.mock.calls.map(

1082-

([params]: [{ rich_message?: { markdown?: string; html?: string } }]) => params.rich_message,

1083-

);

1089+

const chunks = richSendCallParams().map((params) => params.rich_message);

10841090

expect(chunks.length).toBeGreaterThan(1);

10851091

expect(chunks.every((chunk) => chunk?.html === undefined)).toBe(true);

10861092

expect(chunks.every((chunk) => (chunk?.markdown ?? "").length <= 32_768)).toBe(true);

@@ -1098,10 +1104,7 @@ describe("sendMessageTelegram", () => {

10981104

token: "tok",

10991105

});

110011061101-

const chunks = botRawApi.sendRichMessage.mock.calls.map(

1102-

([params]: [{ rich_message?: { markdown?: string; html?: string } }]) =>

1103-

params.rich_message?.markdown ?? "",

1104-

);

1107+

const chunks = richSendCallParams().map((params) => params.rich_message?.markdown ?? "");

11051108

expect(chunks).toHaveLength(2);

11061109

expect(

11071110

chunks.every(

@@ -1120,10 +1123,7 @@ describe("sendMessageTelegram", () => {

11201123

token: "tok",

11211124

});

112211251123-

const chunks = botRawApi.sendRichMessage.mock.calls.map(

1124-

([params]: [{ rich_message?: { markdown?: string; html?: string } }]) =>

1125-

params.rich_message?.markdown ?? "",

1126-

);

1126+

const chunks = richSendCallParams().map((params) => params.rich_message?.markdown ?? "");

11271127

expect(chunks).toHaveLength(2);

11281128

expect(chunks.at(0)?.match(/^# /gm)).toHaveLength(500);

11291129

expect(chunks.at(1)?.match(/^# /gm)).toHaveLength(100);

@@ -1212,10 +1212,7 @@ describe("sendMessageTelegram", () => {

12121212

token: "tok",

12131213

});

121412141215-

const chunks = botRawApi.sendRichMessage.mock.calls.map(

1216-

([params]: [{ rich_message?: { markdown?: string; html?: string } }]) =>

1217-

params.rich_message?.markdown ?? "",

1218-

);

1215+

const chunks = richSendCallParams().map((params) => params.rich_message?.markdown ?? "");

12191216

expect(chunks.length).toBeGreaterThan(1);

12201217

expect(chunks.every((chunk) => chunk.length <= 32_768)).toBe(true);

12211218

expect(chunks.every((chunk) => chunk.startsWith("~~~ts\n"))).toBe(true);

@@ -1234,9 +1231,7 @@ describe("sendMessageTelegram", () => {

12341231

});

1235123212361233

expect(botRawApi.sendRichMessage.mock.calls.length).toBeGreaterThan(1);

1237-

const calls = botRawApi.sendRichMessage.mock.calls.map(

1238-

([params]: [{ rich_message?: { html?: string }; reply_markup?: unknown }]) => params,

1239-

);

1234+

const calls = richSendCallParams();

12401235

expect(calls.every((params) => (params.rich_message?.html ?? "").length <= 32_768)).toBe(true);

12411236

expect(calls.at(0)?.rich_message?.html).toMatch(/^<b>A/);

12421237

expect(calls.at(-1)?.rich_message?.html).toMatch(/A<\/b>$/);