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

推荐订阅源

Google DeepMind News
Google DeepMind News
F
Fortinet All Blogs
量子位
G
Google Developers Blog
J
Java Code Geeks
N
Netflix TechBlog - Medium
博客园 - 聂微东
宝玉的分享
宝玉的分享
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
月光博客
月光博客
The Cloudflare Blog
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
雷峰网
雷峰网
M
MIT News - Artificial intelligence
T
Tailwind CSS Blog
V
Visual Studio Blog
阮一峰的网络日志
阮一峰的网络日志
博客园 - 三生石上(FineUI控件)
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
Martin Fowler
Martin Fowler
有赞技术团队
有赞技术团队
T
The Blog of Author Tim Ferriss

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
fix(agents): correlate pathless read diagnostics (#86977)...
ferminquant · 2026-05-27 · via Recent Commits to openclaw:main

@@ -24,14 +24,21 @@ function createTestContext(): {

2424

onBlockReplyFlush: ReturnType<typeof vi.fn>;

2525

onAgentEvent: ReturnType<typeof vi.fn>;

2626

onExecutionPhase: ReturnType<typeof vi.fn>;

27+

trace: ReturnType<typeof vi.fn>;

28+

isEnabled: ReturnType<typeof vi.fn>;

2729

} {

2830

const onBlockReplyFlush = vi.fn();

2931

const onAgentEvent = vi.fn();

3032

const onExecutionPhase = vi.fn();

3133

const warn = vi.fn();

34+

const trace = vi.fn();

35+

const isEnabled = vi.fn(() => false);

3236

const ctx: ToolHandlerContext = {

3337

params: {

3438

runId: "run-test",

39+

sessionKey: "agent:unit-session",

40+

sessionId: "session-test-id",

41+

agentId: "agent-test-id",

3542

onBlockReplyFlush,

3643

onAgentEvent,

3744

onExecutionPhase,

@@ -41,6 +48,8 @@ function createTestContext(): {

4148

hookRunner: undefined,

4249

log: {

4350

debug: vi.fn(),

51+

trace,

52+

isEnabled,

4453

info: vi.fn(),

4554

warn,

4655

},

@@ -76,7 +85,7 @@ function createTestContext(): {

7685

trimMessagingToolSent: vi.fn(),

7786

};

788779-

return { ctx, warn, onBlockReplyFlush, onAgentEvent, onExecutionPhase };

88+

return { ctx, warn, onBlockReplyFlush, onAgentEvent, onExecutionPhase, trace, isEnabled };

8089

}

81908291

type CapturedAgentEvent = { stream?: string; data?: Record<string, unknown> };

@@ -153,8 +162,57 @@ function requireSingleMessagingTarget(ctx: ToolHandlerContext) {

153162

}

154163155164

describe("handleToolExecutionStart read path checks", () => {

165+

it("emits trace-only tool start diagnostics when trace logging is enabled", async () => {

166+

const { ctx, trace, isEnabled, warn } = createTestContext();

167+

isEnabled.mockImplementation((level: string) => level === "trace");

168+169+

const evt: ToolExecutionStartEvent = {

170+

type: "tool_execution_start",

171+

toolName: "write",

172+

toolCallId: "tool-trace",

173+

args: { path: "notes.txt" },

174+

};

175+176+

await handleToolExecutionStart(ctx, evt);

177+178+

expect(warn).not.toHaveBeenCalled();

179+

expect(trace).toHaveBeenCalledTimes(1);

180+

expect(trace.mock.calls[0]?.[0]).toBe("embedded run tool start");

181+

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

182+

event: "embedded_tool_execution_start",

183+

tags: ["tool_start", "embedded", "trace"],

184+

runId: "run-test",

185+

toolName: "write",

186+

toolCallId: "tool-trace",

187+

argsType: "object",

188+

argsKeys: ["path"],

189+

sessionKey: "agent:unit-session",

190+

sessionId: "session-test-id",

191+

agentId: "agent-test-id",

192+

requiredParamsMissing: ["content"],

193+

});

194+

});

195+196+

it("does not build trace tool start diagnostics unless trace logging is enabled", async () => {

197+

const { ctx, trace, isEnabled } = createTestContext();

198+199+

const evt: ToolExecutionStartEvent = {

200+

type: "tool_execution_start",

201+

toolName: "write",

202+

toolCallId: "tool-trace-disabled",

203+

args: { path: "notes.txt" },

204+

};

205+206+

await handleToolExecutionStart(ctx, evt);

207+208+

expect(isEnabled).toHaveBeenCalledWith("trace");

209+

expect(trace).not.toHaveBeenCalled();

210+

});

211+156212

it("does not warn when read tool uses file_path alias", async () => {

157-

const { ctx, warn, onBlockReplyFlush, onExecutionPhase } = createTestContext();

213+

const { ctx, warn, trace, isEnabled, onBlockReplyFlush, onExecutionPhase } =

214+

createTestContext();

215+

isEnabled.mockImplementation((level: string) => level === "trace");

158216159217

const evt: ToolExecutionStartEvent = {

160218

type: "tool_execution_start",

@@ -173,6 +231,8 @@ describe("handleToolExecutionStart read path checks", () => {

173231

source: "pi-embedded",

174232

});

175233

expect(warn).not.toHaveBeenCalled();

234+

expect(trace).toHaveBeenCalledTimes(1);

235+

expect(trace.mock.calls[0]?.[1]).not.toHaveProperty("requiredParamsMissing");

176236

});

177237178238

it("warns when read tool has neither path nor file_path", async () => {

@@ -188,7 +248,42 @@ describe("handleToolExecutionStart read path checks", () => {

188248

await handleToolExecutionStart(ctx, evt);

189249190250

expect(warn).toHaveBeenCalledTimes(1);

191-

expect(String(warn.mock.calls[0]?.[0] ?? "")).toContain("read tool called without path");

251+

const warnMessage = String(warn.mock.calls[0]?.[0] ?? "");

252+

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

253+

expect(warnMessage).toContain("read tool called without path");

254+

expect(warnMeta).toBeTypeOf("object");

255+

expect(warnMeta?.event).toBe("embedded_read_tool_start_warning");

256+

expect(warnMeta?.tags).toEqual(["tool_start", "read", "embedded", "validation"]);

257+

expect(warnMeta?.runId).toBe("run-test");

258+

expect(warnMeta?.sessionKey).toBe("agent:unit-session");

259+

expect(warnMeta?.sessionId).toBe("session-test-id");

260+

expect(warnMeta?.agentId).toBe("agent-test-id");

261+

expect(warnMeta?.toolCallId).toBe("tool-2");

262+

expect(warnMeta?.argsType).toBe("object");

263+

expect(warnMeta?.consoleMessage).toContain("runId=run-test");

264+

expect(warnMeta?.consoleMessage).toContain("sessionKey=agent:unit-session");

265+

expect(warnMeta?.consoleMessage).toContain("sessionId=session-test-id");

266+

expect(warnMeta?.consoleMessage).toContain("agentId=agent-test-id");

267+

expect(warnMeta?.consoleMessage).toContain("toolCallId=tool-2");

268+

expect(warnMeta?.consoleMessage).toContain("argsType=object");

269+

expect(warnMeta?.consoleMessage).toContain("read tool called without path");

270+

expect(warnMeta).not.toHaveProperty("argsPreview");

271+

});

272+273+

it("bounds string args before adding read warning preview", async () => {

274+

const { ctx, warn } = createTestContext();

275+276+

const evt: ToolExecutionStartEvent = {

277+

type: "tool_execution_start",

278+

toolName: "read",

279+

toolCallId: "tool-string-args",

280+

args: "x".repeat(500),

281+

};

282+283+

await handleToolExecutionStart(ctx, evt);

284+285+

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

286+

expect(warnMeta?.argsPreview).toBe(`${"x".repeat(200)}…`);

192287

});

193288194289

it("awaits onBlockReplyFlush before continuing tool start processing", async () => {