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

推荐订阅源

L
LangChain Blog
有赞技术团队
有赞技术团队
博客园_首页
IT之家
IT之家
爱范儿
爱范儿
量子位
小众软件
小众软件
Jina AI
Jina AI
WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 聂微东
The Cloudflare Blog
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
大猫的无限游戏
大猫的无限游戏
月光博客
月光博客
雷峰网
雷峰网
V
Visual Studio Blog
博客园 - Franky
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
Last Week in AI
Last Week in AI
S
SegmentFault 最新的问题

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
perf(plugins): reuse facade manifest snapshots · openclaw...
medns · 2026-05-29 · via Recent Commits to openclaw:main

@@ -2,8 +2,15 @@ import fs from "node:fs";

22

import path from "node:path";

33

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

44

import { clearRuntimeConfigSnapshot, setRuntimeConfigSnapshot } from "../config/config.js";

5+

import type { OpenClawConfig } from "../config/types.openclaw.js";

56

import { setBundledPluginsDirOverrideForTest } from "../plugins/bundled-dir.js";

67

import { createPluginActivationSource, normalizePluginsConfig } from "../plugins/config-state.js";

8+

import {

9+

clearCurrentPluginMetadataSnapshot,

10+

setCurrentPluginMetadataSnapshot,

11+

} from "../plugins/current-plugin-metadata-snapshot.js";

12+

import { resolveInstalledPluginIndexPolicyHash } from "../plugins/installed-plugin-index-policy.js";

13+

import type { PluginMetadataSnapshot } from "../plugins/plugin-metadata-snapshot.types.js";

714

import {

815

evaluateBundledPluginPublicSurfaceAccess,

916

resolveBundledPluginPublicSurfaceAccess as resolveActivationCheckBundledPluginPublicSurfaceAccess,

@@ -23,6 +30,7 @@ const originalDisableBundledPlugins = process.env.OPENCLAW_DISABLE_BUNDLED_PLUGI

2330

const originalStateDir = process.env.OPENCLAW_STATE_DIR;

2431

const trustedBundledFixturesRoot = path.resolve("dist-runtime", "extensions");

2532

const trustedBundledFixtureDirs: string[] = [];

33+

type SnapshotPluginRecord = PluginMetadataSnapshot["manifestRegistry"]["plugins"][number];

26342735

function writeJsonFile(filePath: string, value: unknown): void {

2836

fs.mkdirSync(path.dirname(filePath), { recursive: true });

@@ -91,6 +99,7 @@ afterEach(() => {

9199

fs.rmSync(dir, { recursive: true, force: true });

92100

}

93101

clearRuntimeConfigSnapshot();

102+

clearCurrentPluginMetadataSnapshot();

94103

resetFacadeRuntimeStateForTest();

95104

setBundledPluginsDirOverrideForTest(undefined);

96105

vi.doUnmock("../plugins/manifest-registry.js");

@@ -148,7 +157,7 @@ describe("plugin-sdk facade runtime", () => {

148157149158

expect(resolved?.boundaryRoot).not.toBe(overrideDir);

150159

expect(resolved?.modulePath).toMatch(

151-

/(?:^|\/)(?:extensions|dist-runtime\/extensions)\/browser\/browser-maintenance\.(?:ts|js)$/u,

160+

/(?:^|[\\/])(?:extensions|dist-runtime[\\/]extensions)[\\/]browser[\\/]browser-maintenance\.(?:ts|js)$/u,

152161

);

153162

});

154163

@@ -568,4 +577,141 @@ describe("plugin-sdk facade runtime", () => {

568577

pluginId: "demo",

569578

});

570579

});

580+581+

it("validates current snapshot against facade boundary config and ignores on mismatch", () => {

582+

const dir = createTempDirSync("openclaw-facade-snapshot-validate-");

583+

fs.mkdirSync(path.join(dir, "demo"), { recursive: true });

584+

fs.writeFileSync(

585+

path.join(dir, "demo", "runtime-api.js"),

586+

'export const marker = "snapshot-validate";\n',

587+

"utf8",

588+

);

589+

// Do NOT write openclaw.plugin.json on disk to force fallback to registry scan

590+

useBundledPluginDirOverrideForTest(dir);

591+592+

function createTestSnapshot(

593+

params: {

594+

config?: OpenClawConfig;

595+

plugins?: SnapshotPluginRecord[];

596+

} = {},

597+

): PluginMetadataSnapshot {

598+

const policyHash = resolveInstalledPluginIndexPolicyHash(params.config);

599+

return {

600+

policyHash,

601+

index: {

602+

version: 1,

603+

hostContractVersion: "test",

604+

compatRegistryVersion: "test",

605+

migrationVersion: 1,

606+

policyHash,

607+

generatedAtMs: 1,

608+

installRecords: {},

609+

plugins: [],

610+

diagnostics: [],

611+

},

612+

registryDiagnostics: [],

613+

manifestRegistry: { plugins: params.plugins ?? [], diagnostics: [] },

614+

plugins: [],

615+

diagnostics: [],

616+

byPluginId: new Map(),

617+

normalizePluginId: (pluginId) => pluginId,

618+

owners: {

619+

channels: new Map(),

620+

channelConfigs: new Map(),

621+

providers: new Map(),

622+

modelCatalogProviders: new Map(),

623+

cliBackends: new Map(),

624+

setupProviders: new Map(),

625+

commandAliases: new Map(),

626+

contracts: new Map(),

627+

},

628+

metrics: {

629+

registrySnapshotMs: 0,

630+

manifestRegistryMs: 0,

631+

ownerMapsMs: 0,

632+

totalMs: 0,

633+

indexPluginCount: 0,

634+

manifestPluginCount: 0,

635+

},

636+

};

637+

}

638+639+

const configWithPaths = {

640+

plugins: {

641+

load: { paths: ["/path/one"] },

642+

entries: {

643+

"demo-snapshot": { enabled: true },

644+

demo: { enabled: true },

645+

},

646+

},

647+

} satisfies OpenClawConfig;

648+

const matchedSnapshot = createTestSnapshot({

649+

config: configWithPaths,

650+

plugins: [

651+

{

652+

id: "demo-snapshot",

653+

rootDir: path.join(dir, "demo"),

654+

source: path.join(dir, "demo", "runtime-api.js"),

655+

manifestPath: path.join(dir, "demo", "openclaw.plugin.json"),

656+

channels: ["demo"],

657+

providers: [],

658+

cliBackends: [],

659+

skills: [],

660+

hooks: [],

661+

origin: "bundled" as const,

662+

},

663+

],

664+

});

665+666+

setCurrentPluginMetadataSnapshot(matchedSnapshot, { config: configWithPaths });

667+668+

setRuntimeConfigSnapshot(

669+

{

670+

plugins: {

671+

load: { paths: ["/path/two"] },

672+

entries: {

673+

"demo-snapshot": { enabled: true },

674+

demo: { enabled: true },

675+

},

676+

},

677+

},

678+

{

679+

plugins: {

680+

load: { paths: ["/path/two"] },

681+

entries: {

682+

"demo-snapshot": { enabled: true },

683+

demo: { enabled: true },

684+

},

685+

},

686+

},

687+

);

688+689+

expect(

690+

resolveActivationCheckBundledPluginPublicSurfaceAccess({

691+

dirName: "demo",

692+

artifactBasename: "runtime-api.js",

693+

location: null,

694+

sourceExtensionsRoot: dir,

695+

resolutionKey: "snapshot-validate-demo",

696+

}),

697+

).toEqual({

698+

allowed: false,

699+

reason: "no bundled plugin manifest found for demo",

700+

});

701+702+

setRuntimeConfigSnapshot(configWithPaths, configWithPaths);

703+704+

expect(

705+

resolveActivationCheckBundledPluginPublicSurfaceAccess({

706+

dirName: "demo",

707+

artifactBasename: "runtime-api.js",

708+

location: null,

709+

sourceExtensionsRoot: dir,

710+

resolutionKey: "snapshot-validate-demo",

711+

}),

712+

).toEqual({

713+

allowed: true,

714+

pluginId: "demo-snapshot",

715+

});

716+

});

571717

});