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

推荐订阅源

MyScale Blog
MyScale Blog
博客园 - 司徒正美
A
About on SuperTechFans
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
爱范儿
爱范儿
I
InfoQ
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园_首页
Google DeepMind News
Google DeepMind News
T
Tailwind CSS Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
F
Fortinet All Blogs
S
SegmentFault 最新的问题
阮一峰的网络日志
阮一峰的网络日志
D
Docker
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
M
MIT News - Artificial intelligence
Jina AI
Jina AI
H
Help Net Security
量子位
IT之家
IT之家

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 agent tool assertions · openclaw/openclaw@d...
steipete · 2026-05-09 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -197,9 +197,7 @@ describe("TOOL_POLICY_CONFORMANCE", () => {

197197
198198

it("is JSON-serializable", () => {

199199

const serialized = JSON.stringify(TOOL_POLICY_CONFORMANCE);

200-

expect(JSON.parse(serialized)).toMatchObject({

201-

toolGroups: TOOL_GROUPS,

202-

});

200+

expect(JSON.parse(serialized)).toEqual({ toolGroups: TOOL_GROUPS });

203201

});

204202

});

205203
Original file line numberDiff line numberDiff line change

@@ -401,11 +401,12 @@ describe("resolveEffectiveToolInventory", () => {

401401

modelId: "grok-test",

402402

});

403403
404-

expect(createToolsMock).toHaveBeenCalledWith(

405-

expect.objectContaining({

406-

allowGatewaySubagentBinding: true,

407-

modelCompat: { supportsTools: true, nativeWebSearchTool: true },

408-

}),

409-

);

404+

expect(createToolsMock).toHaveBeenCalledTimes(1);

405+

const createToolsOptions = createToolsMock.mock.calls[0]?.[0];

406+

expect(createToolsOptions?.allowGatewaySubagentBinding).toBe(true);

407+

expect(createToolsOptions?.modelCompat).toEqual({

408+

supportsTools: true,

409+

nativeWebSearchTool: true,

410+

});

410411

});

411412

});

Original file line numberDiff line numberDiff line change

@@ -58,19 +58,15 @@ function expectAllowedApply(

5858
5959

describe("gateway config mutation guard coverage", () => {

6060

it("keeps a narrow allowlist of agent-tunable config paths", () => {

61-

expect(ALLOWED_GATEWAY_CONFIG_PATHS_FOR_TEST).toEqual(

62-

expect.arrayContaining([

63-

"agents.defaults.systemPromptOverride",

64-

"agents.defaults.model",

65-

"agents.defaults.subagents.thinking",

66-

"agents.list[].id",

67-

"agents.list[].model",

68-

"agents.list[].subagents.thinking",

69-

"channels.*.requireMention",

70-

"messages.visibleReplies",

71-

"messages.groupChat.visibleReplies",

72-

]),

73-

);

61+

expect(ALLOWED_GATEWAY_CONFIG_PATHS_FOR_TEST).toContain("agents.defaults.systemPromptOverride");

62+

expect(ALLOWED_GATEWAY_CONFIG_PATHS_FOR_TEST).toContain("agents.defaults.model");

63+

expect(ALLOWED_GATEWAY_CONFIG_PATHS_FOR_TEST).toContain("agents.defaults.subagents.thinking");

64+

expect(ALLOWED_GATEWAY_CONFIG_PATHS_FOR_TEST).toContain("agents.list[].id");

65+

expect(ALLOWED_GATEWAY_CONFIG_PATHS_FOR_TEST).toContain("agents.list[].model");

66+

expect(ALLOWED_GATEWAY_CONFIG_PATHS_FOR_TEST).toContain("agents.list[].subagents.thinking");

67+

expect(ALLOWED_GATEWAY_CONFIG_PATHS_FOR_TEST).toContain("channels.*.requireMention");

68+

expect(ALLOWED_GATEWAY_CONFIG_PATHS_FOR_TEST).toContain("messages.visibleReplies");

69+

expect(ALLOWED_GATEWAY_CONFIG_PATHS_FOR_TEST).toContain("messages.groupChat.visibleReplies");

7470

});

7571
7672

it("allows documented subagent thinking default edits via config.patch", () => {

Original file line numberDiff line numberDiff line change

@@ -182,7 +182,7 @@ describe("createSessionVisibilityGuard", () => {

182182

a2aPolicy: createAgentToAgentPolicy({} as unknown as OpenClawConfig),

183183

});

184184
185-

expect(guard.check("agent:codex:acp:child-1")).toMatchObject({ allowed: false });

185+

expect(guard.check("agent:codex:acp:child-1").allowed).toBe(false);

186186

expect(callGateway).not.toHaveBeenCalled();

187187
188188

sessionsResolutionTesting.setDepsForTest();

Original file line numberDiff line numberDiff line change

@@ -190,13 +190,12 @@ describe("sessions-list-tool", () => {

190190

const result = await tool.execute("call-3", {});

191191

const details = getSessionsListDetails(result);

192192
193-

expect(details.sessions?.[0]).toMatchObject({

194-

thinkingLevel: "high",

195-

fastMode: true,

196-

verboseLevel: "on",

197-

reasoningLevel: "deep",

198-

elevatedLevel: "on",

199-

responseUsage: "full",

200-

});

193+

const session = details.sessions?.[0];

194+

expect(session?.thinkingLevel).toBe("high");

195+

expect(session?.fastMode).toBe(true);

196+

expect(session?.verboseLevel).toBe("on");

197+

expect(session?.reasoningLevel).toBe("deep");

198+

expect(session?.elevatedLevel).toBe("on");

199+

expect(session?.responseUsage).toBe("full");

201200

});

202201

});

Original file line numberDiff line numberDiff line change

@@ -25,11 +25,8 @@ describe("web_search signal plumbing", () => {

2525
2626

await tool?.execute("call-search", { query: "openclaw" }, controller.signal);

2727
28-

expect(mocks.runWebSearch).toHaveBeenCalledWith(

29-

expect.objectContaining({

30-

args: { query: "openclaw" },

31-

signal: controller.signal,

32-

}),

33-

);

28+

expect(mocks.runWebSearch).toHaveBeenCalledTimes(1);

29+

expect(mocks.runWebSearch.mock.calls[0]?.[0]?.args).toEqual({ query: "openclaw" });

30+

expect(mocks.runWebSearch.mock.calls[0]?.[0]?.signal).toBe(controller.signal);

3431

});

3532

});

Original file line numberDiff line numberDiff line change

@@ -180,11 +180,9 @@ describe("web_fetch extraction fallbacks", () => {

180180
181181

expect(details.text).toMatch(/<<<EXTERNAL_UNTRUSTED_CONTENT id="[a-f0-9]{16}">>>/);

182182

expect(details.text).toContain("Ignore previous instructions");

183-

expect(details.externalContent).toMatchObject({

184-

untrusted: true,

185-

source: "web_fetch",

186-

wrapped: true,

187-

});

183+

expect(details.externalContent?.untrusted).toBe(true);

184+

expect(details.externalContent?.source).toBe("web_fetch");

185+

expect(details.externalContent?.wrapped).toBe(true);

188186

// contentType is protocol metadata, not user content - should NOT be wrapped

189187

expect(details.contentType).toBe("text/plain");

190188

expect(details.length).toBe(details.text?.length);

Original file line numberDiff line numberDiff line change

@@ -106,14 +106,13 @@ describe("video generation task status", () => {

106106

expect(buildVideoGenerationTaskStatusText(activeTask, { duplicateGuard: true })).toContain(

107107

"Do not call video_generate again for this request.",

108108

);

109-

expect(buildVideoGenerationTaskStatusDetails(activeTask)).toMatchObject({

110-

active: true,

111-

existingTask: true,

112-

status: "running",

113-

taskKind: VIDEO_GENERATION_TASK_KIND,

114-

provider: "openai",

115-

progressSummary: "Generating video",

116-

});

109+

const details = buildVideoGenerationTaskStatusDetails(activeTask);

110+

expect(details.active).toBe(true);

111+

expect(details.existingTask).toBe(true);

112+

expect(details.status).toBe("running");

113+

expect(details.taskKind).toBe(VIDEO_GENERATION_TASK_KIND);

114+

expect(details.provider).toBe("openai");

115+

expect(details.progressSummary).toBe("Generating video");

117116

});

118117
119118

it("builds prompt context for active session work", () => {