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

推荐订阅源

S
SegmentFault 最新的问题
爱范儿
爱范儿
博客园 - Franky
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
IT之家
IT之家
有赞技术团队
有赞技术团队
美团技术团队
Last Week in AI
Last Week in AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
The Cloudflare Blog
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Engineering at Meta
Engineering at Meta
T
Tailwind CSS Blog
J
Java Code Geeks
Martin Fowler
Martin Fowler
I
InfoQ
小众软件
小众软件
MongoDB | Blog
MongoDB | 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): honor managed proxy env · openclaw/opencla...
steipete · 2026-04-29 · via Recent Commits to openclaw:main

@@ -123,6 +123,7 @@ beforeEach(() => {

123123

"https_proxy",

124124

"NO_PROXY",

125125

"no_proxy",

126+

"OPENCLAW_PROXY_URL",

126127

]) {

127128

vi.stubEnv(key, "");

128129

}

@@ -386,6 +387,11 @@ describe("resolveTelegramFetch", () => {

386387

await resolved("https://api.telegram.org/botx/getMe");

387388388389

expect(EnvHttpProxyAgentCtor).toHaveBeenCalledTimes(1);

390+

expect(EnvHttpProxyAgentCtor).toHaveBeenCalledWith(

391+

expect.objectContaining({

392+

httpsProxy: "http://127.0.0.1:7890",

393+

}),

394+

);

389395

expect(AgentCtor).not.toHaveBeenCalled();

390396391397

const dispatcher = getDispatcherFromUndiciCall(1);

@@ -421,6 +427,80 @@ describe("resolveTelegramFetch", () => {

421427

);

422428

});

423429430+

it("uses OPENCLAW_PROXY_URL as a Telegram explicit proxy when proxy env is absent", async () => {

431+

vi.stubEnv("OPENCLAW_PROXY_URL", "http://127.0.0.1:7788");

432+

undiciFetch.mockResolvedValue({ ok: true } as Response);

433+434+

const transport = resolveTelegramTransport(undefined, {

435+

network: {

436+

autoSelectFamily: false,

437+

dnsResultOrder: "ipv4first",

438+

},

439+

});

440+441+

await transport.fetch("https://api.telegram.org/botTOKEN/getMe");

442+443+

expect(ProxyAgentCtor).toHaveBeenCalledTimes(1);

444+

expect(ProxyAgentCtor).toHaveBeenCalledWith(

445+

expect.objectContaining({

446+

allowH2: false,

447+

uri: "http://127.0.0.1:7788",

448+

requestTls: expect.objectContaining({

449+

autoSelectFamily: false,

450+

}),

451+

}),

452+

);

453+

expect(EnvHttpProxyAgentCtor).not.toHaveBeenCalled();

454+

expect(AgentCtor).not.toHaveBeenCalled();

455+

expect(transport.dispatcherAttempts?.[0]?.dispatcherPolicy).toEqual(

456+

expect.objectContaining({

457+

mode: "explicit-proxy",

458+

proxyUrl: "http://127.0.0.1:7788",

459+

}),

460+

);

461+

});

462+463+

it("preserves caller-provided custom fetch when OPENCLAW_PROXY_URL is present", async () => {

464+

vi.stubEnv("OPENCLAW_PROXY_URL", "http://127.0.0.1:7788");

465+

const proxyFetch = vi.fn(async () => ({ ok: true }) as Response) as unknown as typeof fetch;

466+467+

const transport = resolveTelegramTransport(proxyFetch, {

468+

network: {

469+

autoSelectFamily: false,

470+

dnsResultOrder: "ipv4first",

471+

},

472+

});

473+474+

await transport.fetch("https://api.telegram.org/botTOKEN/getMe");

475+476+

expect(proxyFetch).toHaveBeenCalledTimes(1);

477+

expect(undiciFetch).not.toHaveBeenCalled();

478+

expect(ProxyAgentCtor).not.toHaveBeenCalled();

479+

expect(EnvHttpProxyAgentCtor).not.toHaveBeenCalled();

480+

expect(AgentCtor).not.toHaveBeenCalled();

481+

expect(transport.sourceFetch).not.toBe(undiciFetch);

482+

expect(transport.dispatcherAttempts).toBeUndefined();

483+

});

484+485+

it("prefers standard proxy env over OPENCLAW_PROXY_URL for Telegram", async () => {

486+

vi.stubEnv("OPENCLAW_PROXY_URL", "http://127.0.0.1:7788");

487+

vi.stubEnv("https_proxy", "http://127.0.0.1:7890");

488+

undiciFetch.mockResolvedValue({ ok: true } as Response);

489+490+

const resolved = resolveTelegramFetchOrThrow(undefined, {

491+

network: {

492+

autoSelectFamily: false,

493+

dnsResultOrder: "ipv4first",

494+

},

495+

});

496+497+

await resolved("https://api.telegram.org/botx/getMe");

498+499+

expect(EnvHttpProxyAgentCtor).toHaveBeenCalledTimes(1);

500+

expect(ProxyAgentCtor).not.toHaveBeenCalled();

501+

expect(AgentCtor).not.toHaveBeenCalled();

502+

});

503+424504

it("pins env-proxy transport policy onto proxyTls for proxied HTTPS requests", async () => {

425505

vi.stubEnv("https_proxy", "http://127.0.0.1:7890");

426506

undiciFetch.mockResolvedValue({ ok: true } as Response);

@@ -572,12 +652,10 @@ describe("resolveTelegramFetch", () => {

572652

});

573653

});

574654575-

it("treats ALL_PROXY-only env as direct transport and arms sticky IPv4 fallback", async () => {

576-

vi.stubEnv("ALL_PROXY", "socks5://127.0.0.1:1080");

577-

undiciFetch

578-

.mockRejectedValueOnce(buildFetchFallbackError("EHOSTUNREACH"))

579-

.mockResolvedValueOnce({ ok: true } as Response)

580-

.mockResolvedValueOnce({ ok: true } as Response);

655+

it("uses ALL_PROXY env as EnvHttpProxyAgent transport", async () => {

656+

vi.stubEnv("ALL_PROXY", "http://127.0.0.1:7891");

657+

vi.stubEnv("all_proxy", "http://127.0.0.1:7891");

658+

undiciFetch.mockResolvedValue({ ok: true } as Response);

581659582660

const transport = resolveTelegramTransport(undefined, {

583661

network: {

@@ -588,19 +666,20 @@ describe("resolveTelegramFetch", () => {

588666

const resolved = transport.fetch;

589667590668

await resolved("https://api.telegram.org/botx/sendMessage");

591-

await resolved("https://api.telegram.org/botx/sendChatAction");

592669593-

expect(EnvHttpProxyAgentCtor).not.toHaveBeenCalled();

594-

expect(AgentCtor).toHaveBeenCalledTimes(2);

670+

expect(EnvHttpProxyAgentCtor).toHaveBeenCalledTimes(1);

671+

expect(EnvHttpProxyAgentCtor).toHaveBeenCalledWith(

672+

expect.objectContaining({

673+

allowH2: false,

674+

httpProxy: "http://127.0.0.1:7891",

675+

httpsProxy: "http://127.0.0.1:7891",

676+

}),

677+

);

678+

expect(AgentCtor).not.toHaveBeenCalled();

595679596-

expectPinnedIpv4ConnectDispatcher({

597-

firstCall: 1,

598-

pinnedCall: 2,

599-

followupCall: 3,

600-

});

601680

expect(transport.dispatcherAttempts?.[0]?.dispatcherPolicy).toEqual(

602681

expect.objectContaining({

603-

mode: "direct",

682+

mode: "env-proxy",

604683

}),

605684

);

606685

});