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

推荐订阅源

博客园_首页
GbyAI
GbyAI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Apple Machine Learning Research
Apple Machine Learning Research
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
Last Week in AI
Last Week in AI
V
Visual Studio Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
博客园 - 【当耐特】
博客园 - 叶小钗
量子位
博客园 - 聂微东
S
SegmentFault 最新的问题
美团技术团队
Hugging Face - Blog
Hugging Face - Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
月光博客
月光博客
宝玉的分享
宝玉的分享
小众软件
小众软件
罗磊的独立博客
有赞技术团队
有赞技术团队
Stack Overflow Blog
Stack Overflow Blog

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(diagnostics): harden event emission (#71164) · opencl...
vincentkoc · 2026-04-25 · via Recent Commits to openclaw:main

@@ -87,16 +87,17 @@ describe("before_tool_call loop detection behavior", () => {

8787

}

88888989

async function withToolExecutionEvents(

90-

run: (emitted: DiagnosticEventPayload[]) => Promise<void>,

90+

run: (emitted: DiagnosticEventPayload[], flush: () => Promise<void>) => Promise<void>,

9191

) {

9292

const emitted: DiagnosticEventPayload[] = [];

9393

const stop = onDiagnosticEvent((evt) => {

9494

if (evt.type.startsWith("tool.execution.")) {

9595

emitted.push(evt);

9696

}

9797

});

98+

const flush = () => new Promise<void>((resolve) => setImmediate(resolve));

9899

try {

99-

await run(emitted);

100+

await run(emitted, flush);

100101

} finally {

101102

stop();

102103

}

@@ -367,13 +368,14 @@ describe("before_tool_call loop detection behavior", () => {

367368

loopDetection: { enabled: false },

368369

});

369370370-

await withToolExecutionEvents(async (emitted) => {

371+

await withToolExecutionEvents(async (emitted, flush) => {

371372

await tool.execute(

372373

"tool-call-1",

373374

{ command: "pwd", token: "sk-1234567890abcdef1234567890abcdef" },

374375

undefined,

375376

undefined,

376377

);

378+

await flush();

377379378380

expect(emitted.map((evt) => evt.type)).toEqual([

379381

"tool.execution.started",

@@ -412,10 +414,11 @@ describe("before_tool_call loop detection behavior", () => {

412414

loopDetection: { enabled: false },

413415

});

414416415-

await withToolExecutionEvents(async (emitted) => {

417+

await withToolExecutionEvents(async (emitted, flush) => {

416418

await expect(

417419

tool.execute("tool-call-error", { path: "/tmp/file" }, undefined, undefined),

418420

).rejects.toThrow("failed with key");

421+

await flush();

419422420423

expect(emitted.map((evt) => evt.type)).toEqual([

421424

"tool.execution.started",

@@ -432,6 +435,71 @@ describe("before_tool_call loop detection behavior", () => {

432435

});

433436

});

434437438+

it("does not let hostile thrown values break diagnostic error emission", async () => {

439+

const hostileError = new Proxy(

440+

{},

441+

{

442+

get() {

443+

throw new Error("diagnostic getter should not run");

444+

},

445+

getOwnPropertyDescriptor() {

446+

throw new Error("diagnostic descriptor failed");

447+

},

448+

},

449+

);

450+

const execute = vi.fn().mockRejectedValue(hostileError);

451+

const tool = wrapToolWithBeforeToolCallHook({ name: "read", execute } as any, {

452+

agentId: "main",

453+

sessionKey: "session-key",

454+

loopDetection: { enabled: false },

455+

});

456+457+

await withToolExecutionEvents(async (emitted, flush) => {

458+

await expect(

459+

tool.execute("tool-call-hostile-error", { path: "/tmp/file" }, undefined, undefined),

460+

).rejects.toBe(hostileError);

461+

await flush();

462+463+

expect(emitted.map((evt) => evt.type)).toEqual([

464+

"tool.execution.started",

465+

"tool.execution.error",

466+

]);

467+

expect(emitted[1]).toMatchObject({

468+

type: "tool.execution.error",

469+

toolName: "read",

470+

toolCallId: "tool-call-hostile-error",

471+

errorCategory: "object",

472+

});

473+

expect(emitted[1]).not.toHaveProperty("errorCode");

474+

});

475+

});

476+477+

it("emits only numeric HTTP status codes as diagnostic tool error codes", async () => {

478+

const error = Object.assign(new Error("rate limited"), {

479+

code: "SECRET_TOKEN",

480+

status: 429,

481+

});

482+

const execute = vi.fn().mockRejectedValue(error);

483+

const tool = wrapToolWithBeforeToolCallHook({ name: "read", execute } as any, {

484+

agentId: "main",

485+

sessionKey: "session-key",

486+

loopDetection: { enabled: false },

487+

});

488+489+

await withToolExecutionEvents(async (emitted, flush) => {

490+

await expect(

491+

tool.execute("tool-call-status-code", { path: "/tmp/file" }, undefined, undefined),

492+

).rejects.toThrow("rate limited");

493+

await flush();

494+495+

expect(emitted[1]).toMatchObject({

496+

type: "tool.execution.error",

497+

errorCode: "429",

498+

});

499+

expect(JSON.stringify(emitted[1])).not.toContain("SECRET_TOKEN");

500+

});

501+

});

502+435503

it("summarizes hostile object params without enumerating keys", async () => {

436504

const execute = vi.fn().mockResolvedValue({ content: [{ type: "text", text: "ok" }] });

437505

const tool = wrapToolWithBeforeToolCallHook({ name: "bash", execute } as any, {

@@ -448,8 +516,9 @@ describe("before_tool_call loop detection behavior", () => {

448516

},

449517

);

450518451-

await withToolExecutionEvents(async (emitted) => {

519+

await withToolExecutionEvents(async (emitted, flush) => {

452520

await tool.execute("tool-call-proxy", params, undefined, undefined);

521+

await flush();

453522454523

expect(emitted[0]).toMatchObject({

455524

type: "tool.execution.started",