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

推荐订阅源

G
Google Developers Blog
D
Docker
Stack Overflow Blog
Stack Overflow Blog
GbyAI
GbyAI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
M
MIT News - Artificial intelligence
H
Help Net Security
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
L
LangChain Blog
MongoDB | Blog
MongoDB | Blog
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
S
SegmentFault 最新的问题
博客园 - 司徒正美
C
Check Point Blog
B
Blog
Y
Y Combinator Blog
Microsoft Azure Blog
Microsoft Azure Blog
P
Proofpoint News Feed
F
Fortinet All Blogs
美团技术团队
D
DataBreaches.Net

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: trace plugin tool factory timings (#75823) · opencla...
steipete · 2026-05-02 · via Recent Commits to openclaw:main

@@ -1,7 +1,10 @@

11

import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest";

2+

import { resetLogger, setLoggerOverride } from "../logging/logger.js";

3+

import { loggingState } from "../logging/state.js";

2435

type MockRegistryToolEntry = {

46

pluginId: string;

7+

names?: string[];

58

optional: boolean;

69

source: string;

710

factory: (ctx: unknown) => unknown;

@@ -93,6 +96,7 @@ function setMultiToolRegistry() {

9396

function createOptionalDemoEntry(): MockRegistryToolEntry {

9497

return {

9598

pluginId: "optional-demo",

99+

names: ["optional_tool"],

96100

optional: true,

97101

source: "/tmp/optional-demo.js",

98102

factory: () => makeTool("optional_tool"),

@@ -110,6 +114,17 @@ function createMalformedTool(name: string) {

110114

};

111115

}

112116117+

function installConsoleMethodSpy(method: "log" | "warn") {

118+

const spy = vi.fn();

119+

loggingState.rawConsole = {

120+

log: method === "log" ? spy : vi.fn(),

121+

info: vi.fn(),

122+

warn: method === "warn" ? spy : vi.fn(),

123+

error: vi.fn(),

124+

};

125+

return spy;

126+

}

127+113128

function resolveWithConflictingCoreName(options?: { suppressNameConflicts?: boolean }) {

114129

return resolvePluginTools(

115130

createResolveToolsParams({

@@ -227,6 +242,10 @@ describe("resolvePluginTools optional tools", () => {

227242228243

afterEach(() => {

229244

resetPluginRuntimeStateForTest?.();

245+

setLoggerOverride(null);

246+

loggingState.rawConsole = null;

247+

resetLogger();

248+

vi.useRealTimers();

230249

});

231250232251

it("skips optional tools without explicit allowlist", () => {

@@ -342,6 +361,86 @@ describe("resolvePluginTools optional tools", () => {

342361

);

343362

});

344363364+

it("warns with plugin factory timing details when a factory is slow", () => {

365+

vi.useFakeTimers({ now: 0 });

366+

const warnSpy = installConsoleMethodSpy("warn");

367+

setLoggerOverride({ level: "silent", consoleLevel: "warn" });

368+

setRegistry([

369+

{

370+

pluginId: "optional-demo",

371+

names: ["optional_tool"],

372+

optional: true,

373+

source: "/tmp/optional-demo.js",

374+

factory: () => {

375+

vi.advanceTimersByTime(1200);

376+

return makeTool("optional_tool");

377+

},

378+

},

379+

]);

380+381+

const tools = resolveOptionalDemoTools(["optional_tool"]);

382+383+

expectResolvedToolNames(tools, ["optional_tool"]);

384+

expect(warnSpy).toHaveBeenCalledTimes(1);

385+

const message = String(warnSpy.mock.calls[0]?.[0] ?? "");

386+

expect(message).toContain("[trace:plugin-tools] factory timings");

387+

expect(message).toContain("totalMs=1200");

388+

expect(message).toContain("optional-demo:1200ms@1200ms");

389+

expect(message).toContain("names=[optional_tool]");

390+

expect(message).toContain("result=single");

391+

expect(message).toContain("count=1");

392+

});

393+394+

it("emits trace factory timings below the warn threshold when trace logging is enabled", () => {

395+

vi.useFakeTimers({ now: 0 });

396+

const logSpy = installConsoleMethodSpy("log");

397+

setLoggerOverride({ level: "silent", consoleLevel: "trace" });

398+

setRegistry([

399+

{

400+

pluginId: "optional-demo",

401+

names: ["optional_tool"],

402+

optional: true,

403+

source: "/tmp/optional-demo.js",

404+

factory: () => {

405+

vi.advanceTimersByTime(5);

406+

return makeTool("optional_tool");

407+

},

408+

},

409+

]);

410+411+

const tools = resolveOptionalDemoTools(["optional_tool"]);

412+413+

expectResolvedToolNames(tools, ["optional_tool"]);

414+

expect(logSpy).toHaveBeenCalledTimes(1);

415+

const message = String(logSpy.mock.calls[0]?.[0] ?? "");

416+

expect(message).toContain("[trace:plugin-tools] factory timings");

417+

expect(message).toContain("totalMs=5");

418+

expect(message).toContain("optional-demo:5ms@5ms");

419+

});

420+421+

it("does not log plugin factory timings for fast factories without trace logging", () => {

422+

vi.useFakeTimers({ now: 0 });

423+

const warnSpy = installConsoleMethodSpy("warn");

424+

setLoggerOverride({ level: "silent", consoleLevel: "warn" });

425+

setRegistry([

426+

{

427+

pluginId: "optional-demo",

428+

names: ["optional_tool"],

429+

optional: true,

430+

source: "/tmp/optional-demo.js",

431+

factory: () => {

432+

vi.advanceTimersByTime(5);

433+

return makeTool("optional_tool");

434+

},

435+

},

436+

]);

437+438+

const tools = resolveOptionalDemoTools(["optional_tool"]);

439+440+

expectResolvedToolNames(tools, ["optional_tool"]);

441+

expect(warnSpy).not.toHaveBeenCalled();

442+

});

443+345444

it("skips allowlisted optional malformed plugin tools", () => {

346445

const registry = setRegistry([

347446

{