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

推荐订阅源

WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
月光博客
月光博客
Last Week in AI
Last Week in AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
阮一峰的网络日志
阮一峰的网络日志
罗磊的独立博客
IT之家
IT之家
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare 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: cover no-proxy undici startup · openclaw/openclaw@9...
shakkernerd · 2026-05-06 · via Recent Commits to openclaw:main

@@ -1,14 +1,17 @@

1+

import { execFileSync } from "node:child_process";

2+

import path from "node:path";

3+

import { pathToFileURL } from "node:url";

14

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

2536

const {

47

Agent,

58

EnvHttpProxyAgent,

69

ProxyAgent,

7-

getGlobalDispatcher,

810

setGlobalDispatcher,

911

setCurrentDispatcher,

1012

getCurrentDispatcher,

1113

getDefaultAutoSelectFamily,

14+

loadUndiciGlobalDispatcherDeps,

1215

} = vi.hoisted(() => {

1316

class Agent {

1417

constructor(public readonly options?: Record<string, unknown>) {}

@@ -34,6 +37,12 @@ const {

3437

};

3538

const getCurrentDispatcher = () => currentDispatcher;

3639

const getDefaultAutoSelectFamily = vi.fn(() => undefined as boolean | undefined);

40+

const loadUndiciGlobalDispatcherDeps = vi.fn(() => ({

41+

Agent,

42+

EnvHttpProxyAgent,

43+

getGlobalDispatcher,

44+

setGlobalDispatcher,

45+

}));

37463847

return {

3948

Agent,

@@ -44,17 +53,11 @@ const {

4453

setCurrentDispatcher,

4554

getCurrentDispatcher,

4655

getDefaultAutoSelectFamily,

56+

loadUndiciGlobalDispatcherDeps,

4757

};

4858

});

495950-

const mockedModuleIds = ["node:net", "undici", "./proxy-env.js", "../wsl.js"] as const;

51-52-

vi.mock("undici", () => ({

53-

Agent,

54-

EnvHttpProxyAgent,

55-

getGlobalDispatcher,

56-

setGlobalDispatcher,

57-

}));

60+

const mockedModuleIds = ["node:net", "./proxy-env.js", "./undici-runtime.js", "../wsl.js"] as const;

58615962

vi.mock("node:net", () => ({

6063

getDefaultAutoSelectFamily,

@@ -65,6 +68,10 @@ vi.mock("./proxy-env.js", () => ({

6568

resolveEnvHttpProxyAgentOptions: vi.fn(() => undefined),

6669

}));

677071+

vi.mock("./undici-runtime.js", () => ({

72+

loadUndiciGlobalDispatcherDeps,

73+

}));

74+6875

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

6976

isWSL2Sync: vi.fn(() => false),

7077

}));

@@ -99,24 +106,53 @@ describe("ensureGlobalUndiciStreamTimeouts", () => {

99106

vi.mocked(resolveEnvHttpProxyAgentOptions).mockReturnValue(undefined);

100107

});

101108102-

it("replaces default Agent dispatcher with extended stream timeouts", () => {

109+

it("records timeout bridge without importing undici when no env proxy is configured", () => {

103110

getDefaultAutoSelectFamily.mockReturnValue(true);

104111105112

ensureGlobalUndiciStreamTimeouts();

106113107-

expect(setGlobalDispatcher).toHaveBeenCalledTimes(1);

108-

const next = getCurrentDispatcher() as { options?: Record<string, unknown> };

109-

expect(next).toBeInstanceOf(Agent);

110-

expect(next.options?.bodyTimeout).toBe(DEFAULT_UNDICI_STREAM_TIMEOUT_MS);

111-

expect(next.options?.headersTimeout).toBe(DEFAULT_UNDICI_STREAM_TIMEOUT_MS);

112-

expect(next.options?.connect).toEqual({

113-

autoSelectFamily: true,

114-

autoSelectFamilyAttemptTimeout: 300,

115-

});

114+

expect(loadUndiciGlobalDispatcherDeps).not.toHaveBeenCalled();

115+

expect(setGlobalDispatcher).not.toHaveBeenCalled();

116+

expect(undiciGlobalDispatcherModule._globalUndiciStreamTimeoutMs).toBe(

117+

DEFAULT_UNDICI_STREAM_TIMEOUT_MS,

118+

);

119+

});

120+121+

it("does not initialize the undici global dispatcher in a no-proxy subprocess", () => {

122+

const moduleUrl = pathToFileURL(path.resolve("src/infra/net/undici-global-dispatcher.ts")).href;

123+

const source = `

124+

const dispatcherKey = Symbol.for("undici.globalDispatcher.1");

125+

const mod = await import(${JSON.stringify(moduleUrl)});

126+

mod.ensureGlobalUndiciStreamTimeouts({ timeoutMs: 1_900_000 });

127+

if (globalThis[dispatcherKey] !== undefined) {

128+

throw new Error("undici global dispatcher was initialized");

129+

}

130+

console.log("ok");

131+

`;

132+

const env = { ...process.env };

133+

for (const key of [

134+

"HTTP_PROXY",

135+

"HTTPS_PROXY",

136+

"ALL_PROXY",

137+

"http_proxy",

138+

"https_proxy",

139+

"all_proxy",

140+

]) {

141+

delete env[key];

142+

}

143+144+

const output = execFileSync(

145+

process.execPath,

146+

["--import", "tsx", "--input-type=module", "--eval", source],

147+

{ cwd: process.cwd(), encoding: "utf8", env },

148+

);

149+150+

expect(output.trim()).toBe("ok");

116151

});

117152118153

it("replaces EnvHttpProxyAgent dispatcher while preserving env-proxy mode", () => {

119154

getDefaultAutoSelectFamily.mockReturnValue(false);

155+

vi.mocked(hasEnvHttpProxyAgentConfigured).mockReturnValue(true);

120156

setCurrentDispatcher(new EnvHttpProxyAgent());

121157122158

ensureGlobalUndiciStreamTimeouts();

@@ -133,6 +169,7 @@ describe("ensureGlobalUndiciStreamTimeouts", () => {

133169

});

134170135171

it("preserves explicit env proxy options when replacing EnvHttpProxyAgent dispatcher", () => {

172+

vi.mocked(hasEnvHttpProxyAgentConfigured).mockReturnValue(true);

136173

vi.mocked(resolveEnvHttpProxyAgentOptions).mockReturnValue({

137174

httpProxy: "socks5://proxy.test:1080",

138175

httpsProxy: "socks5://proxy.test:1080",

@@ -165,6 +202,8 @@ describe("ensureGlobalUndiciStreamTimeouts", () => {

165202166203

it("is idempotent for unchanged dispatcher kind and network policy", () => {

167204

getDefaultAutoSelectFamily.mockReturnValue(true);

205+

vi.mocked(hasEnvHttpProxyAgentConfigured).mockReturnValue(true);

206+

setCurrentDispatcher(new EnvHttpProxyAgent());

168207169208

ensureGlobalUndiciStreamTimeouts();

170209

ensureGlobalUndiciStreamTimeouts();

@@ -175,24 +214,26 @@ describe("ensureGlobalUndiciStreamTimeouts", () => {

175214

it("does not lower global stream timeouts below the default floor", () => {

176215

ensureGlobalUndiciStreamTimeouts({ timeoutMs: 15_000 });

177216178-

expect(setGlobalDispatcher).toHaveBeenCalledTimes(1);

179-

const next = getCurrentDispatcher() as { options?: Record<string, unknown> };

180-

expect(next.options?.bodyTimeout).toBe(DEFAULT_UNDICI_STREAM_TIMEOUT_MS);

181-

expect(next.options?.headersTimeout).toBe(DEFAULT_UNDICI_STREAM_TIMEOUT_MS);

217+

expect(loadUndiciGlobalDispatcherDeps).not.toHaveBeenCalled();

218+

expect(setGlobalDispatcher).not.toHaveBeenCalled();

219+

expect(undiciGlobalDispatcherModule._globalUndiciStreamTimeoutMs).toBe(

220+

DEFAULT_UNDICI_STREAM_TIMEOUT_MS,

221+

);

182222

});

183223184224

it("honors explicit global stream timeouts above the default floor", () => {

185225

const timeoutMs = DEFAULT_UNDICI_STREAM_TIMEOUT_MS + 1_000;

186226187227

ensureGlobalUndiciStreamTimeouts({ timeoutMs });

188228189-

expect(setGlobalDispatcher).toHaveBeenCalledTimes(1);

190-

const next = getCurrentDispatcher() as { options?: Record<string, unknown> };

191-

expect(next.options?.bodyTimeout).toBe(timeoutMs);

192-

expect(next.options?.headersTimeout).toBe(timeoutMs);

229+

expect(loadUndiciGlobalDispatcherDeps).not.toHaveBeenCalled();

230+

expect(setGlobalDispatcher).not.toHaveBeenCalled();

231+

expect(undiciGlobalDispatcherModule._globalUndiciStreamTimeoutMs).toBe(timeoutMs);

193232

});

194233195234

it("re-applies when autoSelectFamily decision changes", () => {

235+

vi.mocked(hasEnvHttpProxyAgentConfigured).mockReturnValue(true);

236+

setCurrentDispatcher(new EnvHttpProxyAgent());

196237

getDefaultAutoSelectFamily.mockReturnValue(true);

197238

ensureGlobalUndiciStreamTimeouts();

198239

@@ -210,12 +251,14 @@ describe("ensureGlobalUndiciStreamTimeouts", () => {

210251

it("disables autoSelectFamily on WSL2 to avoid IPv6 connectivity issues", () => {

211252

getDefaultAutoSelectFamily.mockReturnValue(true);

212253

vi.mocked(isWSL2Sync).mockReturnValue(true);

254+

vi.mocked(hasEnvHttpProxyAgentConfigured).mockReturnValue(true);

255+

setCurrentDispatcher(new EnvHttpProxyAgent());

213256214257

ensureGlobalUndiciStreamTimeouts();

215258216259

expect(setGlobalDispatcher).toHaveBeenCalledTimes(1);

217260

const next = getCurrentDispatcher() as { options?: Record<string, unknown> };

218-

expect(next).toBeInstanceOf(Agent);

261+

expect(next).toBeInstanceOf(EnvHttpProxyAgent);

219262

expect(next.options?.connect).toEqual({

220263

autoSelectFamily: false,

221264

autoSelectFamilyAttemptTimeout: 300,

@@ -313,11 +356,26 @@ describe("forceResetGlobalDispatcher", () => {

313356

vi.mocked(resolveEnvHttpProxyAgentOptions).mockReturnValue(undefined);

314357

});

315358316-

it("replaces an EnvHttpProxyAgent with a direct Agent when proxy env is cleared", () => {

359+

it("does not import undici when proxy env is cleared", () => {

317360

setCurrentDispatcher(new EnvHttpProxyAgent());

318361319362

forceResetGlobalDispatcher();

320363364+

expect(loadUndiciGlobalDispatcherDeps).not.toHaveBeenCalled();

365+

expect(setGlobalDispatcher).not.toHaveBeenCalled();

366+

});

367+368+

it("restores a direct Agent when clearing a proxy dispatcher installed by OpenClaw", () => {

369+

vi.mocked(hasEnvHttpProxyAgentConfigured).mockReturnValue(true);

370+

ensureGlobalUndiciEnvProxyDispatcher();

371+

expect(getCurrentDispatcher()).toBeInstanceOf(EnvHttpProxyAgent);

372+373+

vi.clearAllMocks();

374+

vi.mocked(hasEnvHttpProxyAgentConfigured).mockReturnValue(false);

375+376+

forceResetGlobalDispatcher();

377+378+

expect(loadUndiciGlobalDispatcherDeps).toHaveBeenCalledTimes(1);

321379

expect(setGlobalDispatcher).toHaveBeenCalledTimes(1);

322380

expect(getCurrentDispatcher()).toBeInstanceOf(Agent);

323381

});