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

推荐订阅源

Recent Announcements
Recent Announcements
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
云风的 BLOG
云风的 BLOG
Microsoft Security Blog
Microsoft Security Blog
博客园 - 司徒正美
Y
Y Combinator Blog
Stack Overflow Blog
Stack Overflow Blog
雷峰网
雷峰网
小众软件
小众软件
GbyAI
GbyAI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
aimingoo的专栏
aimingoo的专栏
MyScale Blog
MyScale Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
腾讯CDC
A
About on SuperTechFans
宝玉的分享
宝玉的分享
WordPress大学
WordPress大学
B
Blog RSS Feed
G
Google Developers Blog
量子位
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 三生石上(FineUI控件)

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: include cli backend owners in provider metadata filt...
shakkernerd · 2026-04-28 · via Recent Commits to openclaw:main

@@ -1,5 +1,9 @@

11

import { describe, expect, it } from "vitest";

2-

import { resolveProviderDiscoveryFilterForTest } from "./models-config.providers.implicit.js";

2+

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

3+

import {

4+

resolvePluginMetadataProviderOwnersForTest,

5+

resolveProviderDiscoveryFilterForTest,

6+

} from "./models-config.providers.implicit.js";

3748

function liveFilterEnv(overrides: NodeJS.ProcessEnv): NodeJS.ProcessEnv {

59

return {

@@ -12,6 +16,22 @@ function resolveOwners(provider: string): readonly string[] | undefined {

1216

return provider === "claude-cli" ? ["anthropic"] : undefined;

1317

}

141819+

function metadataOwners(

20+

overrides: Partial<PluginMetadataSnapshotOwnerMaps>,

21+

): PluginMetadataSnapshotOwnerMaps {

22+

return {

23+

channels: new Map(),

24+

channelConfigs: new Map(),

25+

providers: new Map(),

26+

modelCatalogProviders: new Map(),

27+

cliBackends: new Map(),

28+

setupProviders: new Map(),

29+

commandAliases: new Map(),

30+

contracts: new Map(),

31+

...overrides,

32+

};

33+

}

34+1535

describe("resolveProviderDiscoveryFilterForTest", () => {

1636

it("maps live provider backend ids to owning plugin ids", () => {

1737

expect(

@@ -48,4 +68,26 @@ describe("resolveProviderDiscoveryFilterForTest", () => {

4868

}),

4969

).toEqual(["openrouter"]);

5070

});

71+72+

it("maps live provider backend ids through plugin metadata cli backend owners", () => {

73+

const snapshot = {

74+

owners: metadataOwners({

75+

cliBackends: new Map([["claude-cli", ["anthropic"]]]),

76+

}),

77+

};

78+79+

const resolveMetadataOwners = (provider: string) =>

80+

resolvePluginMetadataProviderOwnersForTest(snapshot, provider);

81+82+

expect(resolveMetadataOwners("claude-cli")).toEqual(["anthropic"]);

83+

expect(

84+

resolveProviderDiscoveryFilterForTest({

85+

env: liveFilterEnv({

86+

OPENCLAW_LIVE_TEST: "1",

87+

OPENCLAW_LIVE_PROVIDERS: "claude-cli",

88+

}),

89+

resolveOwners: resolveMetadataOwners,

90+

}),

91+

).toEqual(["anthropic"]);

92+

});

5193

});