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

推荐订阅源

D
Docker
博客园 - 三生石上(FineUI控件)
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园_首页
Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
腾讯CDC
酷 壳 – CoolShell
酷 壳 – CoolShell
M
MIT News - Artificial intelligence
Stack Overflow Blog
Stack Overflow Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Jina AI
Jina AI
爱范儿
爱范儿
博客园 - 【当耐特】
雷峰网
雷峰网
S
SegmentFault 最新的问题
美团技术团队
Blog — PlanetScale
Blog — PlanetScale
The GitHub Blog
The GitHub Blog
有赞技术团队
有赞技术团队
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
Google DeepMind News
Google DeepMind News
J
Java Code Geeks

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: tighten auto reply assertions · openclaw/openclaw@1...
steipete · 2026-05-11 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -209,7 +209,7 @@ describe("tool-loop-detection", () => {

209209

for (const hash of hashes) {

210210

expect(hash.startsWith("tool:")).toBe(true);

211211

expect(hash.length).toBe("tool:".length + 64);

212-

expect([...hash.slice("tool:".length)].every((char) => /[a-f0-9]/.test(char))).toBe(true);

212+

expect(/^[a-f0-9]+$/.test(hash.slice("tool:".length))).toBe(true);

213213

}

214214

});

215215
Original file line numberDiff line numberDiff line change

@@ -209,7 +209,10 @@ describe("stageSandboxMedia", () => {

209209
210210

await expect(

211211

fs.stat(join(sandboxDir, "media", "inbound", basename(sensitiveFile))),

212-

).rejects.toMatchObject({ code: "ENOENT" });

212+

).rejects.toSatisfy((error) => {

213+

expect((error as NodeJS.ErrnoException).code).toBe("ENOENT");

214+

return true;

215+

});

213216

expect(ctx.MediaPath).toBe(sensitiveFile);

214217

}

215218

@@ -288,7 +291,10 @@ describe("stageSandboxMedia", () => {

288291
289292

await expect(

290293

fs.stat(join(sandboxDir, "media", "inbound", basename(mediaPath))),

291-

).rejects.toMatchObject({ code: "ENOENT" });

294+

).rejects.toSatisfy((error) => {

295+

expect((error as NodeJS.ErrnoException).code).toBe("ENOENT");

296+

return true;

297+

});

292298

expect(ctx.MediaPath).toBe(mediaPath);

293299

expect(sessionCtx.MediaPath).toBe(mediaPath);

294300

});

Original file line numberDiff line numberDiff line change

@@ -233,9 +233,16 @@ async function expectNextRunUsesTargetSession(

233233

);

234234
235235

expect(params.runEmbeddedPiAgentMock).toHaveBeenCalledOnce();

236-

expect(params.runEmbeddedPiAgentMock.mock.calls[0]?.[0]).toEqual(

237-

expect.objectContaining(expected),

238-

);

236+

const runParams = params.runEmbeddedPiAgentMock.mock.calls[0]?.[0] as

237+

| Record<string, unknown>

238+

| undefined;

239+

expect(runParams).toBeDefined();

240+

if (!runParams) {

241+

throw new Error("expected embedded PI agent call params");

242+

}

243+

for (const [key, value] of Object.entries(expected)) {

244+

expect(runParams[key]).toEqual(value);

245+

}

239246

}

240247
241248

async function writeStoredModelOverride(cfg: ReturnType<typeof makeCfg>): Promise<void> {

Original file line numberDiff line numberDiff line change

@@ -674,9 +674,11 @@ describe("abort detection", () => {

674674

// Should skip killing the ended depth-1 run itself, but still kill depth-2.

675675

expect(result.stoppedSubagents).toBe(1);

676676

expectSessionLaneCleared(depth2Key);

677-

expect(subagentRegistryMocks.markSubagentRunTerminated).toHaveBeenCalledWith(

678-

expect.objectContaining({ runId: "run-2", childSessionKey: depth2Key }),

679-

);

677+

expect(subagentRegistryMocks.markSubagentRunTerminated).toHaveBeenCalledTimes(1);

678+

const [[terminatedRun]] = subagentRegistryMocks.markSubagentRunTerminated.mock

679+

.calls as unknown as Array<[{ runId?: string; childSessionKey?: string }]>;

680+

expect(terminatedRun.runId).toBe("run-2");

681+

expect(terminatedRun.childSessionKey).toBe(depth2Key);

680682

});

681683
682684

it("cascade stop still traverses an ended current parent when a stale older active row exists", async () => {

@@ -772,9 +774,11 @@ describe("abort detection", () => {

772774
773775

expect(result.stoppedSubagents).toBe(1);

774776

expectSessionLaneCleared(depth2Key);

775-

expect(subagentRegistryMocks.markSubagentRunTerminated).toHaveBeenCalledWith(

776-

expect.objectContaining({ runId: "run-active-child", childSessionKey: depth2Key }),

777-

);

777+

expect(subagentRegistryMocks.markSubagentRunTerminated).toHaveBeenCalledTimes(1);

778+

const [[terminatedRun]] = subagentRegistryMocks.markSubagentRunTerminated.mock

779+

.calls as unknown as Array<[{ runId?: string; childSessionKey?: string }]>;

780+

expect(terminatedRun.runId).toBe("run-active-child");

781+

expect(terminatedRun.childSessionKey).toBe(depth2Key);

778782

});

779783
780784

it("stopSubagentsForRequester does not traverse a child that moved to a newer parent", () => {

Original file line numberDiff line numberDiff line change

@@ -13,7 +13,10 @@ const refreshQueuedFollowupSessionMock = vi.fn();

1313

const errorMock = vi.fn();

1414
1515

async function expectPathMissing(targetPath: string): Promise<void> {

16-

await expect(fs.access(targetPath)).rejects.toMatchObject({ code: "ENOENT" });

16+

await expect(fs.access(targetPath)).rejects.toSatisfy((error) => {

17+

expect((error as NodeJS.ErrnoException).code).toBe("ENOENT");

18+

return true;

19+

});

1720

}

1821
1922

describe("resetReplyRunSession", () => {

Original file line numberDiff line numberDiff line change

@@ -205,8 +205,12 @@ describe("runReplyAgent media path normalization", () => {

205205

}),

206206

);

207207
208-

expect(result?.mediaUrl).toBe("/tmp/outbound-media/generated.png");

209-

expect(result?.mediaUrls).toEqual(["/tmp/outbound-media/generated.png"]);

208+

expect(Array.isArray(result)).toBe(false);

209+

if (!result || Array.isArray(result)) {

210+

throw new Error("expected single reply payload");

211+

}

212+

expect(result.mediaUrl).toBe("/tmp/outbound-media/generated.png");

213+

expect(result.mediaUrls).toEqual(["/tmp/outbound-media/generated.png"]);

210214

const outboundAttachmentCall = resolveOutboundAttachmentFromUrlMock.mock.calls[0];

211215

expect(outboundAttachmentCall?.[0]).toBe(path.join("/tmp/workspace", "out", "generated.png"));

212216

expect(outboundAttachmentCall?.[1]).toBe(5 * 1024 * 1024);

Original file line numberDiff line numberDiff line change

@@ -69,11 +69,11 @@ describe("handleBashCommand alias routing", () => {

6969

const result = await handleBashCommand(params, true);

7070
7171

expect(result?.shouldContinue).toBe(false);

72-

expect(handleBashChatCommandMock).toHaveBeenCalledWith(

73-

expect.objectContaining({

74-

agentId: "target",

75-

sessionKey: "agent:target:whatsapp:direct:test-user",

76-

}),

77-

);

72+

expect(handleBashChatCommandMock).toHaveBeenCalledTimes(1);

73+

const [[bashParams]] = handleBashChatCommandMock.mock.calls as unknown as Array<

74+

[{ agentId?: string; sessionKey?: string }]

75+

>;

76+

expect(bashParams.agentId).toBe("target");

77+

expect(bashParams.sessionKey).toBe("agent:target:whatsapp:direct:test-user");

7878

});

7979

});

Original file line numberDiff line numberDiff line change

@@ -85,11 +85,10 @@ describe("handleDockCommand", () => {

8585

shouldContinue: false,

8686

reply: { text: "Docked replies to discord." },

8787

});

88-

expect(params.sessionStore?.[params.sessionKey]).toMatchObject({

89-

lastChannel: "discord",

90-

lastTo: "UserCase123",

91-

lastAccountId: "default",

92-

});

88+

const updatedEntry = params.sessionStore?.[params.sessionKey];

89+

expect(updatedEntry?.lastChannel).toBe("discord");

90+

expect(updatedEntry?.lastTo).toBe("UserCase123");

91+

expect(updatedEntry?.lastAccountId).toBe("default");

9392

});

9493
9594

it("accepts generated underscore aliases such as Telegram native /dock_discord", async () => {

Original file line numberDiff line numberDiff line change

@@ -204,8 +204,8 @@ describe("buildExportSessionReply", () => {

204204

});

205205
206206

expect(reply.text).toContain("✅ Session exported!");

207-

const systemPromptBundleParams =

208-

hoisted.resolveCommandsSystemPromptBundleMock.mock.calls[0]?.[0];

207+

const [[systemPromptBundleParams]] = hoisted.resolveCommandsSystemPromptBundleMock.mock

208+

.calls as unknown as Array<[{ sessionEntry?: { sessionId?: string; updatedAt?: number } }]>;

209209

expect(systemPromptBundleParams?.sessionEntry?.sessionId).toBe("session-from-store");

210210

expect(systemPromptBundleParams?.sessionEntry?.updatedAt).toBe(2);

211211

});

Original file line numberDiff line numberDiff line change

@@ -390,9 +390,10 @@ describe("handleModelsCommand", () => {

390390

const result = await handleModelsCommand(params, true);

391391
392392

expect(result?.reply?.text).toContain("Models (anthropic · 🔑 target-auth) — showing 1-2 of 2");

393-

const authLabelParams = modelAuthLabelMocks.resolveModelAuthLabel.mock.calls[0]?.[0];

394-

expect(authLabelParams?.provider).toBe("anthropic");

395-

expect(authLabelParams?.workspaceDir).toBe("/tmp");

393+

const [[authLabelParams]] = modelAuthLabelMocks.resolveModelAuthLabel.mock

394+

.calls as unknown as Array<[{ provider?: string; workspaceDir?: string }]>;

395+

expect(authLabelParams.provider).toBe("anthropic");

396+

expect(authLabelParams.workspaceDir).toBe("/tmp");

396397

});

397398
398399

it("uses spawned workspace for direct /models provider visibility", async () => {