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

推荐订阅源

D
Docker
I
InfoQ
L
LangChain Blog
阮一峰的网络日志
阮一峰的网络日志
Y
Y Combinator Blog
博客园_首页
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
C
Check Point Blog
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Engineering at Meta
Engineering at Meta
B
Blog
爱范儿
爱范儿
Stack Overflow Blog
Stack Overflow Blog
aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学
F
Fortinet All Blogs
月光博客
月光博客
GbyAI
GbyAI

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: cache read-only channel resolution · openclaw/openc...
steipete · 2026-05-27 · via Recent Commits to openclaw:main

@@ -9,6 +9,12 @@ import {

99

resetPluginLoaderTestStateForTest,

1010

useNoBundledPlugins,

1111

} from "../../plugins/loader.test-fixtures.js";

12+

import { clearPluginMetadataLifecycleCaches } from "../../plugins/plugin-metadata-lifecycle.js";

13+

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

14+

import {

15+

createChannelTestPluginBase,

16+

createTestRegistry,

17+

} from "../../test-utils/channel-plugins.js";

1218

import {

1319

listPluginLoaderModuleCandidateUrls,

1420

listReadOnlyChannelPluginsForConfig,

@@ -468,8 +474,10 @@ function expectExternalChatSetupOnlyPluginLoaded(params: {

468474

}

469475470476

afterEach(() => {

477+

vi.unstubAllEnvs();

471478

moduleLoaderParams.length = 0;

472479

resetPluginLoaderTestStateForTest();

480+

resetPluginRuntimeStateForTest();

473481

});

474482475483

afterAll(() => {

@@ -544,6 +552,161 @@ describe("listReadOnlyChannelPluginsForConfig", () => {

544552

).toBe(true);

545553

});

546554555+

it("reuses default read-only channel plugin resolution for the same config", () => {

556+

const { pluginDir, fullMarker, setupMarker } = writeExternalSetupChannelPlugin();

557+

const cfg = {

558+

channels: {

559+

"external-chat": { token: "configured" },

560+

},

561+

plugins: {

562+

load: { paths: [pluginDir] },

563+

allow: ["external-chat"],

564+

},

565+

} as never;

566+567+

const first = listReadOnlyChannelPluginsForConfig(cfg, {

568+

includePersistedAuthState: false,

569+

includeSetupFallbackPlugins: true,

570+

});

571+

const loaderCallCount = moduleLoaderParams.length;

572+

expect(fs.existsSync(setupMarker)).toBe(true);

573+

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

574+575+

const second = listReadOnlyChannelPluginsForConfig(cfg, {

576+

includePersistedAuthState: false,

577+

includeSetupFallbackPlugins: true,

578+

});

579+580+

expect(pluginIds(first)).toContain("external-chat");

581+

expect(pluginIds(second)).toContain("external-chat");

582+

expect(moduleLoaderParams).toHaveLength(loaderCallCount);

583+

expect(fs.existsSync(setupMarker)).toBe(false);

584+

expect(fs.existsSync(fullMarker)).toBe(false);

585+

});

586+587+

it("refreshes cached read-only channel plugins when the active channel registry changes", () => {

588+

const cfg = { channels: { "external-chat": { token: "configured" } } } as never;

589+

const createRegistryPlugin = (blurb: string) => {

590+

const base = createChannelTestPluginBase({ id: "external-chat" as never });

591+

return {

592+

...base,

593+

meta: {

594+

...base.meta,

595+

blurb,

596+

},

597+

};

598+

};

599+600+

setActivePluginRegistry(

601+

createTestRegistry([

602+

{ pluginId: "first-plugin", plugin: createRegistryPlugin("first"), source: "test" },

603+

]),

604+

);

605+

const first = listReadOnlyChannelPluginsForConfig(cfg, {

606+

includeSetupFallbackPlugins: true,

607+

});

608+609+

setActivePluginRegistry(

610+

createTestRegistry([

611+

{ pluginId: "second-plugin", plugin: createRegistryPlugin("second"), source: "test" },

612+

]),

613+

);

614+

const second = listReadOnlyChannelPluginsForConfig(cfg, {

615+

includeSetupFallbackPlugins: true,

616+

});

617+618+

expect(first.find((plugin) => plugin.id === "external-chat")?.meta.blurb).toBe("first");

619+

expect(second.find((plugin) => plugin.id === "external-chat")?.meta.blurb).toBe("second");

620+

});

621+622+

it("refreshes cached read-only channel plugins when active registry channels mutate in place", () => {

623+

const cfg = { channels: { "external-chat": { token: "configured" } } } as never;

624+

const registry = createTestRegistry([]);

625+

setActivePluginRegistry(registry);

626+627+

const first = listReadOnlyChannelPluginsForConfig(cfg, {

628+

includePersistedAuthState: false,

629+

includeSetupFallbackPlugins: true,

630+

});

631+632+

const plugin = {

633+

...createChannelTestPluginBase({ id: "external-chat" as never }),

634+

meta: {

635+

...createChannelTestPluginBase({ id: "external-chat" as never }).meta,

636+

blurb: "mutated registry",

637+

},

638+

};

639+

registry.channels.push({ pluginId: "mutated-plugin", plugin, source: "test" } as never);

640+

const second = listReadOnlyChannelPluginsForConfig(cfg, {

641+

includePersistedAuthState: false,

642+

includeSetupFallbackPlugins: true,

643+

});

644+645+

expect(pluginIds(first)).not.toContain("external-chat");

646+

expect(second.find((entry) => entry.id === "external-chat")?.meta.blurb).toBe(

647+

"mutated registry",

648+

);

649+

});

650+651+

it("refreshes cached read-only channel plugins when ambient env changes", () => {

652+

const { pluginDir, fullMarker, setupMarker } = writeExternalSetupChannelPlugin({

653+

manifestChannelConfig: true,

654+

});

655+

const cfg = {

656+

plugins: {

657+

load: { paths: [pluginDir] },

658+

allow: ["external-chat"],

659+

},

660+

} as never;

661+662+

const first = listReadOnlyChannelPluginsForConfig(cfg, {

663+

includePersistedAuthState: false,

664+

includeSetupFallbackPlugins: true,

665+

});

666+667+

vi.stubEnv("EXTERNAL_CHAT_TOKEN", "token-from-env");

668+

const second = listReadOnlyChannelPluginsForConfig(cfg, {

669+

includePersistedAuthState: false,

670+

includeSetupFallbackPlugins: true,

671+

});

672+673+

expect(pluginIds(first)).not.toContain("external-chat");

674+

expectExternalChatSetupOnlyPluginLoaded({ plugins: second, setupMarker, fullMarker });

675+

});

676+677+

it("clears cached read-only channel plugin resolution with plugin metadata lifecycle caches", () => {

678+

const { pluginDir, fullMarker, setupMarker } = writeExternalSetupChannelPlugin();

679+

const cfg = {

680+

channels: {

681+

"external-chat": { token: "configured" },

682+

},

683+

plugins: {

684+

load: { paths: [pluginDir] },

685+

allow: ["external-chat"],

686+

},

687+

} as never;

688+689+

const first = listReadOnlyChannelPluginsForConfig(cfg, {

690+

includePersistedAuthState: false,

691+

includeSetupFallbackPlugins: true,

692+

});

693+

expect(pluginIds(first)).toContain("external-chat");

694+

expect(fs.existsSync(setupMarker)).toBe(true);

695+

const manifestPath = path.join(pluginDir, "openclaw.plugin.json");

696+

const manifest = JSON.parse(fs.readFileSync(manifestPath, "utf-8"));

697+

manifest.channels = ["other-chat"];

698+

fs.writeFileSync(manifestPath, JSON.stringify(manifest, null, 2), "utf-8");

699+700+

clearPluginMetadataLifecycleCaches();

701+

const second = listReadOnlyChannelPluginsForConfig(cfg, {

702+

includePersistedAuthState: false,

703+

includeSetupFallbackPlugins: true,

704+

});

705+706+

expect(pluginIds(second)).not.toContain("external-chat");

707+

expect(fs.existsSync(fullMarker)).toBe(false);

708+

});

709+547710

it("matches setup-only plugins by manifest-owned channel ids when plugin id differs", () => {

548711

const { pluginDir, fullMarker, setupMarker } = writeExternalSetupChannelPlugin({

549712

pluginId: "external-chat-plugin",