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

推荐订阅源

博客园 - 聂微东
Y
Y Combinator Blog
WordPress大学
WordPress大学
L
LangChain Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
A
About on SuperTechFans
小众软件
小众软件
有赞技术团队
有赞技术团队
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
Recent Announcements
Recent Announcements
GbyAI
GbyAI
I
InfoQ
The GitHub Blog
The GitHub Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
酷 壳 – CoolShell
酷 壳 – CoolShell
罗磊的独立博客
C
Check Point Blog
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
月光博客
月光博客
量子位
雷峰网
雷峰网
Hugging Face - Blog
Hugging Face - 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(discord): require real gateway readiness · openclaw/o...
steipete · 2026-04-25 · via Recent Commits to openclaw:main

@@ -101,17 +101,19 @@ describe("runDiscordGatewayLifecycle", () => {

101101

}

102102103103

function createLifecycleHarness(params?: {

104-

gateway?: MockGateway;

104+

gateway?: MockGateway | null;

105105

isDisallowedIntentsError?: (err: unknown) => boolean;

106106

pendingGatewayEvents?: DiscordGatewayEvent[];

107107

}) {

108108

const gateway =

109-

params?.gateway ??

110-

(() => {

111-

const defaultGateway = createGatewayHarness().gateway;

112-

defaultGateway.isConnected = true;

113-

return defaultGateway;

114-

})();

109+

params && "gateway" in params

110+

? params.gateway

111+

: (() => {

112+

const defaultGateway = createGatewayHarness().gateway;

113+

defaultGateway.isConnected = true;

114+

return defaultGateway;

115+

})();

116+

const gatewayEmitter = gateway?.emitter ?? new EventEmitter();

115117

const threadStop = vi.fn();

116118

const runtimeLog = vi.fn();

117119

const runtimeError = vi.fn();

@@ -130,7 +132,7 @@ describe("runDiscordGatewayLifecycle", () => {

130132

return "continue";

131133

}),

132134

dispose: vi.fn(),

133-

emitter: gateway.emitter,

135+

emitter: gatewayEmitter,

134136

};

135137

const statusSink = vi.fn();

136138

const runtime: RuntimeEnv = {

@@ -146,7 +148,7 @@ describe("runDiscordGatewayLifecycle", () => {

146148

statusSink,

147149

lifecycleParams: {

148150

accountId: "default",

149-

gateway: gateway as unknown as MutableDiscordGateway,

151+

gateway: gateway ? (gateway as unknown as MutableDiscordGateway) : undefined,

150152

runtime,

151153

isDisallowedIntentsError: params?.isDisallowedIntentsError ?? (() => false),

152154

voiceManager: null,

@@ -215,6 +217,38 @@ describe("runDiscordGatewayLifecycle", () => {

215217

);

216218

});

217219220+

it("does not treat a missing gateway handle as ready", async () => {

221+

vi.useFakeTimers();

222+

try {

223+

const { lifecycleParams, threadStop, statusSink, gatewaySupervisor } = createLifecycleHarness(

224+

{

225+

gateway: null,

226+

},

227+

);

228+229+

const lifecyclePromise = runDiscordGatewayLifecycle(lifecycleParams);

230+

lifecyclePromise.catch(() => {});

231+

await vi.advanceTimersByTimeAsync(0);

232+

await vi.advanceTimersByTimeAsync(15_500);

233+234+

await expect(lifecyclePromise).rejects.toThrow(

235+

"discord gateway did not reach READY within 15000ms",

236+

);

237+

expect(statusSink).not.toHaveBeenCalledWith(

238+

expect.objectContaining({

239+

connected: true,

240+

}),

241+

);

242+

expectLifecycleCleanup({

243+

threadStop,

244+

waitCalls: 0,

245+

gatewaySupervisor,

246+

});

247+

} finally {

248+

vi.useRealTimers();

249+

}

250+

});

251+218252

it("restarts the gateway once when startup never reaches READY, then recovers", async () => {

219253

vi.useFakeTimers();

220254

try {