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

推荐订阅源

D
DataBreaches.Net
F
Fortinet All Blogs
D
Docker
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
罗磊的独立博客
Y
Y Combinator Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
J
Java Code Geeks
T
The Blog of Author Tim Ferriss
U
Unit 42
N
Netflix TechBlog - Medium
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
云风的 BLOG
云风的 BLOG
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
Tailwind CSS Blog
Hugging Face - Blog
Hugging Face - Blog
Stack Overflow Blog
Stack Overflow Blog
爱范儿
爱范儿
酷 壳 – CoolShell
酷 壳 – CoolShell
P
Proofpoint News Feed
G
Google Developers Blog
H
Help Net Security

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(feishu): recover WebSocket after SDK retry exhaustion...
vincentkoc · 2026-05-01 · via Recent Commits to openclaw:main

@@ -136,6 +136,165 @@ describe("feishu websocket cleanup", () => {

136136

expect(errorMessage).toContain("appSecret=[redacted]");

137137

});

138138139+

it("recreates the websocket client after sdk reconnect exhaustion", async () => {

140+

vi.useFakeTimers();

141+

const exhaustedClient = createWsClient();

142+

const recoveredClient = createWsClient();

143+

createFeishuWSClientMock

144+

.mockResolvedValueOnce(exhaustedClient)

145+

.mockResolvedValueOnce(recoveredClient);

146+147+

const abortController = new AbortController();

148+

const runtime = {

149+

log: vi.fn(),

150+

error: vi.fn(),

151+

exit: vi.fn(),

152+

};

153+

const accountId = "exhausted";

154+

botOpenIds.set(accountId, "ou_exhausted");

155+

botNames.set(accountId, "Exhausted");

156+157+

const monitorPromise = monitorWebSocket({

158+

account: createAccount(accountId),

159+

accountId,

160+

runtime,

161+

abortSignal: abortController.signal,

162+

eventDispatcher: {} as never,

163+

});

164+165+

await vi.waitFor(() => {

166+

expect(exhaustedClient.start).toHaveBeenCalledTimes(1);

167+

expect(wsClients.get(accountId)).toBe(exhaustedClient);

168+

});

169+170+

const callbacks = createFeishuWSClientMock.mock.calls[0]?.[1] as

171+

| { onError?: (err: Error) => void }

172+

| undefined;

173+

callbacks?.onError?.(

174+

new Error("WebSocket reconnect exhausted after 3 attempts\nBearer token_abc"),

175+

);

176+177+

await vi.waitFor(() => {

178+

expect(exhaustedClient.close).toHaveBeenCalledTimes(1);

179+

expect(wsClients.has(accountId)).toBe(false);

180+

});

181+

expect(botOpenIds.get(accountId)).toBe("ou_exhausted");

182+

expect(botNames.get(accountId)).toBe("Exhausted");

183+184+

await vi.advanceTimersByTimeAsync(1_000);

185+186+

await vi.waitFor(() => {

187+

expect(recoveredClient.start).toHaveBeenCalledTimes(1);

188+

expect(wsClients.get(accountId)).toBe(recoveredClient);

189+

});

190+191+

abortController.abort();

192+

await monitorPromise;

193+194+

expect(createFeishuWSClientMock).toHaveBeenCalledTimes(2);

195+

expect(recoveredClient.close).toHaveBeenCalledTimes(1);

196+

expect(botOpenIds.has(accountId)).toBe(false);

197+

expect(botNames.has(accountId)).toBe(false);

198+

const errorMessage = String(runtime.error.mock.calls[0]?.[0] ?? "");

199+

expect(errorMessage).toContain("WebSocket connection ended, recreating client in 1000ms");

200+

expect(errorMessage).toContain("Bearer [redacted]");

201+

expect(errorMessage).not.toContain("\n");

202+

expect(errorMessage).not.toContain("token_abc");

203+

});

204+205+

it("keeps the websocket client alive after recoverable sdk callback errors", async () => {

206+

vi.useFakeTimers();

207+

const wsClient = createWsClient();

208+

createFeishuWSClientMock.mockResolvedValueOnce(wsClient);

209+210+

const abortController = new AbortController();

211+

const runtime = {

212+

log: vi.fn(),

213+

error: vi.fn(),

214+

exit: vi.fn(),

215+

};

216+

const accountId = "recoverable-callback";

217+218+

const monitorPromise = monitorWebSocket({

219+

account: createAccount(accountId),

220+

accountId,

221+

runtime,

222+

abortSignal: abortController.signal,

223+

eventDispatcher: {} as never,

224+

});

225+226+

await vi.waitFor(() => {

227+

expect(wsClient.start).toHaveBeenCalledTimes(1);

228+

expect(wsClients.get(accountId)).toBe(wsClient);

229+

});

230+231+

const callbacks = createFeishuWSClientMock.mock.calls[0]?.[1] as

232+

| { onError?: (err: Error) => void }

233+

| undefined;

234+

callbacks?.onError?.(new Error("temporary callback failure\nBearer token_abc"));

235+236+

await vi.advanceTimersByTimeAsync(1_000);

237+238+

expect(createFeishuWSClientMock).toHaveBeenCalledTimes(1);

239+

expect(wsClient.close).not.toHaveBeenCalled();

240+

expect(wsClients.get(accountId)).toBe(wsClient);

241+

const errorMessage = String(runtime.error.mock.calls[0]?.[0] ?? "");

242+

expect(errorMessage).toContain("WebSocket SDK reported recoverable error");

243+

expect(errorMessage).toContain("Bearer [redacted]");

244+

expect(errorMessage).not.toContain("\n");

245+

expect(errorMessage).not.toContain("token_abc");

246+247+

abortController.abort();

248+

await monitorPromise;

249+250+

expect(createFeishuWSClientMock).toHaveBeenCalledTimes(1);

251+

expect(wsClient.close).toHaveBeenCalledTimes(1);

252+

});

253+254+

it("clears identity without recreating a websocket when aborted during reconnect backoff", async () => {

255+

vi.useFakeTimers();

256+

const exhaustedClient = createWsClient();

257+

createFeishuWSClientMock.mockResolvedValueOnce(exhaustedClient);

258+259+

const abortController = new AbortController();

260+

const accountId = "abort-backoff";

261+

botOpenIds.set(accountId, "ou_abort");

262+

botNames.set(accountId, "Abort");

263+264+

const monitorPromise = monitorWebSocket({

265+

account: createAccount(accountId),

266+

accountId,

267+

runtime: {

268+

log: vi.fn(),

269+

error: vi.fn(),

270+

exit: vi.fn(),

271+

},

272+

abortSignal: abortController.signal,

273+

eventDispatcher: {} as never,

274+

});

275+276+

await vi.waitFor(() => {

277+

expect(exhaustedClient.start).toHaveBeenCalledTimes(1);

278+

});

279+280+

const callbacks = createFeishuWSClientMock.mock.calls[0]?.[1] as

281+

| { onError?: (err: Error) => void }

282+

| undefined;

283+

callbacks?.onError?.(new Error("WebSocket reconnect exhausted after 3 attempts"));

284+285+

await vi.waitFor(() => {

286+

expect(exhaustedClient.close).toHaveBeenCalledTimes(1);

287+

});

288+289+

abortController.abort();

290+

await monitorPromise;

291+292+

expect(createFeishuWSClientMock).toHaveBeenCalledTimes(1);

293+

expect(wsClients.has(accountId)).toBe(false);

294+

expect(botOpenIds.has(accountId)).toBe(false);

295+

expect(botNames.has(accountId)).toBe(false);

296+

});

297+139298

it("redacts websocket close errors during abort cleanup", async () => {

140299

const wsClient = createWsClient();

141300

wsClient.close.mockImplementationOnce(() => {