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

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
P
Proofpoint News Feed
Engineering at Meta
Engineering at Meta
Recent Announcements
Recent Announcements
L
LangChain Blog
B
Blog
阮一峰的网络日志
阮一峰的网络日志
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
M
MIT News - Artificial intelligence
D
Docker
WordPress大学
WordPress大学
J
Java Code Geeks
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The GitHub Blog
The GitHub Blog
博客园 - 叶小钗
Last Week in AI
Last Week in AI
Stack Overflow Blog
Stack Overflow Blog
有赞技术团队
有赞技术团队
MyScale Blog
MyScale Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
MongoDB | Blog
MongoDB | Blog
博客园 - Franky

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

@@ -761,7 +761,7 @@ describe("agentCommand – LiveSessionModelSwitchError retry", () => {

761761
762762

expect(state.runWithModelFallbackMock).toHaveBeenCalledTimes(2);

763763
764-

const secondCall = state.runWithModelFallbackMock.mock.calls[1]?.[0] as

764+

const secondCall = state.runWithModelFallbackMock.mock.calls.at(1)?.[0] as

765765

| FallbackRunnerParams

766766

| undefined;

767767

expect(secondCall?.provider).toBe("openai");

@@ -912,8 +912,8 @@ describe("agentCommand – LiveSessionModelSwitchError retry", () => {

912912

await runBasicAgentCommand();

913913
914914

expect(state.trajectoryRecordEventMock).toHaveBeenCalledTimes(1);

915-

expect(state.trajectoryRecordEventMock.mock.calls[0]?.[0]).toBe("model.fallback_step");

916-

expectRecordFields(state.trajectoryRecordEventMock.mock.calls[0]?.[1], {

915+

expect(state.trajectoryRecordEventMock.mock.calls.at(0)?.[0]).toBe("model.fallback_step");

916+

expectRecordFields(state.trajectoryRecordEventMock.mock.calls.at(0)?.[1], {

917917

fallbackStepType: "fallback_step",

918918

fallbackStepFromModel: "ollama/llama3",

919919

fallbackStepToModel: "openai/gpt-5.4",

@@ -1125,7 +1125,7 @@ describe("agentCommand – LiveSessionModelSwitchError retry", () => {

11251125
11261126

await runBasicAgentCommand();

11271127
1128-

const attemptParams = state.runAgentAttemptMock.mock.calls[0]?.[0] as

1128+

const attemptParams = state.runAgentAttemptMock.mock.calls.at(0)?.[0] as

11291129

| { skillsSnapshot?: Record<string, unknown> }

11301130

| undefined;

11311131

expectRecordFields(attemptParams?.skillsSnapshot, {

@@ -1176,13 +1176,13 @@ describe("agentCommand – LiveSessionModelSwitchError retry", () => {

11761176

code: "empty_result",

11771177

});

11781178

expect(state.runAgentAttemptMock).toHaveBeenCalledTimes(2);

1179-

expectRecordFields(state.runAgentAttemptMock.mock.calls[1]?.[0], {

1179+

expectRecordFields(state.runAgentAttemptMock.mock.calls.at(1)?.[0], {

11801180

providerOverride: "openai",

11811181

modelOverride: "gpt-5.4",

11821182

isFallbackRetry: true,

11831183

});

11841184

const deliveryParams = requireRecord(

1185-

state.deliverAgentCommandResultMock.mock.calls[0]?.[0],

1185+

state.deliverAgentCommandResultMock.mock.calls.at(0)?.[0],

11861186

"delivery params",

11871187

);

11881188

const result = requireRecord(deliveryParams.result, "delivery result");

@@ -1261,15 +1261,15 @@ describe("agentCommand – LiveSessionModelSwitchError retry", () => {

12611261

});

12621262
12631263

expect(state.acpRunTurnMock).toHaveBeenCalledTimes(1);

1264-

const runTurnParams = state.acpRunTurnMock.mock.calls[0]?.[0] as { text?: string };

1264+

const runTurnParams = state.acpRunTurnMock.mock.calls.at(0)?.[0] as { text?: string };

12651265

expect(runTurnParams.text).toContain("A background task completed.");

12661266

expect(runTurnParams.text).toContain("inspect ACP delivery");

12671267

expect(runTurnParams.text).toContain("child output");

12681268

expect(runTurnParams.text).not.toContain(INTERNAL_RUNTIME_CONTEXT_BEGIN);

12691269

expect(runTurnParams.text).not.toContain(INTERNAL_RUNTIME_CONTEXT_END);

12701270
12711271

expect(state.persistAcpTurnTranscriptMock).toHaveBeenCalledTimes(1);

1272-

const transcriptParams = state.persistAcpTurnTranscriptMock.mock.calls[0]?.[0] as {

1272+

const transcriptParams = state.persistAcpTurnTranscriptMock.mock.calls.at(0)?.[0] as {

12731273

body?: string;

12741274

transcriptBody?: string;

12751275

};

Original file line numberDiff line numberDiff line change

@@ -71,7 +71,7 @@ vi.mock("./pi-embedded.js", () => ({

7171
7272

function capturedEmbeddedRunParams(): RunEmbeddedPiAgentParams {

7373

expect(runEmbeddedPiAgentMock).toHaveBeenCalledTimes(1);

74-

const call = runEmbeddedPiAgentMock.mock.calls[0];

74+

const call = runEmbeddedPiAgentMock.mock.calls.at(0);

7575

if (!call) {

7676

throw new Error("expected runEmbeddedPiAgent to be called");

7777

}

@@ -261,7 +261,7 @@ describe("Auth profile runtime contract - Pi and CLI adapter", () => {

261261

});

262262
263263

expect(runCliAgentMock).toHaveBeenCalledTimes(1);

264-

expect(runCliAgentMock.mock.calls[0]?.[0]?.authProfileId).toBe(

264+

expect(runCliAgentMock.mock.calls.at(0)?.[0]?.authProfileId).toBe(

265265

expectedForwardedAuthProfile({

266266

provider: AUTH_PROFILE_RUNTIME_CONTRACT.codexCliProvider,

267267

authProfileProvider: AUTH_PROFILE_RUNTIME_CONTRACT.openAiCodexProvider,

@@ -281,7 +281,7 @@ describe("Auth profile runtime contract - Pi and CLI adapter", () => {

281281

});

282282
283283

expect(runCliAgentMock).toHaveBeenCalledTimes(1);

284-

expect(runCliAgentMock.mock.calls[0]?.[0]?.authProfileId).toBe(

284+

expect(runCliAgentMock.mock.calls.at(0)?.[0]?.authProfileId).toBe(

285285

expectedForwardedAuthProfile({

286286

provider: AUTH_PROFILE_RUNTIME_CONTRACT.codexCliProvider,

287287

authProfileProvider: AUTH_PROFILE_RUNTIME_CONTRACT.codexCliProvider,

@@ -301,7 +301,7 @@ describe("Auth profile runtime contract - Pi and CLI adapter", () => {

301301

});

302302
303303

expect(runCliAgentMock).toHaveBeenCalledTimes(1);

304-

expect(runCliAgentMock.mock.calls[0]?.[0]?.authProfileId).toBeUndefined();

304+

expect(runCliAgentMock.mock.calls.at(0)?.[0]?.authProfileId).toBeUndefined();

305305

});

306306
307307

it("does not leak an OpenAI Codex auth profile into an unrelated CLI provider", async () => {

@@ -314,7 +314,7 @@ describe("Auth profile runtime contract - Pi and CLI adapter", () => {

314314

});

315315
316316

expect(runCliAgentMock).toHaveBeenCalledTimes(1);

317-

expect(runCliAgentMock.mock.calls[0]?.[0]?.authProfileId).toBeUndefined();

317+

expect(runCliAgentMock.mock.calls.at(0)?.[0]?.authProfileId).toBeUndefined();

318318

});

319319
320320

it("does not let a configured Codex harness leak OpenAI Codex auth into unrelated CLI providers", async () => {

@@ -338,7 +338,7 @@ describe("Auth profile runtime contract - Pi and CLI adapter", () => {

338338

});

339339
340340

expect(runCliAgentMock).toHaveBeenCalledTimes(1);

341-

expect(runCliAgentMock.mock.calls[0]?.[0]?.authProfileId).toBeUndefined();

341+

expect(runCliAgentMock.mock.calls.at(0)?.[0]?.authProfileId).toBeUndefined();

342342

});

343343
344344

it("forwards an OpenAI Codex auth profile through the embedded Pi path", async () => {

@@ -351,7 +351,7 @@ describe("Auth profile runtime contract - Pi and CLI adapter", () => {

351351

});

352352
353353

expect(runEmbeddedPiAgentMock).toHaveBeenCalledTimes(1);

354-

expect(runEmbeddedPiAgentMock.mock.calls[0]?.[0]?.authProfileId).toBe(

354+

expect(runEmbeddedPiAgentMock.mock.calls.at(0)?.[0]?.authProfileId).toBe(

355355

AUTH_PROFILE_RUNTIME_CONTRACT.openAiCodexProfileId,

356356

);

357357

});

@@ -366,7 +366,7 @@ describe("Auth profile runtime contract - Pi and CLI adapter", () => {

366366

});

367367
368368

expect(runEmbeddedPiAgentMock).toHaveBeenCalledTimes(1);

369-

expect(runEmbeddedPiAgentMock.mock.calls[0]?.[0]?.authProfileId).toBe(

369+

expect(runEmbeddedPiAgentMock.mock.calls.at(0)?.[0]?.authProfileId).toBe(

370370

expectedForwardedAuthProfile({

371371

provider: AUTH_PROFILE_RUNTIME_CONTRACT.openAiCodexProvider,

372372

authProfileProvider: AUTH_PROFILE_RUNTIME_CONTRACT.codexCliProvider,

Original file line numberDiff line numberDiff line change

@@ -246,7 +246,7 @@ function mockActiveTranscript(messages: unknown[]) {

246246

async function runMathSideQuestionAndCaptureContext() {

247247

mockDoneAnswer(MATH_ANSWER);

248248

await runMathSideQuestion();

249-

const [, context] = streamSimpleMock.mock.calls[0] ?? [];

249+

const [, context] = streamSimpleMock.mock.calls.at(0) ?? [];

250250

return context;

251251

}

252252

@@ -474,7 +474,7 @@ describe("runBtwSideQuestion", () => {

474474

const result = await runSideQuestion();

475475
476476

expect(result).toEqual({ text: "Final answer." });

477-

const ensureArgs = ensureOpenClawModelsJsonMock.mock.calls[0];

477+

const ensureArgs = ensureOpenClawModelsJsonMock.mock.calls.at(0);

478478

expect(ensureArgs?.[1]).toBe(DEFAULT_AGENT_DIR);

479479

expect(ensureArgs?.[2]).toEqual({ workspaceDir: "/tmp/workspace" });

480480

});

@@ -523,7 +523,7 @@ describe("runBtwSideQuestion", () => {

523523

expect(sideQuestionParams.agentId).toBe("main");

524524

expect(sideQuestionParams.workspaceDir).toBe("/tmp/workspace");

525525

expect(sideQuestionParams.authProfileId).toBe("openai-codex:work");

526-

expect(codexSideQuestionMock.mock.calls[0]?.[0].sessionFile).toContain("session-1.jsonl");

526+

expect(codexSideQuestionMock.mock.calls.at(0)?.[0].sessionFile).toContain("session-1.jsonl");

527527

expect(streamSimpleMock).not.toHaveBeenCalled();

528528

expect(registerProviderStreamForModelMock).not.toHaveBeenCalled();

529529

});

@@ -589,7 +589,7 @@ describe("runBtwSideQuestion", () => {

589589
590590

expect(result).toEqual({ text: "Copilot answer." });

591591

const runtimeAuthParams = expectRecordFields(

592-

prepareProviderRuntimeAuthMock.mock.calls[0]?.[0],

592+

prepareProviderRuntimeAuthMock.mock.calls.at(0)?.[0],

593593

{

594594

provider: "github-copilot",

595595

workspaceDir: "/tmp/workspace",

@@ -603,7 +603,7 @@ describe("runBtwSideQuestion", () => {

603603

authMode: "token",

604604

profileId: "profile-1",

605605

});

606-

const [streamModel, , streamOptions] = streamSimpleMock.mock.calls[0] ?? [];

606+

const [streamModel, , streamOptions] = streamSimpleMock.mock.calls.at(0) ?? [];

607607

expectRecordFields(streamModel, {

608608

provider: "github-copilot",

609609

id: "gpt-5.4",

@@ -632,7 +632,7 @@ describe("runBtwSideQuestion", () => {

632632
633633

expect(result).toEqual({ text: "Ollama Cloud answer." });

634634

const registerParams = expectRecordFields(

635-

registerProviderStreamForModelMock.mock.calls[0]?.[0],

635+

registerProviderStreamForModelMock.mock.calls.at(0)?.[0],

636636

{

637637

workspaceDir: "/tmp/workspace",

638638

},

@@ -661,7 +661,7 @@ describe("runBtwSideQuestion", () => {

661661
662662

await runSideQuestion();

663663
664-

const [, , options] = streamSimpleMock.mock.calls[0] ?? [];

664+

const [, , options] = streamSimpleMock.mock.calls.at(0) ?? [];

665665

const onPayload = (options as { onPayload?: (payload: unknown) => void })?.onPayload;

666666

const payloadWithEmptyTools = { messages: [], tools: [] as unknown[] };

667667

@@ -712,7 +712,7 @@ describe("runBtwSideQuestion", () => {

712712

const result = await runSideQuestion({ resolvedThinkLevel: "adaptive" });

713713
714714

expect(result).toEqual({ text: "Final answer." });

715-

const [, , options] = streamSimpleMock.mock.calls[0] ?? [];

715+

const [, , options] = streamSimpleMock.mock.calls.at(0) ?? [];

716716

expect((options as { reasoning?: unknown } | undefined)?.reasoning).toBeUndefined();

717717

});

718718
Original file line numberDiff line numberDiff line change

@@ -486,7 +486,7 @@ describe("installContextEngineLoopHook", () => {

486486

await callTransform(agent, messages);

487487
488488

expect(engine.afterTurn).toHaveBeenCalledTimes(1);

489-

const afterTurnParams = engine.afterTurn.mock.calls[0]?.[0];

489+

const afterTurnParams = engine.afterTurn.mock.calls.at(0)?.[0];

490490

expect(afterTurnParams?.prePromptMessageCount).toBe(1);

491491

expect(afterTurnParams?.messages).toBe(messages);

492492

expect(engine.assemble).toHaveBeenCalledTimes(1);

@@ -508,7 +508,7 @@ describe("installContextEngineLoopHook", () => {

508508

await callTransform(agent, messages);

509509
510510

expect(engine.afterTurn).toHaveBeenCalledTimes(1);

511-

const afterTurnParams = engine.afterTurn.mock.calls[0]?.[0];

511+

const afterTurnParams = engine.afterTurn.mock.calls.at(0)?.[0];

512512

expect(afterTurnParams?.prePromptMessageCount).toBe(1);

513513

expect(afterTurnParams?.runtimeContext).toEqual({

514514

provider: "anthropic",

@@ -551,7 +551,7 @@ describe("installContextEngineLoopHook", () => {

551551

await callTransform(agent, withNew);

552552
553553

expect(engine.afterTurn).toHaveBeenCalledTimes(1);

554-

const afterTurnParams = engine.afterTurn.mock.calls[0]?.[0];

554+

const afterTurnParams = engine.afterTurn.mock.calls.at(0)?.[0];

555555

expect(afterTurnParams?.prePromptMessageCount).toBe(2);

556556

expect(afterTurnParams?.messages).toBe(withNew);

557557

expect(engine.assemble).toHaveBeenCalledTimes(1);

@@ -572,8 +572,8 @@ describe("installContextEngineLoopHook", () => {

572572

await callTransform(agent, batch2);

573573
574574

expect(engine.afterTurn).toHaveBeenCalledTimes(2);

575-

expect(engine.afterTurn.mock.calls[0]?.[0]?.prePromptMessageCount).toBe(2);

576-

expect(engine.afterTurn.mock.calls[1]?.[0]?.prePromptMessageCount).toBe(4);

575+

expect(engine.afterTurn.mock.calls.at(0)?.[0]?.prePromptMessageCount).toBe(2);

576+

expect(engine.afterTurn.mock.calls.at(1)?.[0]?.prePromptMessageCount).toBe(4);

577577

});

578578
579579

it("reports the latest delivered afterTurn checkpoint", async () => {

@@ -761,8 +761,8 @@ describe("installContextEngineLoopHook", () => {

761761

await callTransform(agent, batch2);

762762
763763

expect(engine.ingestBatch).toHaveBeenCalledTimes(2);

764-

expect(engine.ingestBatch?.mock.calls[0]?.[0]?.messages).toEqual(batch1.slice(2));

765-

expect(engine.ingestBatch?.mock.calls[1]?.[0]?.messages).toEqual(batch2.slice(4));

764+

expect(engine.ingestBatch?.mock.calls.at(0)?.[0]?.messages).toEqual(batch1.slice(2));

765+

expect(engine.ingestBatch?.mock.calls.at(1)?.[0]?.messages).toEqual(batch2.slice(4));

766766

expect(engine.assemble).toHaveBeenCalledTimes(2);

767767

});

768768

@@ -776,7 +776,7 @@ describe("installContextEngineLoopHook", () => {

776776

await callTransform(agent, messages);

777777
778778

expect(engine.ingest).toHaveBeenCalledTimes(1);

779-

const ingestParams = engine.ingest.mock.calls[0]?.[0];

779+

const ingestParams = engine.ingest.mock.calls.at(0)?.[0];

780780

expect(ingestParams?.sessionId).toBe(sessionId);

781781

expect(ingestParams?.sessionKey).toBe(sessionKey);

782782

expect(ingestParams?.message).toBe(toolResult);