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

推荐订阅源

博客园 - 司徒正美
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
美团技术团队
WordPress大学
WordPress大学
罗磊的独立博客
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
H
Help Net Security
S
SegmentFault 最新的问题
C
Check Point Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
腾讯CDC
Engineering at Meta
Engineering at Meta
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
D
DataBreaches.Net
雷峰网
雷峰网
GbyAI
GbyAI
宝玉的分享
宝玉的分享

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(provider-usage): honor proxy env for usage fetch (#93...
TurboTheTurt · 2026-06-23 · via Recent Commits to openclaw:main

@@ -3,11 +3,39 @@ import { beforeAll, beforeEach, describe, expect, it, vi } from "vitest";

33

import { createProviderUsageFetch } from "../test-utils/provider-usage-fetch.js";

4455

const resolveProviderUsageSnapshotWithPluginMock = vi.fn();

6+

const { EnvHttpProxyAgent, envAgentSpy, loadUndiciRuntimeDeps, undiciFetch } = vi.hoisted(() => {

7+

const envAgentSpyLocal = vi.fn();

8+

const undiciFetchLocal = vi.fn();

9+

class EnvHttpProxyAgentLocal {

10+

static lastCreated: EnvHttpProxyAgentLocal | undefined;

11+12+

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

13+

EnvHttpProxyAgentLocal.lastCreated = this;

14+

envAgentSpyLocal(options);

15+

}

16+

}

17+

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

18+

EnvHttpProxyAgent: EnvHttpProxyAgentLocal,

19+

FormData: globalThis.FormData,

20+

fetch: undiciFetchLocal,

21+

}));

22+23+

return {

24+

EnvHttpProxyAgent: EnvHttpProxyAgentLocal,

25+

envAgentSpy: envAgentSpyLocal,

26+

loadUndiciRuntimeDeps: loadUndiciRuntimeDepsLocal,

27+

undiciFetch: undiciFetchLocal,

28+

};

29+

});

630731

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

832

getRuntimeConfig: () => ({}),

933

}));

103435+

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

36+

loadUndiciRuntimeDeps,

37+

}));

38+1139

vi.mock("../plugins/provider-runtime.js", async () => {

1240

const actual = await vi.importActual<typeof import("../plugins/provider-runtime.js")>(

1341

"../plugins/provider-runtime.js",

@@ -30,6 +58,7 @@ function requireFirstPluginUsageCall(): {

3058

token?: unknown;

3159

authProfileId?: unknown;

3260

timeoutMs?: unknown;

61+

fetchFn?: unknown;

3362

};

3463

} {

3564

const [call] = resolveProviderUsageSnapshotWithPluginMock.mock.calls;

@@ -47,16 +76,36 @@ function requireFirstPluginUsageCall(): {

4776

token?: unknown;

4877

authProfileId?: unknown;

4978

timeoutMs?: unknown;

79+

fetchFn?: unknown;

5080

};

5181

};

5282

}

538384+

function requireFetchFn(value: unknown): typeof fetch {

85+

if (typeof value !== "function") {

86+

throw new Error("expected provider usage context fetch");

87+

}

88+

return value as typeof fetch;

89+

}

90+91+

function requireUndiciFetchInit(): Record<string, unknown> {

92+

const init = undiciFetch.mock.calls[0]?.[1];

93+

if (!init || typeof init !== "object" || Array.isArray(init)) {

94+

throw new Error("expected undici fetch init");

95+

}

96+

return init as Record<string, unknown>;

97+

}

98+5499

describe("provider-usage.load plugin boundary", () => {

55100

beforeAll(async () => {

56101

({ loadProviderUsageSummary } = await import("./provider-usage.load.js"));

57102

});

5810359104

beforeEach(() => {

105+

envAgentSpy.mockClear();

106+

loadUndiciRuntimeDeps.mockClear();

107+

undiciFetch.mockReset();

108+

EnvHttpProxyAgent.lastCreated = undefined;

60109

resolveProviderUsageSnapshotWithPluginMock.mockReset();

61110

resolveProviderUsageSnapshotWithPluginMock.mockResolvedValue(null);

62111

});

@@ -76,6 +125,7 @@ describe("provider-usage.load plugin boundary", () => {

76125

now: usageNow,

77126

auth: [{ provider: "github-copilot", token: "copilot-token" }],

78127

fetch: mockFetch as unknown as typeof fetch,

128+

env: {},

79129

}),

80130

).resolves.toEqual({

81131

updatedAt: usageNow,

@@ -115,6 +165,7 @@ describe("provider-usage.load plugin boundary", () => {

115165

hookProvider: "codex",

116166

},

117167

],

168+

env: {},

118169

}),

119170

).resolves.toEqual({

120171

updatedAt: usageNow,

@@ -133,4 +184,88 @@ describe("provider-usage.load plugin boundary", () => {

133184

expect(pluginCall.context?.token).toBe("codex-app-server");

134185

expect(pluginCall.context?.authProfileId).toBe("openai:work");

135186

});

187+188+

it("passes an env proxy fetch into plugin usage context when no explicit fetch is supplied", async () => {

189+

undiciFetch.mockResolvedValueOnce(new Response("{}", { status: 200 }));

190+

resolveProviderUsageSnapshotWithPluginMock.mockImplementationOnce(async (params: unknown) => {

191+

if (!params || typeof params !== "object" || Array.isArray(params)) {

192+

throw new Error("expected plugin params");

193+

}

194+

const context = (params as { context?: { fetchFn?: unknown } }).context;

195+

await requireFetchFn(context?.fetchFn)("https://chatgpt.com/backend-api/wham/usage");

196+

return {

197+

provider: "openai",

198+

displayName: "Codex",

199+

windows: [{ label: "5h", usedPercent: 7 }],

200+

};

201+

});

202+203+

await expect(

204+

loadProviderUsageSummary({

205+

now: usageNow,

206+

auth: [{ provider: "openai", token: "codex-token", accountId: "acc-1" }],

207+

env: {

208+

HTTP_PROXY: "",

209+

HTTPS_PROXY: "http://proxy.test:8080",

210+

},

211+

}),

212+

).resolves.toEqual({

213+

updatedAt: usageNow,

214+

providers: [

215+

{

216+

provider: "openai",

217+

displayName: "Codex",

218+

windows: [{ label: "5h", usedPercent: 7 }],

219+

},

220+

],

221+

});

222+223+

expect(envAgentSpy).toHaveBeenCalledWith({ httpsProxy: "http://proxy.test:8080" });

224+

expect(undiciFetch).toHaveBeenCalledOnce();

225+

const [input] = undiciFetch.mock.calls[0] ?? [];

226+

expect(input).toBe("https://chatgpt.com/backend-api/wham/usage");

227+

expect(requireUndiciFetchInit().dispatcher).toBe(EnvHttpProxyAgent.lastCreated);

228+

});

229+230+

it("keeps an explicit fetch ahead of proxy env for plugin usage context", async () => {

231+

const explicitFetch = vi.fn(async () => new Response("{}", { status: 200 }));

232+

resolveProviderUsageSnapshotWithPluginMock.mockImplementationOnce(async (params: unknown) => {

233+

if (!params || typeof params !== "object" || Array.isArray(params)) {

234+

throw new Error("expected plugin params");

235+

}

236+

const context = (params as { context?: { fetchFn?: unknown } }).context;

237+

await requireFetchFn(context?.fetchFn)("https://chatgpt.com/backend-api/wham/usage");

238+

return {

239+

provider: "openai",

240+

displayName: "Codex",

241+

windows: [{ label: "5h", usedPercent: 9 }],

242+

};

243+

});

244+245+

await expect(

246+

loadProviderUsageSummary({

247+

now: usageNow,

248+

auth: [{ provider: "openai", token: "codex-token", accountId: "acc-1" }],

249+

env: {

250+

HTTP_PROXY: "",

251+

HTTPS_PROXY: "http://proxy.test:8080",

252+

},

253+

fetch: explicitFetch as unknown as typeof fetch,

254+

}),

255+

).resolves.toEqual({

256+

updatedAt: usageNow,

257+

providers: [

258+

{

259+

provider: "openai",

260+

displayName: "Codex",

261+

windows: [{ label: "5h", usedPercent: 9 }],

262+

},

263+

],

264+

});

265+266+

expect(explicitFetch).toHaveBeenCalledOnce();

267+

expect(loadUndiciRuntimeDeps).not.toHaveBeenCalled();

268+

expect(envAgentSpy).not.toHaveBeenCalled();

269+

expect(undiciFetch).not.toHaveBeenCalled();

270+

});

136271

});