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

推荐订阅源

月光博客
月光博客
D
Docker
腾讯CDC
J
Java Code Geeks
大猫的无限游戏
大猫的无限游戏
The Cloudflare Blog
Martin Fowler
Martin Fowler
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
博客园 - 三生石上(FineUI控件)
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
IT之家
IT之家
WordPress大学
WordPress大学
M
MIT News - Artificial intelligence
爱范儿
爱范儿
Microsoft Azure Blog
Microsoft Azure Blog
Vercel News
Vercel News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
博客园 - 【当耐特】

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 extension runtime mock calls · openclaw/openc...
monitor-inbox.blocks-messages-from-unauthorized-senders-not-allo · 2026-05-12 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -74,7 +74,7 @@ describe("loginOpenAICodexDeviceCode", () => {

7474

await vi.advanceTimersByTimeAsync(1);

7575

const credentials = await credentialsPromise;

7676
77-

const userCodeRequest = fetchMock.mock.calls[0];

77+

const userCodeRequest = fetchMock.mock.calls.at(0);

7878

expect(userCodeRequest?.[0]).toBe("https://auth.openai.com/api/accounts/deviceauth/usercode");

7979

expect(userCodeRequest?.[1]?.method).toBe("POST");

8080

expect(userCodeRequest?.[1]?.headers).toEqual({

@@ -84,7 +84,7 @@ describe("loginOpenAICodexDeviceCode", () => {

8484

"User-Agent": "openclaw/2026.3.22",

8585

});

8686
87-

const deviceTokenRequest = fetchMock.mock.calls[1];

87+

const deviceTokenRequest = fetchMock.mock.calls.at(1);

8888

expect(deviceTokenRequest?.[0]).toBe("https://auth.openai.com/api/accounts/deviceauth/token");

8989

expect(deviceTokenRequest?.[1]?.method).toBe("POST");

9090

expect(deviceTokenRequest?.[1]?.headers).toEqual({

@@ -94,7 +94,7 @@ describe("loginOpenAICodexDeviceCode", () => {

9494

"User-Agent": "openclaw/2026.3.22",

9595

});

9696
97-

const oauthTokenRequest = fetchMock.mock.calls[3];

97+

const oauthTokenRequest = fetchMock.mock.calls.at(3);

9898

expect(oauthTokenRequest?.[0]).toBe("https://auth.openai.com/oauth/token");

9999

expect(oauthTokenRequest?.[1]?.method).toBe("POST");

100100

expect(oauthTokenRequest?.[1]?.headers).toEqual({

Original file line numberDiff line numberDiff line change

@@ -457,16 +457,16 @@ describe("buildOpenAIRealtimeVoiceProvider", () => {

457457

instructions: "Be concise.",

458458

});

459459
460-

expect(execFileSyncMock.mock.calls[0]?.[0]).toBe("/usr/bin/security");

461-

expect(execFileSyncMock.mock.calls[0]?.[1]).toEqual([

460+

expect(execFileSyncMock.mock.calls.at(0)?.[0]).toBe("/usr/bin/security");

461+

expect(execFileSyncMock.mock.calls.at(0)?.[1]).toEqual([

462462

"find-generic-password",

463463

"-s",

464464

"openclaw",

465465

"-a",

466466

"OPENAI_REALTIME_BROWSER_TEST",

467467

"-w",

468468

]);

469-

expectRecordFields(execFileSyncMock.mock.calls[0]?.[2], "security command options", {

469+

expectRecordFields(execFileSyncMock.mock.calls.at(0)?.[2], "security command options", {

470470

encoding: "utf8",

471471

timeout: 5000,

472472

});

Original file line numberDiff line numberDiff line change

@@ -78,11 +78,11 @@ describe("handleQaInbound", () => {

7878

);

7979
8080

expect(runtime.channel.turn.runAssembled).toHaveBeenCalledTimes(1);

81-

expect(vi.mocked(runtime.channel.turn.runAssembled).mock.calls[0]?.[0].replyPipeline).toEqual(

82-

{},

83-

);

8481

expect(

85-

vi.mocked(runtime.channel.turn.runAssembled).mock.calls[0]?.[0].ctxPayload.WasMentioned,

82+

vi.mocked(runtime.channel.turn.runAssembled).mock.calls.at(0)?.[0].replyPipeline,

83+

).toEqual({});

84+

expect(

85+

vi.mocked(runtime.channel.turn.runAssembled).mock.calls.at(0)?.[0].ctxPayload.WasMentioned,

8686

).toBe(true);

8787

});

8888

@@ -114,7 +114,9 @@ describe("handleQaInbound", () => {

114114

);

115115
116116

expect(runtime.channel.turn.runAssembled).toHaveBeenCalledTimes(1);

117-

const ctxPayload = vi.mocked(runtime.channel.turn.runAssembled).mock.calls[0]?.[0].ctxPayload;

117+

const ctxPayload = vi

118+

.mocked(runtime.channel.turn.runAssembled)

119+

.mock.calls.at(0)?.[0].ctxPayload;

118120

expect(ctxPayload?.CommandAuthorized).toBe(true);

119121

expect(ctxPayload?.SenderId).toBe("alice");

120122

});

Original file line numberDiff line numberDiff line change

@@ -81,7 +81,7 @@ describe("startQaLiveLaneGateway", () => {

8181

});

8282
8383

expect(startQaProviderServer).toHaveBeenCalledWith("mock-openai");

84-

const gatewayOptions = startQaGatewayChild.mock.calls[0]?.[0] as

84+

const gatewayOptions = startQaGatewayChild.mock.calls.at(0)?.[0] as

8585

| { providerBaseUrl?: string; providerMode?: string; transportBaseUrl?: string }

8686

| undefined;

8787

expect(gatewayOptions?.transportBaseUrl).toBe("http://127.0.0.1:43123");

@@ -104,7 +104,7 @@ describe("startQaLiveLaneGateway", () => {

104104

controlUiEnabled: false,

105105

});

106106
107-

const [{ mutateConfig }] = startQaGatewayChild.mock.calls[0] ?? [];

107+

const [{ mutateConfig }] = startQaGatewayChild.mock.calls.at(0) ?? [];

108108

if (!mutateConfig) {

109109

throw new Error("expected gateway config mutator");

110110

}

@@ -173,7 +173,7 @@ describe("startQaLiveLaneGateway", () => {

173173

});

174174
175175

expect(startQaProviderServer).toHaveBeenCalledWith("live-frontier");

176-

const gatewayOptions = startQaGatewayChild.mock.calls[0]?.[0] as

176+

const gatewayOptions = startQaGatewayChild.mock.calls.at(0)?.[0] as

177177

| { providerBaseUrl?: string; providerMode?: string; transportBaseUrl?: string }

178178

| undefined;

179179

expect(gatewayOptions?.transportBaseUrl).toBe("http://127.0.0.1:43123");

Original file line numberDiff line numberDiff line change

@@ -94,7 +94,7 @@ describe("qa suite runtime agent process helpers", () => {

9494

child.emit("exit", 0);

9595
9696

await expect(pending).resolves.toBe("ok");

97-

const spawnCall = spawnMock.mock.calls[0];

97+

const spawnCall = spawnMock.mock.calls.at(0);

9898

expect(spawnCall?.[0]).toBe("/usr/bin/node");

9999

expect(spawnCall?.[1]).toEqual([path.join("/repo", "dist", "index.js"), "qa", "suite"]);

100100

expect((spawnCall?.[2] as { cwd?: string; env?: unknown } | undefined)?.cwd).toBe(

@@ -132,7 +132,7 @@ describe("qa suite runtime agent process helpers", () => {

132132

child.emit("exit", 0);

133133
134134

await expect(pending).resolves.toBe("ok");

135-

const spawnCall = spawnMock.mock.calls[0];

135+

const spawnCall = spawnMock.mock.calls.at(0);

136136

expect(spawnCall?.[0]).toBe("/usr/bin/node");

137137

expect(spawnCall?.[1]).toEqual([

138138

path.join("/repo", "dist", "index.js"),

@@ -253,7 +253,7 @@ describe("qa suite runtime agent process helpers", () => {

253253

message: "hello",

254254

}),

255255

).resolves.toEqual({ runId: "run-1" });

256-

const gatewayArgs = gatewayCall.mock.calls[0] as unknown as

256+

const gatewayArgs = gatewayCall.mock.calls.at(0) as unknown as

257257

| [string, unknown, unknown]

258258

| undefined;

259259

expect(gatewayArgs?.[0]).toBe("agent");

Original file line numberDiff line numberDiff line change

@@ -377,7 +377,10 @@ describe("containerSendMessage", () => {

377377

textStyles: [{ start: 0, length: 4, style: "BOLD" }],

378378

});

379379
380-

const callArgs = mockFetch.mock.calls[0];

380+

const callArgs = mockFetch.mock.calls.at(0);

381+

if (callArgs === undefined) {

382+

throw new Error("expected container fetch call");

383+

}

381384

const body = JSON.parse(callArgs[1].body);

382385

expect(body.message).toBe("**Bold** \\* not italic");

383386

});

@@ -397,7 +400,10 @@ describe("containerSendMessage", () => {

397400

textStyles: [{ start: 0, length: 4, style: "BOLD" }],

398401

});

399402
400-

const callArgs = mockFetch.mock.calls[0];

403+

const callArgs = mockFetch.mock.calls.at(0);

404+

if (callArgs === undefined) {

405+

throw new Error("expected container fetch call");

406+

}

401407

const body = JSON.parse(callArgs[1].body);

402408

expect(body.message).toBe("**Bold** C:\\Temp\\file and /foo\\bar/");

403409

});

@@ -427,7 +433,10 @@ describe("containerSendMessage", () => {

427433

attachments: [tmpFile],

428434

});

429435
430-

const callArgs = mockFetch.mock.calls[0];

436+

const callArgs = mockFetch.mock.calls.at(0);

437+

if (callArgs === undefined) {

438+

throw new Error("expected container fetch call");

439+

}

431440

const body = JSON.parse(callArgs[1].body);

432441

expect(body.attachments).toBeUndefined();

433442

if (!Array.isArray(body.base64_attachments)) {

Original file line numberDiff line numberDiff line change

@@ -234,15 +234,15 @@ describe("telegramPlugin outbound attachments", () => {

234234

to: "12345",

235235

text: "hi **boss**",

236236

});

237-

expect(sendMessageTelegram.mock.calls[0]?.[2]).not.toHaveProperty("textMode");

237+

expect(sendMessageTelegram.mock.calls.at(0)?.[2]).not.toHaveProperty("textMode");

238238
239239

await sendText({

240240

cfg: createTelegramConfig(),

241241

to: "12345",

242242

text: "<b>hi boss</b>",

243243

formatting: { parseMode: "HTML" },

244244

});

245-

expect(sendMessageTelegram.mock.calls[1]?.[2]?.textMode).toBe("html");

245+

expect(sendMessageTelegram.mock.calls.at(1)?.[2]?.textMode).toBe("html");

246246

});

247247
248248

it("preserves explicit HTML parse mode for payload media captions", async () => {

@@ -264,6 +264,6 @@ describe("telegramPlugin outbound attachments", () => {

264264

formatting: { parseMode: "HTML" },

265265

});

266266
267-

expect(sendMessageTelegram.mock.calls[0]?.[2]?.textMode).toBe("html");

267+

expect(sendMessageTelegram.mock.calls.at(0)?.[2]?.textMode).toBe("html");

268268

});

269269

});

Original file line numberDiff line numberDiff line change

@@ -41,12 +41,12 @@ describe("vydra video-generation provider", () => {

4141

cfg: {},

4242

});

4343
44-

const createCall = fetchMock.mock.calls[0];

44+

const createCall = fetchMock.mock.calls.at(0);

4545

expect(createCall?.[0]).toBe("https://www.vydra.ai/api/v1/models/veo3");

4646

const createInit = createCall?.[1] as { method?: string; body?: unknown } | undefined;

4747

expect(createInit?.method).toBe("POST");

4848

expect(createInit?.body).toBe(JSON.stringify({ prompt: "tiny city at sunrise" }));

49-

const pollCall = fetchMock.mock.calls[1];

49+

const pollCall = fetchMock.mock.calls.at(1);

5050

expect(pollCall?.[0]).toBe("https://www.vydra.ai/api/v1/jobs/job-123");

5151

const pollInit = pollCall?.[1] as { method?: string } | undefined;

5252

expect(pollInit?.method).toBe("GET");

@@ -101,7 +101,7 @@ describe("vydra video-generation provider", () => {

101101

inputImages: [{ url: "https://example.com/reference.png" }],

102102

});

103103
104-

const createCall = fetchMock.mock.calls[0];

104+

const createCall = fetchMock.mock.calls.at(0);

105105

expect(createCall?.[0]).toBe("https://www.vydra.ai/api/v1/models/kling");

106106

const createInit = createCall?.[1] as { method?: string; body?: unknown } | undefined;

107107

expect(createInit?.method).toBe("POST");

Original file line numberDiff line numberDiff line change

@@ -136,11 +136,11 @@ describe("loginWeb coverage", () => {

136136

await loginWeb(false, waitForWaConnectionMock as never, runtime);

137137
138138

expect(createWaSocketMock).toHaveBeenCalledTimes(2);

139-

expect(createWaSocketMock.mock.calls[0]?.[0]).toBe(false);

140-

const initialOpts = createWaSocketMock.mock.calls[0]?.[2] as

139+

expect(createWaSocketMock.mock.calls.at(0)?.[0]).toBe(false);

140+

const initialOpts = createWaSocketMock.mock.calls.at(0)?.[2] as

141141

| { onQr?: (qr: string) => void }

142142

| undefined;

143-

const restartOpts = createWaSocketMock.mock.calls[1]?.[2] as

143+

const restartOpts = createWaSocketMock.mock.calls.at(1)?.[2] as

144144

| { onQr?: (qr: string) => void }

145145

| undefined;

146146

expect(initialOpts?.onQr).toBe(restartOpts?.onQr);

Original file line numberDiff line numberDiff line change

@@ -252,7 +252,7 @@ describe("web monitor inbox", () => {

252252

await settleInboundWork();

253253
254254

expect(onMessage).toHaveBeenCalledTimes(1);

255-

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

255+

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

256256

expect(payload.chatType).toBe("group");

257257

expect(payload.senderE164).toBe("+999");

258258

@@ -340,7 +340,7 @@ describe("web monitor inbox", () => {

340340
341341

// Should call onMessage because sender is in groupAllowFrom

342342

expect(onMessage).toHaveBeenCalledTimes(1);

343-

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

343+

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

344344

expect(payload.chatType).toBe("group");

345345

expect(payload.senderE164).toBe("+15551234567");

346346

@@ -374,7 +374,7 @@ describe("web monitor inbox", () => {

374374
375375

// Should call onMessage because wildcard allows all senders

376376

expect(onMessage).toHaveBeenCalledTimes(1);

377-

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

377+

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

378378

expect(payload.chatType).toBe("group");

379379
380380

await listener.close();