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

推荐订阅源

MyScale Blog
MyScale Blog
F
Fortinet All Blogs
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
D
Docker
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
爱范儿
爱范儿
V
Visual Studio Blog
Last Week in AI
Last Week in AI
WordPress大学
WordPress大学
aimingoo的专栏
aimingoo的专栏
小众软件
小众软件
L
LangChain Blog
Vercel News
Vercel News
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
P
Proofpoint News Feed
博客园_首页
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss
The GitHub Blog
The GitHub Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
C
Check Point Blog
Engineering at Meta
Engineering at Meta
Microsoft Azure Blog
Microsoft Azure 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
fix(telegram): reuse sticky IPv4 dispatcher for getMe hea...
SymbolStar · 2026-05-15 · via Recent Commits to openclaw:main

@@ -2,11 +2,11 @@ import { withFetchPreconnect } from "openclaw/plugin-sdk/test-env";

22

import { afterEach, describe, expect, it, vi, type Mock } from "vitest";

33

import { probeTelegram, resetTelegramProbeFetcherCacheForTests } from "./probe.js";

445-

const resolveTelegramFetch = vi.hoisted(() => vi.fn());

5+

const resolveTelegramTransport = vi.hoisted(() => vi.fn());

66

const makeProxyFetch = vi.hoisted(() => vi.fn());

7788

vi.mock("./fetch.js", () => ({

9-

resolveTelegramFetch,

9+

resolveTelegramTransport,

1010

resolveTelegramApiBase: (apiRoot?: string) =>

1111

apiRoot?.trim()?.replace(/\/+$/, "") || "https://api.telegram.org",

1212

}));

@@ -19,11 +19,18 @@ describe("probeTelegram retry logic", () => {

1919

const token = "test-token";

2020

const timeoutMs = 5000;

2121

const originalFetch = global.fetch;

22+

let forceFallbackMock: Mock;

22232324

const installFetchMock = (): Mock => {

2425

const fetchMock = vi.fn();

2526

global.fetch = withFetchPreconnect(fetchMock);

26-

resolveTelegramFetch.mockImplementation((proxyFetch?: typeof fetch) => proxyFetch ?? fetch);

27+

forceFallbackMock = vi.fn().mockReturnValue(true);

28+

resolveTelegramTransport.mockImplementation((proxyFetch?: typeof fetch) => ({

29+

fetch: proxyFetch ?? fetch,

30+

sourceFetch: proxyFetch ?? fetch,

31+

forceFallback: forceFallbackMock,

32+

close: async () => {},

33+

}));

2734

makeProxyFetch.mockImplementation(() => fetchMock as unknown as typeof fetch);

2835

return fetchMock;

2936

};

@@ -72,7 +79,7 @@ describe("probeTelegram retry logic", () => {

72797380

afterEach(() => {

7481

resetTelegramProbeFetcherCacheForTests();

75-

resolveTelegramFetch.mockReset();

82+

resolveTelegramTransport.mockReset();

7683

makeProxyFetch.mockReset();

7784

vi.unstubAllEnvs();

7885

vi.clearAllMocks();

@@ -151,7 +158,12 @@ describe("probeTelegram retry logic", () => {

151158

});

152159

});

153160

global.fetch = withFetchPreconnect(fetchMock as unknown as typeof fetch);

154-

resolveTelegramFetch.mockImplementation((proxyFetch?: typeof fetch) => proxyFetch ?? fetch);

161+

resolveTelegramTransport.mockImplementation((proxyFetch?: typeof fetch) => ({

162+

fetch: proxyFetch ?? fetch,

163+

sourceFetch: proxyFetch ?? fetch,

164+

forceFallback: vi.fn().mockReturnValue(true),

165+

close: async () => {},

166+

}));

155167

makeProxyFetch.mockImplementation(() => fetchMock as unknown as typeof fetch);

156168

vi.useFakeTimers();

157169

try {

@@ -226,7 +238,7 @@ describe("probeTelegram retry logic", () => {

226238

});

227239228240

expect(makeProxyFetch).toHaveBeenCalledWith("http://127.0.0.1:8888");

229-

expect(resolveTelegramFetch).toHaveBeenCalledWith(fetchMock, {

241+

expect(resolveTelegramTransport).toHaveBeenCalledWith(fetchMock, {

230242

network: {

231243

autoSelectFamily: false,

232244

dnsResultOrder: "ipv4first",

@@ -257,7 +269,7 @@ describe("probeTelegram retry logic", () => {

257269

},

258270

});

259271260-

expect(resolveTelegramFetch).toHaveBeenCalledTimes(1);

272+

expect(resolveTelegramTransport).toHaveBeenCalledTimes(1);

261273

});

262274263275

it("does not reuse probe fetcher cache when network settings differ", async () => {

@@ -283,7 +295,7 @@ describe("probeTelegram retry logic", () => {

283295

},

284296

});

285297286-

expect(resolveTelegramFetch).toHaveBeenCalledTimes(2);

298+

expect(resolveTelegramTransport).toHaveBeenCalledTimes(2);

287299

});

288300289301

it("reuses probe fetcher cache across token rotation when accountId is stable", async () => {

@@ -311,6 +323,48 @@ describe("probeTelegram retry logic", () => {

311323

},

312324

});

313325314-

expect(resolveTelegramFetch).toHaveBeenCalledTimes(1);

326+

expect(resolveTelegramTransport).toHaveBeenCalledTimes(1);

327+

});

328+329+

it("calls forceFallback on the transport when getMe times out so subsequent probes use IPv4", async () => {

330+

const fetchMock = vi.fn();

331+

const localForceFallback = vi.fn().mockReturnValue(true);

332+

resolveTelegramTransport.mockImplementation(() => ({

333+

fetch: withFetchPreconnect(fetchMock),

334+

sourceFetch: fetchMock,

335+

forceFallback: localForceFallback,

336+

close: async () => {},

337+

}));

338+339+

// First call: timeout (simulate IPv6 hang)

340+

const timeoutError = new Error("request timed out");

341+

timeoutError.name = "TimeoutError";

342+

fetchMock.mockRejectedValueOnce(timeoutError);

343+

// Second call (retry after forceFallback): success on IPv4

344+

fetchMock.mockResolvedValueOnce({

345+

ok: true,

346+

json: vi.fn().mockResolvedValue({

347+

ok: true,

348+

result: { id: 1, is_bot: true, first_name: "Bot", username: "bot" },

349+

}),

350+

});

351+

// Webhook info

352+

fetchMock.mockResolvedValueOnce({

353+

ok: true,

354+

json: vi.fn().mockResolvedValue({ ok: true, result: { url: "" } }),

355+

});

356+357+

vi.useFakeTimers();

358+

try {

359+

const probePromise = probeTelegram(token, 30_000);

360+

await vi.advanceTimersByTimeAsync(1000);

361+362+

const result = await probePromise;

363+

expect(result.ok).toBe(true);

364+

expect(localForceFallback).toHaveBeenCalledWith("probe timeout/network error");

365+

expect(fetchMock).toHaveBeenCalledTimes(3); // 1 failed + 1 getMe success + 1 webhook

366+

} finally {

367+

vi.useRealTimers();

368+

}

315369

});

316370

});