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

推荐订阅源

Jina AI
Jina AI
S
SegmentFault 最新的问题
D
DataBreaches.Net
H
Help Net Security
有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
Martin Fowler
Martin Fowler
IT之家
IT之家
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
腾讯CDC
罗磊的独立博客
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
云风的 BLOG
云风的 BLOG
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
WordPress大学
WordPress大学
Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
Vercel News
Vercel News
Hugging Face - Blog
Hugging Face - Blog
aimingoo的专栏
aimingoo的专栏
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
博客园 - 三生石上(FineUI控件)

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
test: guard agent six-hit mock calls · openclaw/openclaw@...
steipete · 2026-05-12 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -310,8 +310,8 @@ async function expectFallsBackToHaiku(params: {

310310
311311

expect(result.result).toBe("ok");

312312

expect(run).toHaveBeenCalledTimes(2);

313-

expect(run.mock.calls[1]?.[0]).toBe("anthropic");

314-

expect(run.mock.calls[1]?.[1]).toBe("claude-haiku-3-5");

313+

expect(run.mock.calls.at(1)?.[0]).toBe("anthropic");

314+

expect(run.mock.calls.at(1)?.[1]).toBe("claude-haiku-3-5");

315315

}

316316
317317

function createOverrideFailureRun(params: {

@@ -678,7 +678,7 @@ describe("runWithModelFallback", () => {

678678
679679

expect(result.result).toEqual({ payloads: [{ text: "fallback ok" }] });

680680

expect(run).toHaveBeenCalledTimes(2);

681-

expect(run.mock.calls[1]).toEqual(["anthropic", "claude-haiku-3-5"]);

681+

expect(run.mock.calls.at(1)).toEqual(["anthropic", "claude-haiku-3-5"]);

682682

expect(result.attempts[0]?.provider).toBe("openai-codex");

683683

expect(result.attempts[0]?.model).toBe("gpt-5.4");

684684

expect(result.attempts[0]?.reason).toBe("format");

@@ -878,7 +878,7 @@ describe("runWithModelFallback", () => {

878878

});

879879
880880

expect(onError).toHaveBeenCalledTimes(1);

881-

const errorCall = requireRecord(onError.mock.calls[0]?.[0], "onError payload");

881+

const errorCall = requireRecord(onError.mock.calls.at(0)?.[0], "onError payload");

882882

expect(errorCall.provider).toBe("openai");

883883

expect(errorCall.model).toBe("gpt-4.1-mini");

884884

expect(errorCall.attempt).toBe(1);

@@ -1257,7 +1257,7 @@ describe("runWithModelFallback", () => {

12571257
12581258

expect(result.result).toBe("ok");

12591259

expect(run).toHaveBeenCalledTimes(2);

1260-

expect(run.mock.calls[1]).toEqual(testCase.expectedFallback);

1260+

expect(run.mock.calls.at(1)).toEqual(testCase.expectedFallback);

12611261

if (testCase.expectedReason) {

12621262

expect(result.attempts).toHaveLength(1);

12631263

expect(result.attempts[0]?.reason).toBe(testCase.expectedReason);

@@ -1357,7 +1357,7 @@ describe("runWithModelFallback", () => {

13571357
13581358

expect(result.result).toBe("ok");

13591359

expect(run).toHaveBeenCalledTimes(1);

1360-

expect(run.mock.calls[0]?.[0]).toBe("openrouter");

1360+

expect(run.mock.calls.at(0)?.[0]).toBe("openrouter");

13611361

expect(result.attempts).toStrictEqual([]);

13621362

});

13631363
Original file line numberDiff line numberDiff line change

@@ -144,7 +144,7 @@ describe("compaction lifecycle logging", () => {

144144

aborted: false,

145145

});

146146
147-

expect(info.mock.calls[0]?.[0]).toBe("embedded run auto-compaction start");

147+

expect(info.mock.calls.at(0)?.[0]).toBe("embedded run auto-compaction start");

148148

const startMeta = loggedInfoMetaAt(info, 0);

149149

expect(startMeta.event).toBe("embedded_run_compaction_start");

150150

expect(startMeta.reason).toBe("threshold");

@@ -153,7 +153,7 @@ describe("compaction lifecycle logging", () => {

153153

"embedded run auto-compaction start: runId=run-test reason=threshold",

154154

);

155155
156-

expect(info.mock.calls[1]?.[0]).toBe("embedded run auto-compaction complete");

156+

expect(info.mock.calls.at(1)?.[0]).toBe("embedded run auto-compaction complete");

157157

const endMeta = loggedInfoMetaAt(info, 1);

158158

expect(endMeta.event).toBe("embedded_run_compaction_end");

159159

expect(endMeta.reason).toBe("threshold");

@@ -194,7 +194,7 @@ describe("compaction lifecycle logging", () => {

194194

aborted: false,

195195

});

196196
197-

expect(info.mock.calls[0]?.[0]).toBe("embedded run manual compaction start");

197+

expect(info.mock.calls.at(0)?.[0]).toBe("embedded run manual compaction start");

198198

const startMeta = loggedInfoMetaAt(info, 0);

199199

expect(startMeta.event).toBe("embedded_run_compaction_start");

200200

expect(startMeta.reason).toBe("manual");

@@ -203,7 +203,7 @@ describe("compaction lifecycle logging", () => {

203203

"embedded run manual compaction start: runId=run-test reason=manual",

204204

);

205205
206-

expect(info.mock.calls[1]?.[0]).toBe("embedded run manual compaction incomplete");

206+

expect(info.mock.calls.at(1)?.[0]).toBe("embedded run manual compaction incomplete");

207207

const endMeta = loggedInfoMetaAt(info, 1);

208208

expect(endMeta.event).toBe("embedded_run_compaction_end");

209209

expect(endMeta.reason).toBe("manual");

@@ -242,7 +242,7 @@ describe("compaction lifecycle logging", () => {

242242

aborted: false,

243243

});

244244
245-

expect(info.mock.calls[0]?.[0]).toBe("embedded run auto-compaction start");

245+

expect(info.mock.calls.at(0)?.[0]).toBe("embedded run auto-compaction start");

246246

const startMeta = loggedInfoMetaAt(info, 0);

247247

expect(startMeta.event).toBe("embedded_run_compaction_start");

248248

expect(startMeta.reason).toBe("threshold");

@@ -251,7 +251,7 @@ describe("compaction lifecycle logging", () => {

251251

"embedded run auto-compaction start: runId=run-test reason=threshold",

252252

);

253253
254-

expect(info.mock.calls[1]?.[0]).toBe("embedded run auto-compaction complete");

254+

expect(info.mock.calls.at(1)?.[0]).toBe("embedded run auto-compaction complete");

255255

const endMeta = loggedInfoMetaAt(info, 1);

256256

expect(endMeta.event).toBe("embedded_run_compaction_end");

257257

expect(endMeta.reason).toBe("threshold");

Original file line numberDiff line numberDiff line change

@@ -57,8 +57,8 @@ async function handleAgentEndAndReadWarnMeta(ctx: EmbeddedPiSubscribeContext) {

5757
5858

const warn = vi.mocked(ctx.log.warn);

5959

expect(warn).toHaveBeenCalledTimes(1);

60-

expect(warn.mock.calls[0]?.[0]).toBe("embedded run agent end");

61-

return readRecord(warn.mock.calls[0]?.[1]);

60+

expect(warn.mock.calls.at(0)?.[0]).toBe("embedded run agent end");

61+

return readRecord(warn.mock.calls.at(0)?.[1]);

6262

}

6363
6464

function readRecord(value: unknown): Record<string, unknown> {

@@ -138,7 +138,7 @@ describe("handleAgentEnd", () => {

138138

await handleAgentEnd(ctx);

139139
140140

const warn = vi.mocked(ctx.log.warn);

141-

const meta = readRecord(warn.mock.calls[0]?.[1]);

141+

const meta = readRecord(warn.mock.calls.at(0)?.[1]);

142142

expect(meta.consoleMessage).toBe(

143143

"embedded run agent end: runId=run-1 isError=true model=claude sonnet 4 provider=anthropic]8;;https://evil.test error=LLM request failed: connection refused by the provider endpoint. rawError=connection refused",

144144

);

@@ -163,7 +163,7 @@ describe("handleAgentEnd", () => {

163163

await handleAgentEnd(ctx);

164164
165165

const warn = vi.mocked(ctx.log.warn);

166-

const meta = readRecord(warn.mock.calls[0]?.[1]);

166+

const meta = readRecord(warn.mock.calls.at(0)?.[1]);

167167

expect(meta.event).toBe("embedded_run_agent_end");

168168

expect(meta.error).toBe("x-api-key: ***");

169169

expect(meta.rawErrorPreview).toBe("x-api-key: ***");

@@ -189,7 +189,7 @@ describe("handleAgentEnd", () => {

189189
190190

await handleAgentEnd(ctx);

191191
192-

const meta = readRecord(vi.mocked(ctx.log.warn).mock.calls[0]?.[1]);

192+

const meta = readRecord(vi.mocked(ctx.log.warn).mock.calls.at(0)?.[1]);

193193

expect(meta.failoverReason).toBe("auth");

194194

expect(meta.providerRuntimeFailureKind).toBe("auth_scope");

195195

expect(meta.httpCode).toBe("401");

@@ -207,7 +207,7 @@ describe("handleAgentEnd", () => {

207207
208208

await handleAgentEnd(ctx);

209209
210-

const warnMeta = vi.mocked(ctx.log.warn).mock.calls[0]?.[1];

210+

const warnMeta = vi.mocked(ctx.log.warn).mock.calls.at(0)?.[1];

211211

const meta = readRecord(warnMeta);

212212

expect(meta.providerRuntimeFailureKind).toBe("auth_html_403");

213213

expect(meta.rawErrorPreview).toBe("403 <!DOCTYPE html><html><body>Access denied</body></html>");

Original file line numberDiff line numberDiff line change

@@ -94,7 +94,7 @@ function expectSingleBlockReplyText(params: {

9494

text: string;

9595

}) {

9696

expect(params.onBlockReply).toHaveBeenCalledTimes(1);

97-

expect(params.onBlockReply.mock.calls[0]?.[0]?.text).toBe(params.text);

97+

expect(params.onBlockReply.mock.calls.at(0)?.[0]?.text).toBe(params.text);

9898

expect(params.subscription.assistantTexts).toEqual([params.text]);

9999

}

100100

@@ -110,8 +110,8 @@ describe("subscribeEmbeddedPiSession", () => {

110110

await vi.waitFor(() => {

111111

expect(onBlockReply).toHaveBeenCalledTimes(1);

112112

});

113-

const payload = onBlockReply.mock.calls[0][0];

114-

expect(payload.text).toBe("Hello block");

113+

const payload = onBlockReply.mock.calls.at(0)?.[0];

114+

expect(payload?.text).toBe("Hello block");

115115

expect(subscription.assistantTexts).toEqual(["Hello block"]);

116116
117117

const assistantMessage = {

@@ -147,7 +147,7 @@ describe("subscribeEmbeddedPiSession", () => {

147147

await vi.waitFor(() => {

148148

expect(onBlockReply).toHaveBeenCalledTimes(1);

149149

});

150-

expect(onBlockReply.mock.calls[0]?.[0]?.text).toBe("Final visible reply.");

150+

expect(onBlockReply.mock.calls.at(0)?.[0]?.text).toBe("Final visible reply.");

151151

expect(subscription.assistantTexts).toEqual(["Final visible reply."]);

152152

});

153153

@@ -198,7 +198,7 @@ describe("subscribeEmbeddedPiSession", () => {

198198

await Promise.resolve();

199199
200200

expect(onBlockReply).toHaveBeenCalledTimes(1);

201-

expect(onBlockReply.mock.calls[0]?.[0]?.text).toBe("Legacy answer");

201+

expect(onBlockReply.mock.calls.at(0)?.[0]?.text).toBe("Legacy answer");

202202

expect(subscription.assistantTexts).toEqual(["Legacy answer"]);

203203
204204

emit({

@@ -260,7 +260,7 @@ describe("subscribeEmbeddedPiSession", () => {

260260

await Promise.resolve();

261261
262262

expect(onBlockReply).toHaveBeenCalledTimes(1);

263-

expect(onBlockReply.mock.calls[0]?.[0]?.text).toBe("Hello world");

263+

expect(onBlockReply.mock.calls.at(0)?.[0]?.text).toBe("Hello world");

264264

expect(subscription.assistantTexts).toEqual(["Hello world"]);

265265

});

266266

@@ -286,7 +286,7 @@ describe("subscribeEmbeddedPiSession", () => {

286286

await Promise.resolve();

287287
288288

expect(onBlockReply).toHaveBeenCalledTimes(1);

289-

expect(onBlockReply.mock.calls[0]?.[0]?.text).toBe("Done.");

289+

expect(onBlockReply.mock.calls.at(0)?.[0]?.text).toBe("Done.");

290290

expect(subscription.assistantTexts).toEqual(["Done."]);

291291

});

292292