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

推荐订阅源

H
Help Net Security
爱范儿
爱范儿
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
大猫的无限游戏
大猫的无限游戏
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Vercel News
Vercel News
人人都是产品经理
人人都是产品经理
G
Google Developers Blog
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
雷峰网
雷峰网
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
博客园 - 叶小钗
D
DataBreaches.Net
D
Docker
月光博客
月光博客
博客园 - 司徒正美
Last Week in AI
Last Week in AI
有赞技术团队
有赞技术团队
腾讯CDC
酷 壳 – CoolShell
酷 壳 – CoolShell

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): cool down transient sendChatAction failure...
openclaw-clo · 2026-06-15 · via Recent Commits to openclaw:main
1-

// Telegram tests cover sendchataction 401 backoff plugin behavior.

1+

// Telegram tests cover sendchataction 401 and transient backoff plugin behavior.

22

import { beforeAll, describe, expect, it, vi } from "vitest";

3344

const mocks = vi.hoisted(() => ({

@@ -20,6 +20,13 @@ describe("createTelegramSendChatActionHandler", () => {

20202121

const make401Error = () => new Error("401 Unauthorized");

2222

const make500Error = () => new Error("500 Internal Server Error");

23+

const makeNetworkError = () =>

24+

Object.assign(new Error("read ECONNRESET"), { code: "ECONNRESET" });

25+

const makeTelegramError = (

26+

message: string,

27+

error_code: number,

28+

parameters?: { retry_after?: number },

29+

) => Object.assign(new Error(message), { error_code, parameters });

23302431

it("calls sendChatActionFn on success", async () => {

2532

const fn = vi.fn().mockResolvedValue(true);

@@ -169,6 +176,96 @@ describe("createTelegramSendChatActionHandler", () => {

169176

expect(handler.isSuspended()).toBe(false);

170177

});

171178179+

it.each([

180+

["recoverable network", () => makeNetworkError(), 1000],

181+

["Telegram 429", () => makeTelegramError("Too Many Requests", 429, { retry_after: 2 }), 2000],

182+

["Telegram 5xx", () => makeTelegramError("Bad Gateway", 502), 1000],

183+

])("cools down transient %s errors", async (_name, makeError, expectedCooldownMs) => {

184+

let now = 10_000;

185+

const fn = vi.fn().mockRejectedValueOnce(makeError()).mockResolvedValue(true);

186+

const logger = vi.fn();

187+

const handler = createTelegramSendChatActionHandler({

188+

sendChatActionFn: fn,

189+

logger,

190+

now: () => now,

191+

});

192+193+

await expect(handler.sendChatAction(123, "typing")).rejects.toThrow();

194+

expect(logger.mock.calls.at(-1)).toEqual([

195+

`sendChatAction transient error (1). Cooling down ${expectedCooldownMs}ms before retry.`,

196+

]);

197+198+

now += expectedCooldownMs - 1;

199+

await expect(handler.sendChatAction(123, "typing")).rejects.toThrow(

200+

"transient cooldown active",

201+

);

202+

expect(fn).toHaveBeenCalledTimes(1);

203+204+

now += 1;

205+

await handler.sendChatAction(123, "typing");

206+

expect(fn).toHaveBeenCalledTimes(2);

207+

});

208+209+

it("rejects transient keepalive ticks until same-chat coalescing expires", async () => {

210+

let now = 0;

211+

const fn = vi

212+

.fn()

213+

.mockRejectedValueOnce(makeTelegramError("Bad Gateway", 502))

214+

.mockResolvedValue(true);

215+

const logger = vi.fn();

216+

const handler = createTelegramSendChatActionHandler({

217+

sendChatActionFn: fn,

218+

logger,

219+

minIntervalMs: 4000,

220+

now: () => now,

221+

});

222+223+

await expect(handler.sendChatAction(-100, "typing")).rejects.toThrow("Bad Gateway");

224+

expect(logger.mock.calls.at(-1)).toEqual([

225+

"sendChatAction transient error (1). Cooling down 4000ms before retry.",

226+

]);

227+228+

now = 3000;

229+

await expect(handler.sendChatAction(-100, "typing")).rejects.toThrow(

230+

"transient cooldown active",

231+

);

232+

expect(fn).toHaveBeenCalledTimes(1);

233+234+

now = 4000;

235+

await handler.sendChatAction(-100, "typing");

236+

expect(fn).toHaveBeenCalledTimes(2);

237+

});

238+239+

it("resets transient counters on non-transient errors", async () => {

240+

let now = 1000;

241+

const fn = vi

242+

.fn()

243+

.mockRejectedValueOnce(makeTelegramError("Bad Gateway", 502))

244+

.mockRejectedValueOnce(new Error("400 Bad Request"))

245+

.mockRejectedValueOnce(makeTelegramError("Bad Gateway", 502));

246+

const logger = vi.fn();

247+

const handler = createTelegramSendChatActionHandler({

248+

sendChatActionFn: fn,

249+

logger,

250+

now: () => now,

251+

});

252+253+

await expect(handler.sendChatAction(123, "typing")).rejects.toThrow("Bad Gateway");

254+

now = 2000;

255+

await expect(handler.sendChatAction(123, "typing")).rejects.toThrow("400 Bad Request");

256+

now = 3000;

257+

await expect(handler.sendChatAction(123, "typing")).rejects.toThrow("Bad Gateway");

258+259+

expect(

260+

logger.mock.calls.filter(([message]) =>

261+

String(message).startsWith("sendChatAction transient error"),

262+

),

263+

).toEqual([

264+

["sendChatAction transient error (1). Cooling down 1000ms before retry."],

265+

["sendChatAction transient error (1). Cooling down 1000ms before retry."],

266+

]);

267+

});

268+172269

it("reset() clears suspension", async () => {

173270

const fn = vi.fn().mockRejectedValue(make401Error());

174271

const logger = vi.fn();