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

推荐订阅源

N
Netflix TechBlog - Medium
I
InfoQ
Engineering at Meta
Engineering at Meta
Jina AI
Jina AI
Recent Announcements
Recent Announcements
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
D
Docker
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
GbyAI
GbyAI
博客园 - Franky
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 叶小钗
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog RSS Feed
WordPress大学
WordPress大学
MyScale Blog
MyScale 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(diagnostics): harden capture redaction and discord me...
vincentkoc · 2026-04-25 · via Recent Commits to openclaw:main

@@ -18,18 +18,12 @@ const {

1818

globalFetchMock,

1919

HttpsProxyAgent,

2020

getLastAgent,

21-

restProxyAgentSpy,

2221

resolveDebugProxySettingsMock,

23-

undiciFetchMock,

24-

undiciProxyAgentSpy,

2522

resetLastAgent,

2623

webSocketSpy,

2724

wsProxyAgentSpy,

2825

} = vi.hoisted(() => {

2926

const wsProxyAgentSpy = vi.fn();

30-

const undiciProxyAgentSpy = vi.fn();

31-

const restProxyAgentSpy = vi.fn();

32-

const undiciFetchMock = vi.fn();

3327

const globalFetchMock = vi.fn();

3428

const baseRegisterClientSpy = vi.fn();

3529

const webSocketSpy = vi.fn();

@@ -86,12 +80,9 @@ const {

8680

globalFetchMock,

8781

HttpsProxyAgent,

8882

getLastAgent: () => HttpsProxyAgent.lastCreated,

89-

restProxyAgentSpy,

9083

captureHttpExchangeSpy,

9184

captureWsEventSpy,

9285

resolveDebugProxySettingsMock,

93-

undiciFetchMock,

94-

undiciProxyAgentSpy,

9586

resetLastAgent: () => {

9687

HttpsProxyAgent.lastCreated = undefined;

9788

},

@@ -115,15 +106,6 @@ vi.mock("https-proxy-agent", () => ({

115106

HttpsProxyAgent,

116107

}));

117108118-

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

119-

ProxyAgent: function ProxyAgent(this: { proxyUrl: string }, proxyUrl: string) {

120-

this.proxyUrl = proxyUrl;

121-

undiciProxyAgentSpy(proxyUrl);

122-

restProxyAgentSpy(proxyUrl);

123-

},

124-

fetch: undiciFetchMock,

125-

}));

126-127109

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

128110

default: function MockWebSocket(url: string, options?: { agent?: unknown }) {

129111

webSocketSpy(url, options);

@@ -176,12 +158,6 @@ describe("createDiscordGatewayPlugin", () => {

176158

return {

177159

HttpsProxyAgentCtor:

178160

HttpsProxyAgent as unknown as typeof import("https-proxy-agent").HttpsProxyAgent,

179-

ProxyAgentCtor: function ProxyAgentCtor(this: { proxyUrl: string }, proxyUrl: string) {

180-

this.proxyUrl = proxyUrl;

181-

undiciProxyAgentSpy(proxyUrl);

182-

restProxyAgentSpy(proxyUrl);

183-

} as unknown as typeof import("undici").ProxyAgent,

184-

undiciFetch: undiciFetchMock,

185161

webSocketCtor: function WebSocketCtor(url: string, options?: { agent?: unknown }) {

186162

webSocketSpy(url, options);

187163

} as unknown as new (url: string, options?: { agent?: unknown }) => import("ws").WebSocket,

@@ -276,9 +252,6 @@ describe("createDiscordGatewayPlugin", () => {

276252

vi.useRealTimers();

277253

baseRegisterClientSpy.mockClear();

278254

globalFetchMock.mockClear();

279-

restProxyAgentSpy.mockClear();

280-

undiciFetchMock.mockClear();

281-

undiciProxyAgentSpy.mockClear();

282255

wsProxyAgentSpy.mockClear();

283256

webSocketSpy.mockClear();

284257

captureHttpExchangeSpy.mockClear();

@@ -454,22 +427,20 @@ describe("createDiscordGatewayPlugin", () => {

454427

expect(runtime.log).not.toHaveBeenCalled();

455428

});

456429457-

it("uses proxy fetch for gateway metadata lookup before registering", async () => {

430+

it("keeps gateway metadata lookup on the guarded direct fetch when proxy is configured", async () => {

458431

const runtime = createRuntime();

459432

const plugin = createDiscordGatewayPlugin({

460433

discordConfig: { proxy: "http://127.0.0.1:8080" },

461434

runtime,

462435

__testing: createProxyTestingOverrides(),

463436

});

464437465-

await registerGatewayClientWithMetadata({ plugin, fetchMock: undiciFetchMock });

438+

await registerGatewayClientWithMetadata({ plugin, fetchMock: globalFetchMock });

466439467-

expect(restProxyAgentSpy).toHaveBeenCalledWith("http://127.0.0.1:8080");

468-

expect(undiciFetchMock).toHaveBeenCalledWith(

440+

expect(globalFetchMock).toHaveBeenCalledWith(

469441

"https://discord.com/api/v10/gateway/bot",

470442

expect.objectContaining({

471443

headers: { Authorization: "Bot token-123" },

472-

dispatcher: expect.objectContaining({ proxyUrl: "http://127.0.0.1:8080" }),

473444

}),

474445

);

475446

expect(baseRegisterClientSpy).toHaveBeenCalledTimes(1);

@@ -488,7 +459,7 @@ describe("createDiscordGatewayPlugin", () => {

488459

expect(captureHttpExchangeSpy).not.toHaveBeenCalled();

489460

});

490461491-

it("accepts IPv6 loopback proxy URLs for gateway metadata and websocket setup", async () => {

462+

it("accepts IPv6 loopback proxy URLs for websocket setup", async () => {

492463

const runtime = createRuntime();

493464

const plugin = createDiscordGatewayPlugin({

494465

discordConfig: { proxy: "http://[::1]:8080" },

@@ -499,10 +470,9 @@ describe("createDiscordGatewayPlugin", () => {

499470

const createWebSocket = (plugin as unknown as { createWebSocket: (url: string) => unknown })

500471

.createWebSocket;

501472

createWebSocket("wss://gateway.discord.gg");

502-

await registerGatewayClientWithMetadata({ plugin, fetchMock: undiciFetchMock });

473+

await registerGatewayClientWithMetadata({ plugin, fetchMock: globalFetchMock });

503474504475

expect(wsProxyAgentSpy).toHaveBeenCalledWith("http://[::1]:8080");

505-

expect(restProxyAgentSpy).toHaveBeenCalledWith("http://[::1]:8080");

506476

expect(runtime.error).not.toHaveBeenCalled();

507477

});

508478