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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The GitHub Blog
The GitHub Blog
J
Java Code Geeks
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
A
About on SuperTechFans
博客园 - 三生石上(FineUI控件)
罗磊的独立博客
MongoDB | Blog
MongoDB | Blog
B
Blog RSS Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Vercel News
Vercel News
腾讯CDC
博客园 - 聂微东
The Cloudflare Blog
F
Fortinet All Blogs
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Visual Studio Blog
Last Week in AI
Last Week in AI
B
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
test: guard openresponses mock calls · openclaw/openclaw@...
steipete · 2026-05-12 · via Recent Commits to openclaw:main

@@ -286,7 +286,7 @@ describe("OpenResponses HTTP API (e2e)", () => {

286286

{ "x-openclaw-agent-id": "beta" },

287287

);

288288

expect(resHeader.status).toBe(200);

289-

const optsHeader = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0];

289+

const optsHeader = agentCommand.mock.calls.at(0)?.[0];

290290

expect((optsHeader as { sessionKey?: string } | undefined)?.sessionKey ?? "").toMatch(

291291

/^agent:beta:/,

292292

);

@@ -298,7 +298,7 @@ describe("OpenResponses HTTP API (e2e)", () => {

298298

mockAgentOnce([{ text: "hello" }]);

299299

const resModel = await postResponses(port, { model: "openclaw/beta", input: "hi" });

300300

expect(resModel.status).toBe(200);

301-

const optsModel = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0];

301+

const optsModel = agentCommand.mock.calls.at(0)?.[0];

302302

expect((optsModel as { sessionKey?: string } | undefined)?.sessionKey ?? "").toMatch(

303303

/^agent:beta:/,

304304

);

@@ -307,7 +307,7 @@ describe("OpenResponses HTTP API (e2e)", () => {

307307

mockAgentOnce([{ text: "hello" }]);

308308

const resDefaultAlias = await postResponses(port, { model: "openclaw/default", input: "hi" });

309309

expect(resDefaultAlias.status).toBe(200);

310-

const optsDefaultAlias = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0];

310+

const optsDefaultAlias = agentCommand.mock.calls.at(0)?.[0];

311311

expect((optsDefaultAlias as { sessionKey?: string } | undefined)?.sessionKey ?? "").toMatch(

312312

/^agent:main:/,

313313

);

@@ -320,7 +320,7 @@ describe("OpenResponses HTTP API (e2e)", () => {

320320

{ "x-openclaw-message-channel": "custom-client-channel" },

321321

);

322322

expect(resChannelHeader.status).toBe(200);

323-

const optsChannelHeader = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0];

323+

const optsChannelHeader = agentCommand.mock.calls.at(0)?.[0];

324324

expect((optsChannelHeader as { messageChannel?: string } | undefined)?.messageChannel).toBe(

325325

"custom-client-channel",

326326

);

@@ -336,7 +336,7 @@ describe("OpenResponses HTTP API (e2e)", () => {

336336

{ "x-openclaw-model": "openai/gpt-5.4" },

337337

);

338338

expect(resModelOverride.status).toBe(200);

339-

const optsModelOverride = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0];

339+

const optsModelOverride = agentCommand.mock.calls.at(0)?.[0];

340340

expect((optsModelOverride as { model?: string } | undefined)?.model).toBe("openai/gpt-5.4");

341341

await ensureResponseConsumed(resModelOverride);

342342

@@ -377,7 +377,7 @@ describe("OpenResponses HTTP API (e2e)", () => {

377377

input: "hi",

378378

});

379379

expect(resUser.status).toBe(200);

380-

const optsUser = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0];

380+

const optsUser = agentCommand.mock.calls.at(0)?.[0];

381381

expect((optsUser as { sessionKey?: string } | undefined)?.sessionKey ?? "").toContain(

382382

"openresponses-user:alice",

383383

);

@@ -389,7 +389,7 @@ describe("OpenResponses HTTP API (e2e)", () => {

389389

input: "hello world",

390390

});

391391

expect(resString.status).toBe(200);

392-

const optsString = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0];

392+

const optsString = agentCommand.mock.calls.at(0)?.[0];

393393

expect((optsString as { message?: string } | undefined)?.message).toBe("hello world");

394394

await ensureResponseConsumed(resString);

395395

@@ -399,7 +399,7 @@ describe("OpenResponses HTTP API (e2e)", () => {

399399

input: [{ type: "message", role: "user", content: "hello there" }],

400400

});

401401

expect(resArray.status).toBe(200);

402-

const optsArray = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0];

402+

const optsArray = agentCommand.mock.calls.at(0)?.[0];

403403

expect((optsArray as { message?: string } | undefined)?.message).toBe("hello there");

404404

await ensureResponseConsumed(resArray);

405405

@@ -413,7 +413,7 @@ describe("OpenResponses HTTP API (e2e)", () => {

413413

],

414414

});

415415

expect(resSystemDeveloper.status).toBe(200);

416-

const optsSystemDeveloper = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0];

416+

const optsSystemDeveloper = agentCommand.mock.calls.at(0)?.[0];

417417

const extraSystemPrompt =

418418

(optsSystemDeveloper as { extraSystemPrompt?: string } | undefined)?.extraSystemPrompt ??

419419

"";

@@ -428,7 +428,7 @@ describe("OpenResponses HTTP API (e2e)", () => {

428428

instructions: "Always respond in French.",

429429

});

430430

expect(resInstructions.status).toBe(200);

431-

const optsInstructions = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0];

431+

const optsInstructions = agentCommand.mock.calls.at(0)?.[0];

432432

const instructionPrompt =

433433

(optsInstructions as { extraSystemPrompt?: string } | undefined)?.extraSystemPrompt ?? "";

434434

expect(instructionPrompt).toContain("Always respond in French.");

@@ -445,7 +445,7 @@ describe("OpenResponses HTTP API (e2e)", () => {

445445

],

446446

});

447447

expect(resHistory.status).toBe(200);

448-

const optsHistory = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0];

448+

const optsHistory = agentCommand.mock.calls.at(0)?.[0];

449449

const historyMessage = (optsHistory as { message?: string } | undefined)?.message ?? "";

450450

expect(historyMessage).toContain(HISTORY_CONTEXT_MARKER);

451451

expect(historyMessage).toContain("User: Hello, who are you?");

@@ -463,7 +463,7 @@ describe("OpenResponses HTTP API (e2e)", () => {

463463

],

464464

});

465465

expect(resFunctionOutput.status).toBe(200);

466-

const optsFunctionOutput = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0];

466+

const optsFunctionOutput = agentCommand.mock.calls.at(0)?.[0];

467467

const functionOutputMessage =

468468

(optsFunctionOutput as { message?: string } | undefined)?.message ?? "";

469469

expect(functionOutputMessage).toContain("Sunny, 70F.");

@@ -492,7 +492,7 @@ describe("OpenResponses HTTP API (e2e)", () => {

492492

],

493493

});

494494

expect(resInputFile.status).toBe(200);

495-

const optsInputFile = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0];

495+

const optsInputFile = agentCommand.mock.calls.at(0)?.[0];

496496

const inputFileMessage = (optsInputFile as { message?: string } | undefined)?.message ?? "";

497497

const inputFilePrompt =

498498

(optsInputFile as { extraSystemPrompt?: string } | undefined)?.extraSystemPrompt ?? "";

@@ -525,7 +525,7 @@ describe("OpenResponses HTTP API (e2e)", () => {

525525

],

526526

});

527527

expect(resInputFileWhitespace.status).toBe(200);

528-

const optsInputFileWhitespace = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0];

528+

const optsInputFileWhitespace = agentCommand.mock.calls.at(0)?.[0];

529529

const inputFileWhitespacePrompt =

530530

(optsInputFileWhitespace as { extraSystemPrompt?: string } | undefined)

531531

?.extraSystemPrompt ?? "";

@@ -557,7 +557,7 @@ describe("OpenResponses HTTP API (e2e)", () => {

557557

],

558558

});

559559

expect(resInputFileInjection.status).toBe(200);

560-

const optsInputFileInjection = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0];

560+

const optsInputFileInjection = agentCommand.mock.calls.at(0)?.[0];

561561

const inputFileInjectionPrompt =

562562

(optsInputFileInjection as { extraSystemPrompt?: string } | undefined)?.extraSystemPrompt ??

563563

"";

@@ -579,7 +579,7 @@ describe("OpenResponses HTTP API (e2e)", () => {

579579

tool_choice: "none",

580580

});

581581

expect(resToolNone.status).toBe(200);

582-

const optsToolNone = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0];

582+

const optsToolNone = agentCommand.mock.calls.at(0)?.[0];

583583

expect(

584584

(optsToolNone as { clientTools?: unknown[] } | undefined)?.clientTools,

585585

).toBeUndefined();

@@ -605,7 +605,7 @@ describe("OpenResponses HTTP API (e2e)", () => {

605605

tool_choice: { type: "function", function: { name: "get_time" } },

606606

});

607607

expect(resToolChoice.status).toBe(200);

608-

const optsToolChoice = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0];

608+

const optsToolChoice = agentCommand.mock.calls.at(0)?.[0];

609609

const clientTools =

610610

(

611611

optsToolChoice as

@@ -635,7 +635,7 @@ describe("OpenResponses HTTP API (e2e)", () => {

635635

max_output_tokens: 123,

636636

});

637637

expect(resMaxTokens.status).toBe(200);

638-

const optsMaxTokens = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0];

638+

const optsMaxTokens = agentCommand.mock.calls.at(0)?.[0];

639639

expect(

640640

(optsMaxTokens as { streamParams?: { maxTokens?: number } } | undefined)?.streamParams

641641

?.maxTokens,

@@ -800,7 +800,7 @@ describe("OpenResponses HTTP API (e2e)", () => {

800800

input: "hi",

801801

});

802802

expect(writeScopeResponse.status).toBe(200);

803-

const writeScopeOpts = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0] as

803+

const writeScopeOpts = agentCommand.mock.calls.at(0)?.[0] as

804804

| { senderIsOwner?: boolean }

805805

| undefined;

806806

expect(writeScopeOpts?.senderIsOwner).toBe(false);

@@ -815,7 +815,7 @@ describe("OpenResponses HTTP API (e2e)", () => {

815815

{ "x-openclaw-scopes": "operator.admin, operator.write" },

816816

);

817817

expect(adminScopeResponse.status).toBe(200);

818-

const adminScopeOpts = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0] as

818+

const adminScopeOpts = agentCommand.mock.calls.at(0)?.[0] as

819819

| { senderIsOwner?: boolean }

820820

| undefined;

821821

expect(adminScopeOpts?.senderIsOwner).toBe(true);

@@ -836,7 +836,7 @@ describe("OpenResponses HTTP API (e2e)", () => {

836836

{ "x-openclaw-scopes": "operator.admin, operator.write" },

837837

);

838838

expect(streamingResponse.status).toBe(200);

839-

const streamingOpts = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0] as

839+

const streamingOpts = agentCommand.mock.calls.at(0)?.[0] as

840840

| { senderIsOwner?: boolean }

841841

| undefined;

842842

expect(streamingOpts?.senderIsOwner).toBe(true);

@@ -865,7 +865,7 @@ describe("OpenResponses HTTP API (e2e)", () => {

865865

});

866866867867

expect(res.status).toBe(200);

868-

const firstCall = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0] as

868+

const firstCall = agentCommand.mock.calls.at(0)?.[0] as

869869

| { senderIsOwner?: boolean }

870870

| undefined;

871871

expect(firstCall?.senderIsOwner).toBe(true);

@@ -1133,9 +1133,7 @@ describe("OpenResponses HTTP API (e2e)", () => {

11331133

});

11341134

expect(firstResponse.status).toBe(200);

11351135

const firstJson = (await firstResponse.json()) as { id?: string };

1136-

const firstOpts = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0] as

1137-

| { sessionKey?: string }

1138-

| undefined;

1136+

const firstOpts = agentCommand.mock.calls.at(0)?.[0] as { sessionKey?: string } | undefined;

11391137

expect(firstJson.id).toMatch(/^resp_/);

11401138

const firstSessionKey = requireSessionKey(firstOpts?.sessionKey, "first response");

11411139

@@ -1150,9 +1148,7 @@ describe("OpenResponses HTTP API (e2e)", () => {

11501148

input: [{ type: "function_call_output", call_id: "call_1", output: "Sunny, 70F." }],

11511149

});

11521150

expect(secondResponse.status).toBe(200);

1153-

const secondOpts = (agentCommand.mock.calls[1] as unknown[] | undefined)?.[0] as

1154-

| { sessionKey?: string }

1155-

| undefined;

1151+

const secondOpts = agentCommand.mock.calls.at(1)?.[0] as { sessionKey?: string } | undefined;

11561152

expect(secondOpts?.sessionKey).toBe(firstSessionKey);

11571153

await ensureResponseConsumed(secondResponse);

11581154

});

@@ -1172,9 +1168,7 @@ describe("OpenResponses HTTP API (e2e)", () => {

11721168

});

11731169

expect(firstResponse.status).toBe(200);

11741170

const firstJson = (await firstResponse.json()) as { id?: string };

1175-

const firstOpts = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0] as

1176-

| { sessionKey?: string }

1177-

| undefined;

1171+

const firstOpts = agentCommand.mock.calls.at(0)?.[0] as { sessionKey?: string } | undefined;

11781172

expect(firstOpts?.sessionKey ?? "").toContain("openresponses-user:alice");

1179117311801174

agentCommand.mockResolvedValueOnce({

@@ -1189,9 +1183,7 @@ describe("OpenResponses HTTP API (e2e)", () => {

11891183

input: "hello again",

11901184

});

11911185

expect(secondResponse.status).toBe(200);

1192-

const secondOpts = (agentCommand.mock.calls[1] as unknown[] | undefined)?.[0] as

1193-

| { sessionKey?: string }

1194-

| undefined;

1186+

const secondOpts = agentCommand.mock.calls.at(1)?.[0] as { sessionKey?: string } | undefined;

11951187

expect(secondOpts?.sessionKey).toBe(firstOpts?.sessionKey);

11961188

await ensureResponseConsumed(secondResponse);

11971189

});