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

推荐订阅源

云风的 BLOG
云风的 BLOG
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
博客园 - 三生石上(FineUI控件)
T
The Blog of Author Tim Ferriss
宝玉的分享
宝玉的分享
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
V
Visual Studio Blog
小众软件
小众软件
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MongoDB | Blog
MongoDB | Blog
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
The Cloudflare Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Engineering at Meta
Engineering at Meta
L
LangChain Blog
Martin Fowler
Martin Fowler
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(discord): prefer IPv4 for gateway startup · openclaw/...
steipete · 2026-05-05 · via Recent Commits to openclaw:main

@@ -1,22 +1,34 @@

11

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

223-

const { undiciFetchMock, proxyAgentSpy } = vi.hoisted(() => ({

3+

const { undiciFetchMock, agentSpy, proxyAgentSpy } = vi.hoisted(() => ({

44

undiciFetchMock: vi.fn(),

5+

agentSpy: vi.fn(),

56

proxyAgentSpy: vi.fn(),

67

}));

7889

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

10+

class Agent {

11+

options: unknown;

12+

constructor(options?: unknown) {

13+

this.options = options;

14+

agentSpy(options);

15+

}

16+

}

917

class ProxyAgent {

10-

proxyUrl: string;

11-

constructor(proxyUrl: string) {

12-

if (proxyUrl === "bad-proxy") {

18+

options: unknown;

19+

uri: string;

20+

constructor(options: string | { uri: string; allowH2?: boolean }) {

21+

const resolved = typeof options === "string" ? { uri: options } : options;

22+

if (resolved.uri === "bad-proxy") {

1323

throw new Error("bad proxy");

1424

}

15-

this.proxyUrl = proxyUrl;

16-

proxyAgentSpy(proxyUrl);

25+

this.options = resolved;

26+

this.uri = resolved.uri;

27+

proxyAgentSpy(resolved);

1728

}

1829

}

1930

return {

31+

Agent,

2032

ProxyAgent,

2133

fetch: undiciFetchMock,

2234

};

@@ -32,6 +44,7 @@ describe("resolveDiscordRestFetch", () => {

3244

beforeEach(() => {

3345

vi.unstubAllEnvs();

3446

undiciFetchMock.mockReset();

47+

agentSpy.mockReset();

3548

proxyAgentSpy.mockReset();

3649

});

3750

@@ -47,11 +60,19 @@ describe("resolveDiscordRestFetch", () => {

47604861

await fetcher("https://discord.com/api/v10/oauth2/applications/@me");

496250-

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

63+

expect(proxyAgentSpy).toHaveBeenCalledWith(

64+

expect.objectContaining({

65+

uri: "http://127.0.0.1:8080",

66+

allowH2: false,

67+

}),

68+

);

5169

expect(undiciFetchMock).toHaveBeenCalledWith(

5270

"https://discord.com/api/v10/oauth2/applications/@me",

5371

expect.objectContaining({

54-

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

72+

dispatcher: expect.objectContaining({

73+

uri: "http://127.0.0.1:8080",

74+

options: expect.objectContaining({ allowH2: false }),

75+

}),

5576

}),

5677

);

5778

expect(runtime.log).toHaveBeenCalledWith("discord: rest proxy enabled");

@@ -98,10 +119,46 @@ describe("resolveDiscordRestFetch", () => {

9811999120

await fetcher("https://discord.com/api/v10/oauth2/applications/@me");

100121101-

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

122+

expect(proxyAgentSpy).toHaveBeenCalledWith(

123+

expect.objectContaining({

124+

uri: "http://[::1]:8080",

125+

allowH2: false,

126+

}),

127+

);

102128

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

103129

});

104130131+

it("uses undici Agent with IPv4-first lookup when no discord proxy URL is configured", async () => {

132+

const runtime = {

133+

log: vi.fn(),

134+

error: vi.fn(),

135+

exit: vi.fn(),

136+

} as const;

137+

undiciFetchMock.mockResolvedValue(new Response("ok", { status: 200 }));

138+139+

const fetcher = resolveDiscordRestFetch(undefined, runtime);

140+

await fetcher("https://discord.com/api/v10/oauth2/applications/@me");

141+142+

expect(agentSpy).toHaveBeenCalledWith(

143+

expect.objectContaining({

144+

allowH2: false,

145+

connect: expect.objectContaining({ lookup: expect.any(Function) }),

146+

}),

147+

);

148+

expect(undiciFetchMock).toHaveBeenCalledWith(

149+

"https://discord.com/api/v10/oauth2/applications/@me",

150+

expect.objectContaining({

151+

dispatcher: expect.objectContaining({

152+

options: expect.objectContaining({

153+

allowH2: false,

154+

connect: expect.objectContaining({ lookup: expect.any(Function) }),

155+

}),

156+

}),

157+

}),

158+

);

159+

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

160+

});

161+105162

it("uses debug proxy env when no discord proxy URL is configured", async () => {

106163

vi.stubEnv("OPENCLAW_DEBUG_PROXY_ENABLED", "1");

107164

vi.stubEnv("OPENCLAW_DEBUG_PROXY_URL", "http://127.0.0.1:7777");

@@ -115,7 +172,12 @@ describe("resolveDiscordRestFetch", () => {

115172

const fetcher = resolveDiscordRestFetch(undefined, runtime);

116173

await fetcher("https://discord.com/api/v10/oauth2/applications/@me");

117174118-

expect(proxyAgentSpy).toHaveBeenCalledWith("http://127.0.0.1:7777");

175+

expect(proxyAgentSpy).toHaveBeenCalledWith(

176+

expect.objectContaining({

177+

uri: "http://127.0.0.1:7777",

178+

allowH2: false,

179+

}),

180+

);

119181

expect(runtime.log).toHaveBeenCalledWith("discord: rest proxy enabled");

120182

});

121183

});