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

推荐订阅源

博客园_首页
GbyAI
GbyAI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Apple Machine Learning Research
Apple Machine Learning Research
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
Last Week in AI
Last Week in AI
V
Visual Studio Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
博客园 - 【当耐特】
博客园 - 叶小钗
量子位
博客园 - 聂微东
S
SegmentFault 最新的问题
美团技术团队
Hugging Face - Blog
Hugging Face - Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
月光博客
月光博客
宝玉的分享
宝玉的分享
小众软件
小众软件
罗磊的独立博客
有赞技术团队
有赞技术团队
Stack Overflow Blog
Stack Overflow 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: bootstrap gateway env proxy dispatcher · openclaw/op...
steipete · 2026-04-26 · via Recent Commits to openclaw:main

@@ -0,0 +1,109 @@

1+

import fs from "node:fs/promises";

2+

import os from "node:os";

3+

import path from "node:path";

4+

import { Agent, getGlobalDispatcher, setGlobalDispatcher } from "undici";

5+

import { afterEach, beforeEach, describe, expect, it } from "vitest";

6+

import { clearAllBootstrapSnapshots } from "../agents/bootstrap-cache.js";

7+

import { clearConfigCache, clearRuntimeConfigSnapshot } from "../config/config.js";

8+

import { clearSessionStoreCacheForTest } from "../config/sessions/store.js";

9+

import { resetAgentRunContextForTest } from "../infra/agent-events.js";

10+

import { PROXY_ENV_KEYS } from "../infra/net/proxy-env.js";

11+

import { clearGatewaySubagentRuntime } from "../plugins/runtime/index.js";

12+

import { captureEnv } from "../test-utils/env.js";

13+

import { startGatewayServer } from "./server.js";

14+

import { getFreeGatewayPort } from "./test-helpers.e2e.js";

15+16+

const NETWORK_GATEWAY_ENV_KEYS = [

17+

"HOME",

18+

"OPENCLAW_STATE_DIR",

19+

"OPENCLAW_CONFIG_PATH",

20+

"OPENCLAW_GATEWAY_TOKEN",

21+

"OPENCLAW_SKIP_CHANNELS",

22+

"OPENCLAW_SKIP_GMAIL_WATCHER",

23+

"OPENCLAW_SKIP_CRON",

24+

"OPENCLAW_SKIP_CANVAS_HOST",

25+

"OPENCLAW_SKIP_BROWSER_CONTROL_SERVER",

26+

"OPENCLAW_SKIP_PROVIDERS",

27+

"OPENCLAW_BUNDLED_PLUGINS_DIR",

28+

"OPENCLAW_TEST_MINIMAL_GATEWAY",

29+

...PROXY_ENV_KEYS,

30+

"NO_PROXY",

31+

"no_proxy",

32+

] as const;

33+34+

function isEnvHttpProxyDispatcher(dispatcher: unknown): boolean {

35+

return (

36+

(dispatcher as { constructor?: { name?: string } } | undefined)?.constructor?.name ===

37+

"EnvHttpProxyAgent"

38+

);

39+

}

40+41+

describe("gateway network runtime", () => {

42+

beforeEach(() => {

43+

clearRuntimeConfigSnapshot();

44+

clearConfigCache();

45+

clearSessionStoreCacheForTest();

46+

resetAgentRunContextForTest();

47+

clearAllBootstrapSnapshots();

48+

clearGatewaySubagentRuntime();

49+

});

50+51+

afterEach(() => {

52+

clearRuntimeConfigSnapshot();

53+

clearConfigCache();

54+

clearSessionStoreCacheForTest();

55+

resetAgentRunContextForTest();

56+

clearAllBootstrapSnapshots();

57+

clearGatewaySubagentRuntime();

58+

});

59+60+

it("bootstraps env proxy dispatching when the gateway starts directly", async () => {

61+

const envSnapshot = captureEnv([...NETWORK_GATEWAY_ENV_KEYS]);

62+

const originalDispatcher = getGlobalDispatcher();

63+

const tempHome = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-gw-proxy-home-"));

64+

let server: Awaited<ReturnType<typeof startGatewayServer>> | undefined;

65+66+

try {

67+

setGlobalDispatcher(new Agent());

68+

for (const key of NETWORK_GATEWAY_ENV_KEYS) {

69+

delete process.env[key];

70+

}

71+

process.env.HTTPS_PROXY = "http://127.0.0.1:9";

72+73+

process.env.HOME = tempHome;

74+

process.env.OPENCLAW_STATE_DIR = path.join(tempHome, ".openclaw");

75+

process.env.OPENCLAW_SKIP_CHANNELS = "1";

76+

process.env.OPENCLAW_SKIP_GMAIL_WATCHER = "1";

77+

process.env.OPENCLAW_SKIP_CRON = "1";

78+

process.env.OPENCLAW_SKIP_CANVAS_HOST = "1";

79+

process.env.OPENCLAW_SKIP_BROWSER_CONTROL_SERVER = "1";

80+

process.env.OPENCLAW_SKIP_PROVIDERS = "1";

81+

process.env.OPENCLAW_TEST_MINIMAL_GATEWAY = "1";

82+

process.env.OPENCLAW_BUNDLED_PLUGINS_DIR = path.join(tempHome, "empty-bundled-plugins");

83+

await fs.mkdir(process.env.OPENCLAW_BUNDLED_PLUGINS_DIR, { recursive: true });

84+85+

const token = `proxy-token-${process.pid}-${process.env.VITEST_POOL_ID ?? "0"}`;

86+

process.env.OPENCLAW_GATEWAY_TOKEN = token;

87+

const configPath = path.join(tempHome, ".openclaw", "openclaw.json");

88+

await fs.mkdir(path.dirname(configPath), { recursive: true });

89+

await fs.writeFile(

90+

configPath,

91+

`${JSON.stringify({ gateway: { auth: { mode: "token", token } } }, null, 2)}\n`,

92+

);

93+

process.env.OPENCLAW_CONFIG_PATH = configPath;

94+95+

server = await startGatewayServer(await getFreeGatewayPort(), {

96+

bind: "loopback",

97+

auth: { mode: "token", token },

98+

controlUiEnabled: false,

99+

});

100+101+

expect(isEnvHttpProxyDispatcher(getGlobalDispatcher())).toBe(true);

102+

} finally {

103+

await server?.close({ reason: "gateway proxy bootstrap test complete" });

104+

setGlobalDispatcher(originalDispatcher);

105+

await fs.rm(tempHome, { recursive: true, force: true });

106+

envSnapshot.restore();

107+

}

108+

});

109+

});