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

推荐订阅源

P
Proofpoint News Feed
云风的 BLOG
云风的 BLOG
Apple Machine Learning Research
Apple Machine Learning Research
Hugging Face - Blog
Hugging Face - Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
雷峰网
雷峰网
B
Blog
月光博客
月光博客
博客园 - 【当耐特】
WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
I
InfoQ
The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
Jina AI
Jina AI
博客园 - Franky
MyScale Blog
MyScale Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Last Week in AI
Last Week in AI
B
Blog RSS Feed
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
test: guard gateway call assertions · openclaw/openclaw@0...
steipete · 2026-05-12 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -142,7 +142,7 @@ describe("parseMessageWithAttachments", () => {

142142

// ctx.MediaPaths so the workspace stage surfaces a real path.

143143

expect(parsed.message).toBe("read this");

144144

expect(saveMediaBufferMock).toHaveBeenCalledOnce();

145-

expect(saveMediaBufferMock.mock.calls[0]?.[1]).toBe("application/pdf");

145+

expect(saveMediaBufferMock.mock.calls.at(0)?.[1]).toBe("application/pdf");

146146

expect(logs).toHaveLength(0);

147147

});

148148

@@ -155,7 +155,7 @@ describe("parseMessageWithAttachments", () => {

155155

]);

156156

expect(parsed.offloadedRefs).toHaveLength(1);

157157

expect(parsed.offloadedRefs[0]?.mimeType).toBe("application/octet-stream");

158-

expect(saveMediaBufferMock.mock.calls[0]?.[1]).toBe("application/octet-stream");

158+

expect(saveMediaBufferMock.mock.calls.at(0)?.[1]).toBe("application/octet-stream");

159159

expect(parsed.message).toBe("take a look");

160160

expect(logs).toHaveLength(0);

161161

});

Original file line numberDiff line numberDiff line change

@@ -56,7 +56,7 @@ describe("handleControlUiHttpRequest auto-detected root", () => {

5656
5757

expect(handled).toBe(true);

5858

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

59-

expect(String(end.mock.calls[0]?.[0] ?? "")).toBe("console.log('hi');");

59+

expect(String(end.mock.calls.at(0)?.[0] ?? "")).toBe("console.log('hi');");

6060

});

6161

});

6262

@@ -77,7 +77,7 @@ describe("handleControlUiHttpRequest auto-detected root", () => {

7777
7878

expect(handled).toBe(true);

7979

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

80-

expect(String(end.mock.calls[0]?.[0] ?? "")).toBe("<html>fallback-hardlink</html>\n");

80+

expect(String(end.mock.calls.at(0)?.[0] ?? "")).toBe("<html>fallback-hardlink</html>\n");

8181

});

8282

});

8383
Original file line numberDiff line numberDiff line change

@@ -667,8 +667,8 @@ describe("createManagedOutgoingImageBlocks", () => {

667667

expect(blocks).toHaveLength(1);

668668

expect(requireBlock(blocks).type).toBe("image");

669669

expect(onPrepareError).toHaveBeenCalledTimes(1);

670-

expect(onPrepareError.mock.calls[0]?.[0]).toBeInstanceOf(Error);

671-

expect(onPrepareError.mock.calls[0]?.[0]?.message).toMatch(

670+

expect(onPrepareError.mock.calls.at(0)?.[0]).toBeInstanceOf(Error);

671+

expect(onPrepareError.mock.calls.at(0)?.[0]?.message).toMatch(

672672

/Managed image attachment .* could not be prepared/i,

673673

);

674674

});

Original file line numberDiff line numberDiff line change

@@ -201,7 +201,7 @@ describe("createGatewayCloseHandler", () => {

201201

await close({ reason: "SIGTERM" });

202202
203203

expect(drainActiveSessionsForShutdown).toHaveBeenCalledTimes(1);

204-

expect(drainActiveSessionsForShutdown.mock.calls[0]?.[0]?.reason).toBe("shutdown");

204+

expect(drainActiveSessionsForShutdown.mock.calls.at(0)?.[0]?.reason).toBe("shutdown");

205205

});

206206
207207

it("drains the active-session tracker with reason=restart when restartExpectedMs is set", async () => {

@@ -216,7 +216,7 @@ describe("createGatewayCloseHandler", () => {

216216

await close({ reason: "gateway restarting", restartExpectedMs: 1234 });

217217
218218

expect(drainActiveSessionsForShutdown).toHaveBeenCalledTimes(1);

219-

expect(drainActiveSessionsForShutdown.mock.calls[0]?.[0]?.reason).toBe("restart");

219+

expect(drainActiveSessionsForShutdown.mock.calls.at(0)?.[0]?.reason).toBe("restart");

220220

});

221221
222222

it("records a warning and continues shutdown when the session-end drain reports a timeout", async () => {

Original file line numberDiff line numberDiff line change

@@ -89,7 +89,7 @@ describe("agent handler session create events", () => {

8989

req: { id: "req-agent-create-event" } as never,

9090

});

9191
92-

const responseCall = respond.mock.calls[0] as

92+

const responseCall = respond.mock.calls.at(0) as

9393

| [boolean, { status?: string; runId?: string }, unknown, { runId?: string }]

9494

| undefined;

9595

expect(responseCall?.[0]).toBe(true);

@@ -99,7 +99,7 @@ describe("agent handler session create events", () => {

9999

expect(responseCall?.[3]?.runId).toBe("idem-agent-create-event");

100100

await vi.waitFor(

101101

() => {

102-

const call = broadcastToConnIds.mock.calls[0] as

102+

const call = broadcastToConnIds.mock.calls.at(0) as

103103

| [

104104

string,

105105

{ sessionKey?: string; reason?: string },

Original file line numberDiff line numberDiff line change

@@ -77,15 +77,15 @@ function requireRecord(value: unknown): Record<string, unknown> {

7777

}

7878
7979

function requireFirstCallArg(mock: { mock: { calls: readonly (readonly unknown[])[] } }) {

80-

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

80+

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

8181

if (!call) {

8282

throw new Error("Expected first mock call");

8383

}

8484

return call[0];

8585

}

8686
8787

function requireRespondPayload(respond: ReturnType<typeof vi.fn>): Record<string, unknown> {

88-

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

88+

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

8989

if (!call) {

9090

throw new Error("Expected respond call");

9191

}

Original file line numberDiff line numberDiff line change

@@ -48,7 +48,7 @@ describe("diagnostics gateway methods", () => {

4848

});

4949
5050

expect(respond).toHaveBeenCalledTimes(1);

51-

expect(respond.mock.calls[0]).toEqual([

51+

expect(respond.mock.calls.at(0)).toEqual([

5252

true,

5353

{

5454

generatedAt: now.toISOString(),

@@ -84,7 +84,9 @@ describe("diagnostics gateway methods", () => {

8484

},

8585

undefined,

8686

]);

87-

expect(Object.keys(respond.mock.calls[0]?.[1] as Record<string, unknown>).toSorted()).toEqual([

87+

expect(

88+

Object.keys(respond.mock.calls.at(0)?.[1] as Record<string, unknown>).toSorted(),

89+

).toEqual([

8890

"capacity",

8991

"count",

9092

"dropped",

Original file line numberDiff line numberDiff line change

@@ -1311,7 +1311,7 @@ describe("doctor.memory.remHarness", () => {

13111311

await invokeDoctorMemoryRemHarness(respond);

13121312
13131313

expectRecordFields(mockCallArg(previewRemHarness), { candidateLimit: 25 });

1314-

const payload = respond.mock.calls[0]?.[1] as {

1314+

const payload = respond.mock.calls.at(0)?.[1] as {

13151315

ok: boolean;

13161316

deep: { candidateLimit: number; truncated: boolean; candidates: unknown[] };

13171317

};

@@ -1327,7 +1327,7 @@ describe("doctor.memory.remHarness", () => {

13271327

await invokeDoctorMemoryRemHarness(respond, { limit: 500 });

13281328
13291329

expectRecordFields(mockCallArg(previewRemHarness), { candidateLimit: 100 });

1330-

const payload = respond.mock.calls[0]?.[1] as {

1330+

const payload = respond.mock.calls.at(0)?.[1] as {

13311331

deep: { candidateLimit: number };

13321332

};

13331333

expect(payload.deep.candidateLimit).toBe(100);

Original file line numberDiff line numberDiff line change

@@ -100,7 +100,7 @@ describe("node.pending handlers", () => {

100100

isWebchatConnect: () => false,

101101

});

102102
103-

const call = respond.mock.calls[0] as RespondCall | undefined;

103+

const call = respond.mock.calls.at(0) as RespondCall | undefined;

104104

expect(call?.[0]).toBe(false);

105105

expect(call?.[2]?.message).toContain("connected device identity");

106106

});

@@ -166,7 +166,7 @@ describe("node.pending handlers", () => {

166166

timeoutMs: 3_000,

167167

});

168168

expect(mocks.maybeSendNodeWakeNudge).not.toHaveBeenCalled();

169-

const call = respond.mock.calls[0] as

169+

const call = respond.mock.calls.at(0) as

170170

| [boolean, { nodeId?: string; revision?: number; wakeTriggered?: boolean }, unknown?]

171171

| undefined;

172172

expect(call?.[0]).toBe(true);

Original file line numberDiff line numberDiff line change

@@ -356,7 +356,7 @@ describe("createPluginApprovalHandlers", () => {

356356

},

357357

);

358358

await handlers["plugin.approval.request"](opts);

359-

const result = respond.mock.calls[0]?.[1] as Record<string, unknown> | undefined;

359+

const result = respond.mock.calls.at(0)?.[1] as Record<string, unknown> | undefined;

360360

expectPluginApprovalId(result?.id, "generated plugin approval id");

361361

});

362362

@@ -374,7 +374,7 @@ describe("createPluginApprovalHandlers", () => {

374374

await handlers["plugin.approval.request"](opts);

375375
376376

expect(createSpy).toHaveBeenCalledTimes(1);

377-

expectPluginApprovalId(createSpy.mock.calls[0]?.[2], "manager.create approval id");

377+

expectPluginApprovalId(createSpy.mock.calls.at(0)?.[2], "manager.create approval id");

378378

});

379379
380380

it("rejects plugin-provided id field", async () => {