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

推荐订阅源

D
DataBreaches.Net
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
云风的 BLOG
云风的 BLOG
B
Blog
博客园 - Franky
I
InfoQ
A
About on SuperTechFans
博客园_首页
L
LangChain Blog
量子位
腾讯CDC
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
美团技术团队
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
雷峰网
雷峰网
MongoDB | Blog
MongoDB | Blog
Microsoft Azure Blog
Microsoft Azure Blog
月光博客
月光博客
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
G
Google Developers Blog
Last Week in AI
Last Week in AI

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: keep trusted policies with hook registry (#94545) · ...
jesse-merhi · 2026-06-22 · via Recent Commits to openclaw:main

@@ -5,10 +5,18 @@

55

*/

66

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

77

import { setEmbeddedMode } from "../infra/embedded-mode.js";

8-

import { getGlobalHookRunner } from "../plugins/hook-runner-global.js";

8+

import {

9+

getGlobalHookRunner,

10+

initializeGlobalHookRunner,

11+

resetGlobalHookRunner,

12+

} from "../plugins/hook-runner-global.js";

913

import type { HookRunner } from "../plugins/hooks.js";

1014

import { createEmptyPluginRegistry } from "../plugins/registry-empty.js";

11-

import { setActivePluginRegistry } from "../plugins/runtime.js";

15+

import {

16+

pinActivePluginChannelRegistry,

17+

releasePinnedPluginChannelRegistry,

18+

setActivePluginRegistry,

19+

} from "../plugins/runtime.js";

1220

import { PluginApprovalResolutions } from "../plugins/types.js";

1321

import { runBeforeToolCallHook } from "./agent-tools.before-tool-call.js";

1422

import { callGatewayTool } from "./tools/gateway.js";

@@ -69,6 +77,7 @@ describe("runBeforeToolCallHook — embedded mode approvals", () => {

6977

let runBeforeToolCallMock: ReturnType<typeof vi.fn<HookRunner["runBeforeToolCall"]>>;

70787179

beforeEach(() => {

80+

resetGlobalHookRunner();

7281

runBeforeToolCallMock = vi.fn<HookRunner["runBeforeToolCall"]>();

7382

hookRunner = {

7483

hasHooks: vi.fn<HookRunner["hasHooks"]>().mockReturnValue(true),

@@ -82,6 +91,7 @@ describe("runBeforeToolCallHook — embedded mode approvals", () => {

8291

afterEach(() => {

8392

setEmbeddedMode(false);

8493

setActivePluginRegistry(createEmptyPluginRegistry());

94+

resetGlobalHookRunner();

8595

});

86968797

it("blocks approval-required tools in embedded mode when no gateway approval route exists", async () => {

@@ -445,6 +455,94 @@ describe("runBeforeToolCallHook — embedded mode approvals", () => {

445455

expect(runBeforeToolCallMock).not.toHaveBeenCalled();

446456

});

447457458+

it("runs trusted policies from the global hook registry after the active registry changes", async () => {

459+

const evaluatePolicy = vi.fn(() => ({

460+

block: true,

461+

blockReason: "gateway registry policy blocked",

462+

}));

463+

const gatewayRegistry = createEmptyPluginRegistry();

464+

gatewayRegistry.trustedToolPolicies = [

465+

{

466+

pluginId: "gateway-policy",

467+

pluginName: "Gateway Policy",

468+

source: "test",

469+

policy: {

470+

id: "gateway-block",

471+

description: "Gateway policy",

472+

evaluate: evaluatePolicy,

473+

},

474+

},

475+

];

476+

initializeGlobalHookRunner(gatewayRegistry);

477+

setActivePluginRegistry(createEmptyPluginRegistry());

478+

runBeforeToolCallMock.mockResolvedValue(undefined);

479+480+

const result = await runBeforeToolCallHook({

481+

toolName: "bash",

482+

params: { command: "deploy" },

483+

toolCallId: "call-gateway-policy",

484+

ctx: { agentId: "main", sessionKey: "main" },

485+

});

486+487+

expect(result).toEqual({

488+

blocked: true,

489+

kind: "veto",

490+

deniedReason: "plugin-before-tool-call",

491+

reason: "gateway registry policy blocked",

492+

params: { command: "deploy" },

493+

});

494+

expect(evaluatePolicy).toHaveBeenCalledTimes(1);

495+

expect(runBeforeToolCallMock).not.toHaveBeenCalled();

496+

});

497+498+

it("runs pinned gateway trusted policies after a later global runner initialization", async () => {

499+

const evaluatePolicy = vi.fn(() => ({

500+

block: true,

501+

blockReason: "pinned gateway policy blocked",

502+

}));

503+

const gatewayRegistry = createEmptyPluginRegistry();

504+

gatewayRegistry.trustedToolPolicies = [

505+

{

506+

pluginId: "gateway-policy",

507+

pluginName: "Gateway Policy",

508+

source: "test",

509+

policy: {

510+

id: "gateway-block",

511+

description: "Gateway policy",

512+

evaluate: evaluatePolicy,

513+

},

514+

},

515+

];

516+

setActivePluginRegistry(gatewayRegistry);

517+

initializeGlobalHookRunner(gatewayRegistry);

518+

pinActivePluginChannelRegistry(gatewayRegistry);

519+

try {

520+

const laterRegistry = createEmptyPluginRegistry();

521+

setActivePluginRegistry(laterRegistry);

522+

initializeGlobalHookRunner(laterRegistry);

523+

runBeforeToolCallMock.mockResolvedValue(undefined);

524+525+

const result = await runBeforeToolCallHook({

526+

toolName: "bash",

527+

params: { command: "deploy" },

528+

toolCallId: "call-pinned-gateway-policy",

529+

ctx: { agentId: "main", sessionKey: "main" },

530+

});

531+532+

expect(result).toEqual({

533+

blocked: true,

534+

kind: "veto",

535+

deniedReason: "plugin-before-tool-call",

536+

reason: "pinned gateway policy blocked",

537+

params: { command: "deploy" },

538+

});

539+

expect(evaluatePolicy).toHaveBeenCalledTimes(1);

540+

expect(runBeforeToolCallMock).not.toHaveBeenCalled();

541+

} finally {

542+

releasePinnedPluginChannelRegistry(gatewayRegistry);

543+

}

544+

});

545+448546

it("does not require skill_workshop lifecycle approval in auto mode", async () => {

449547

(hookRunner.hasHooks as ReturnType<typeof vi.fn>).mockReturnValue(false);

450548