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

推荐订阅源

V
Visual Studio Blog
Recent Announcements
Recent Announcements
雷峰网
雷峰网
The GitHub Blog
The GitHub Blog
罗磊的独立博客
月光博客
月光博客
J
Java Code Geeks
A
About on SuperTechFans
Microsoft Security Blog
Microsoft Security Blog
D
Docker
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
F
Fortinet All Blogs
U
Unit 42
C
Check Point Blog
Martin Fowler
Martin Fowler
有赞技术团队
有赞技术团队
博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
酷 壳 – CoolShell
酷 壳 – CoolShell
Blog — PlanetScale
Blog — PlanetScale
大猫的无限游戏
大猫的无限游戏
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
阮一峰的网络日志
阮一峰的网络日志
MyScale Blog
MyScale Blog

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(providers): isolate ClawRouter runtime credentials · ...
vincentkoc · 2026-06-17 · via Recent Commits to openclaw:main

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

66

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

77

import {

88

buildClawRouterProviderConfig,

9-

clearClawRouterCatalogForTests,

109

normalizeClawRouterResolvedModel,

11-

resolveDiscoveredClawRouterModel,

1210

} from "./provider-catalog.js";

13111412

const CATALOG = {

@@ -101,12 +99,12 @@ const CATALOG = {

10199

],

102100

};

103101104-

function buildFetchGuard(): {

102+

function buildFetchGuard(catalog: unknown = CATALOG): {

105103

fetchGuard: LiveModelCatalogFetchGuard;

106104

fetchGuardMock: MockedFunction<LiveModelCatalogFetchGuard>;

107105

} {

108106

const fetchGuardMock: MockedFunction<LiveModelCatalogFetchGuard> = vi.fn(async () => ({

109-

response: new Response(JSON.stringify(CATALOG)),

107+

response: new Response(JSON.stringify(catalog)),

110108

finalUrl: "https://clawrouter.example/v1/catalog",

111109

release: async () => undefined,

112110

}));

@@ -116,7 +114,6 @@ function buildFetchGuard(): {

116114

describe("clawrouter provider catalog", () => {

117115

beforeEach(() => {

118116

clearLiveCatalogCacheForTests();

119-

clearClawRouterCatalogForTests();

120117

});

121118122119

it("maps credential-scoped catalog rows to their real provider transports", async () => {

@@ -131,7 +128,6 @@ describe("clawrouter provider catalog", () => {

131128

expect(provider).toMatchObject({

132129

api: "openai-responses",

133130

apiKey: "clawrouter-test-key",

134-

authHeader: true,

135131

baseUrl: "https://clawrouter.example/v1",

136132

});

137133

expect(provider.models.map((model) => model.id)).toEqual([

@@ -163,20 +159,9 @@ describe("clawrouter provider catalog", () => {

163159

id: "claude-sonnet-4-5-20250929",

164160

api: "anthropic-messages",

165161

baseUrl: "https://clawrouter.example/v1/native/anthropic",

166-

headers: {

167-

Authorization: "Bearer clawrouter-test-key",

168-

},

169-

});

170-171-

const dynamic = resolveDiscoveredClawRouterModel({

172-

baseUrl: provider.baseUrl,

173-

modelId: "google/gemini-default",

174-

});

175-

expect(dynamic).toMatchObject({

176-

id: "google/gemini-default",

177-

provider: "clawrouter",

178-

api: "google-generative-ai",

179162

});

163+

expect(normalized?.params).toBeUndefined();

164+

expect(JSON.stringify(provider.models)).not.toContain("clawrouter-test-key");

180165

});

181166182167

it("caches the auth-scoped catalog for the discovery TTL", async () => {

@@ -196,40 +181,40 @@ describe("clawrouter provider catalog", () => {

196181

expect((headers as Headers).get("authorization")).toBe("Bearer clawrouter-test-key");

197182

});

198183199-

it("replaces stale discovery state when the active catalog changes", async () => {

200-

const first = buildFetchGuard();

201-

const provider = await buildClawRouterProviderConfig({

184+

it("keeps credential-scoped route metadata isolated on each catalog result", async () => {

185+

const firstCatalog = structuredClone(CATALOG);

186+

firstCatalog.providers[1].models[0].upstream = "first-upstream";

187+

const first = buildFetchGuard(firstCatalog);

188+

const firstProvider = await buildClawRouterProviderConfig({

202189

apiKey: "first-key",

203-

baseUrl: "https://first.example",

190+

baseUrl: "https://clawrouter.example",

204191

fetchGuard: first.fetchGuard,

205192

});

206-

const anthropic = provider.models.find((model) => model.id === "anthropic/default");

193+

const firstAnthropic = firstProvider.models.find((model) => model.id === "anthropic/default");

207194208-

const second = buildFetchGuard();

209-

await buildClawRouterProviderConfig({

195+

const secondCatalog = structuredClone(CATALOG);

196+

secondCatalog.providers[1].models[0].upstream = "second-upstream";

197+

const second = buildFetchGuard(secondCatalog);

198+

const secondProvider = await buildClawRouterProviderConfig({

210199

apiKey: "second-key",

211-

baseUrl: "https://second.example",

200+

baseUrl: "https://clawrouter.example",

212201

fetchGuard: second.fetchGuard,

213202

});

203+

const secondAnthropic = secondProvider.models.find((model) => model.id === "anthropic/default");

214204215205

expect(

216-

resolveDiscoveredClawRouterModel({

217-

baseUrl: "https://first.example/v1",

218-

modelId: "openai/gpt-5.5-mini",

219-

}),

220-

).toBeUndefined();

221-

expect(

222-

resolveDiscoveredClawRouterModel({

223-

baseUrl: "https://second.example/v1",

224-

modelId: "openai/gpt-5.5-mini",

225-

}),

226-

).toBeDefined();

206+

normalizeClawRouterResolvedModel({

207+

...firstAnthropic,

208+

baseUrl: firstProvider.baseUrl,

209+

provider: "clawrouter",

210+

} as ProviderRuntimeModel)?.id,

211+

).toBe("first-upstream");

227212

expect(

228213

normalizeClawRouterResolvedModel({

229-

...anthropic,

230-

baseUrl: provider.baseUrl,

214+

...secondAnthropic,

215+

baseUrl: secondProvider.baseUrl,

231216

provider: "clawrouter",

232-

} as ProviderRuntimeModel),

233-

).toBeUndefined();

217+

} as ProviderRuntimeModel)?.id,

218+

).toBe("second-upstream");

234219

});

235220

});