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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
G
Google Developers Blog
小众软件
小众软件
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 【当耐特】
爱范儿
爱范儿
博客园 - 聂微东
美团技术团队
大猫的无限游戏
大猫的无限游戏
The Cloudflare Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
有赞技术团队
有赞技术团队
云风的 BLOG
云风的 BLOG
罗磊的独立博客
V
Visual Studio Blog
WordPress大学
WordPress大学
Stack Overflow Blog
Stack Overflow Blog
雷峰网
雷峰网
人人都是产品经理
人人都是产品经理
Blog — PlanetScale
Blog — PlanetScale
V
V2EX
The GitHub Blog
The GitHub Blog
Apple Machine Learning Research
Apple Machine Learning Research
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

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 coding tools assertions · openclaw/openclaw...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -93,6 +93,7 @@ function applyRuntimeToolsAllow<T extends { name: string }>(tools: T[], toolsAll

9393

}

94949595

type OpenClawCodingTool = ReturnType<typeof createOpenClawCodingTools>[number];

96+

type OpenClawToolsOptions = NonNullable<Parameters<typeof createOpenClawTools>[0]>;

96979798

function toolNameList(tools: readonly { name: string }[]): string[] {

9899

return tools.map((tool) => tool.name);

@@ -113,6 +114,28 @@ function requireToolExecute(tool: OpenClawCodingTool): NonNullable<OpenClawCodin

113114

return tool.execute;

114115

}

115116117+

function latestCreateOpenClawToolsOptions(): OpenClawToolsOptions {

118+

const calls = vi.mocked(createOpenClawTools).mock.calls;

119+

const lastCall = calls.at(-1);

120+

const options = lastCall?.[0];

121+

if (!options) {

122+

throw new Error("expected createOpenClawTools call");

123+

}

124+

return options;

125+

}

126+127+

function expectListIncludes(

128+

list: readonly string[] | undefined,

129+

expected: readonly string[],

130+

): void {

131+

if (!list) {

132+

throw new Error("expected string list");

133+

}

134+

for (const value of expected) {

135+

expect(list.includes(value)).toBe(true);

136+

}

137+

}

138+116139

describe("createOpenClawCodingTools", () => {

117140

const testConfig: OpenClawConfig = {};

118141

@@ -129,9 +152,7 @@ describe("createOpenClawCodingTools", () => {

129152

const values = new Set<string>();

130153

collectActionValues(action, values);

131154132-

expect([...values]).toEqual(

133-

expect.arrayContaining(["restart", "config.get", "config.patch", "config.apply"]),

134-

);

155+

expectListIncludes([...values], ["restart", "config.get", "config.patch", "config.apply"]);

135156

});

136157137158

it("exposes only an explicitly authorized owner-only tool to non-owner sessions", () => {

@@ -193,11 +214,9 @@ describe("createOpenClawCodingTools", () => {

193214

runtimeToolAllowlist: ["memory_search", "memory_get"],

194215

});

195216196-

expect(createOpenClawToolsMock).toHaveBeenCalledWith(

197-

expect.objectContaining({

198-

pluginToolAllowlist: expect.arrayContaining(["memory_search", "memory_get"]),

199-

}),

200-

);

217+

expect(createOpenClawToolsMock).toHaveBeenCalledTimes(1);

218+

const options = latestCreateOpenClawToolsOptions();

219+

expectListIncludes(options.pluginToolAllowlist, ["memory_search", "memory_get"]);

201220

});

202221203222

it("passes source reply delivery mode to OpenClaw tool construction", () => {

@@ -210,11 +229,8 @@ describe("createOpenClawCodingTools", () => {

210229

sourceReplyDeliveryMode: "message_tool_only",

211230

});

212231213-

expect(createOpenClawToolsMock).toHaveBeenCalledWith(

214-

expect.objectContaining({

215-

sourceReplyDeliveryMode: "message_tool_only",

216-

}),

217-

);

232+

expect(createOpenClawToolsMock).toHaveBeenCalledTimes(1);

233+

expect(latestCreateOpenClawToolsOptions().sourceReplyDeliveryMode).toBe("message_tool_only");

218234

});

219235220236

it("skips unrelated tool families when construction is planned from a narrow allowlist", () => {

@@ -258,11 +274,8 @@ describe("createOpenClawCodingTools", () => {

258274

},

259275

});

260276261-

expect(createOpenClawToolsMock).toHaveBeenCalledWith(

262-

expect.objectContaining({

263-

disablePluginTools: true,

264-

}),

265-

);

277+

expect(createOpenClawToolsMock).toHaveBeenCalledTimes(1);

278+

expect(latestCreateOpenClawToolsOptions().disablePluginTools).toBe(true);

266279

});

267280268281

it("keeps plugin-only construction off the OpenClaw core factory", () => {

@@ -293,11 +306,11 @@ describe("createOpenClawCodingTools", () => {

293306

config: { tools: { alsoAllow: ["lobster"] } },

294307

});

295308296-

expect(createOpenClawToolsMock).toHaveBeenCalledWith(

297-

expect.objectContaining({

298-

pluginToolAllowlist: ["lobster", DEFAULT_PLUGIN_TOOLS_ALLOWLIST_ENTRY],

299-

}),

300-

);

309+

expect(createOpenClawToolsMock).toHaveBeenCalledTimes(1);

310+

expect(latestCreateOpenClawToolsOptions().pluginToolAllowlist).toStrictEqual([

311+

"lobster",

312+

DEFAULT_PLUGIN_TOOLS_ALLOWLIST_ENTRY,

313+

]);

301314

});

302315303316

it("passes explicit denylist entries to OpenClaw tool factory planning", () => {

@@ -308,11 +321,8 @@ describe("createOpenClawCodingTools", () => {

308321

config: { tools: { deny: ["pdf"] } },

309322

});

310323311-

expect(createOpenClawToolsMock).toHaveBeenCalledWith(

312-

expect.objectContaining({

313-

pluginToolDenylist: expect.arrayContaining(["pdf"]),

314-

}),

315-

);

324+

expect(createOpenClawToolsMock).toHaveBeenCalledTimes(1);

325+

expectListIncludes(latestCreateOpenClawToolsOptions().pluginToolDenylist, ["pdf"]);

316326

});

317327318328

it("records core tool-prep stages for hot-path diagnostics", () => {

@@ -324,23 +334,21 @@ describe("createOpenClawCodingTools", () => {

324334

senderIsOwner: true,

325335

});

326336327-

expect(stages).toEqual(

328-

expect.arrayContaining([

329-

"tool-policy",

330-

"workspace-policy",

331-

"base-coding-tools",

332-

"shell-tools",

333-

"openclaw-tools:test-helper",

334-

"openclaw-tools",

335-

"message-provider-policy",

336-

"model-provider-policy",

337-

"authorization-policy",

338-

"schema-normalization",

339-

"tool-hooks",

340-

"abort-wrappers",

341-

"deferred-followup-descriptions",

342-

]),

343-

);

337+

expectListIncludes(stages, [

338+

"tool-policy",

339+

"workspace-policy",

340+

"base-coding-tools",

341+

"shell-tools",

342+

"openclaw-tools:test-helper",

343+

"openclaw-tools",

344+

"message-provider-policy",

345+

"model-provider-policy",

346+

"authorization-policy",

347+

"schema-normalization",

348+

"tool-hooks",

349+

"abort-wrappers",

350+

"deferred-followup-descriptions",

351+

]);

344352

expect(stages.indexOf("tool-policy")).toBeLessThan(stages.indexOf("workspace-policy"));

345353

expect(stages.indexOf("workspace-policy")).toBeLessThan(stages.indexOf("base-coding-tools"));

346354

expect(stages.indexOf("openclaw-tools:test-helper")).toBeLessThan(