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

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Blog — PlanetScale
Blog — PlanetScale
小众软件
小众软件
F
Fortinet All Blogs
博客园 - 叶小钗
博客园_首页
D
DataBreaches.Net
Apple Machine Learning Research
Apple Machine Learning Research
U
Unit 42
爱范儿
爱范儿
aimingoo的专栏
aimingoo的专栏
博客园 - Franky
Martin Fowler
Martin Fowler
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
IT之家
IT之家
M
MIT News - Artificial intelligence
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
S
SegmentFault 最新的问题
Hugging Face - Blog
Hugging Face - 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
refactor: use auth index for model list rows · openclaw/o...
shakkernerd · 2026-04-30 · via Recent Commits to openclaw:main

@@ -55,9 +55,8 @@ const mocks = vi.hoisted(() => {

5555

hasProviderStaticCatalogForFilter: vi.fn(),

5656

resolveConfiguredEntries: vi.fn(),

5757

printModelTable: vi.fn(),

58-

listProfilesForProvider: vi.fn(),

5958

resolveModelWithRegistry: vi.fn(),

60-

resolveRuntimeSyntheticAuthProviderRefs: vi.fn(),

59+

readPersistedInstalledPluginIndexSync: vi.fn(),

6160

};

6261

});

6362

@@ -94,9 +93,8 @@ function resetMocks() {

9493

],

9594

});

9695

mocks.printModelTable.mockReset();

97-

mocks.listProfilesForProvider.mockReturnValue([]);

9896

mocks.resolveModelWithRegistry.mockReturnValue({ ...OPENAI_CODEX_MODEL });

99-

mocks.resolveRuntimeSyntheticAuthProviderRefs.mockReturnValue([]);

97+

mocks.readPersistedInstalledPluginIndexSync.mockReturnValue(null);

10098

}

10199102100

function createRuntime() {

@@ -201,10 +199,6 @@ function installModelsListCommandForwardCompatMocks() {

201199

resolveOpenClawAgentDir: mocks.resolveOpenClawAgentDir,

202200

}));

203201204-

vi.doMock("../../agents/auth-profiles/profile-list.js", () => ({

205-

listProfilesForProvider: mocks.listProfilesForProvider,

206-

}));

207-208202

vi.doMock("../../agents/model-catalog.js", () => ({

209203

loadModelCatalog: mocks.loadModelCatalog,

210204

}));

@@ -214,13 +208,11 @@ function installModelsListCommandForwardCompatMocks() {

214208

}));

215209216210

vi.doMock("../../agents/model-auth.js", () => ({

217-

resolveEnvApiKey: vi.fn().mockReturnValue(undefined),

218-

resolveAwsSdkEnvVarName: vi.fn().mockReturnValue(undefined),

219211

hasUsableCustomProviderApiKey: vi.fn().mockReturnValue(false),

220212

}));

221213222-

vi.doMock("../../plugins/synthetic-auth.runtime.js", () => ({

223-

resolveRuntimeSyntheticAuthProviderRefs: mocks.resolveRuntimeSyntheticAuthProviderRefs,

214+

vi.doMock("../../plugins/installed-plugin-index-store.js", () => ({

215+

readPersistedInstalledPluginIndexSync: mocks.readPersistedInstalledPluginIndexSync,

224216

}));

225217

}

226218

@@ -238,7 +230,7 @@ async function buildAllOpenAiCodexRows(opts: { supplementCatalog?: boolean } = {

238230

const context = {

239231

cfg: mocks.resolvedConfig,

240232

agentDir: "/tmp/openclaw-agent",

241-

authStore: mocks.ensureAuthProfileStore(),

233+

authIndex: { hasProviderAuth: (provider: string) => provider === "openai-codex" },

242234

availableKeys: loaded.availableKeys,

243235

configuredByKey: new Map(),

244236

discoveredKeys: new Set(

@@ -453,11 +445,17 @@ describe("modelsListCommand forward-compat", () => {

453445454446

describe("availability fallback", () => {

455447

it("marks synthetic codex gpt-5.4 rows as available when provider auth exists", async () => {

456-

mocks.listProfilesForProvider.mockImplementation((_: unknown, provider: string) =>

457-

provider === "openai-codex"

458-

? ([{ id: "profile-1" }] as Array<Record<string, unknown>>)

459-

: [],

460-

);

448+

mocks.ensureAuthProfileStore.mockReturnValueOnce({

449+

version: 1,

450+

profiles: {

451+

"openai-codex:default": {

452+

type: "token",

453+

provider: "openai-codex",

454+

token: "codex-app-server",

455+

},

456+

},

457+

order: {},

458+

});

461459

const runtime = createRuntime();

462460463461

await modelsListCommand({ json: true }, runtime as never);

@@ -508,7 +506,9 @@ describe("modelsListCommand forward-compat", () => {

508506

cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },

509507

},

510508

]);

511-

mocks.resolveRuntimeSyntheticAuthProviderRefs.mockReturnValueOnce(["codex"]);

509+

mocks.readPersistedInstalledPluginIndexSync.mockReturnValue({

510+

plugins: [{ syntheticAuthRefs: ["codex"] }],

511+

});

512512

const runtime = createRuntime();

513513514514

await modelsListCommand({ all: true, provider: "codex", json: true }, runtime as never);

@@ -865,11 +865,6 @@ describe("modelsListCommand forward-compat", () => {

865865

contextWindow: 400000,

866866

},

867867

]);

868-

mocks.listProfilesForProvider.mockImplementation((_: unknown, provider: string) =>

869-

provider === "openai-codex"

870-

? ([{ id: "profile-1" }] as Array<Record<string, unknown>>)

871-

: [],

872-

);

873868

mocks.resolveModelWithRegistry.mockImplementation(

874869

({ provider, modelId }: { provider: string; modelId: string }) => {

875870

if (provider !== "openai-codex") {

@@ -997,7 +992,7 @@ describe("modelsListCommand forward-compat", () => {

997992

] as never,

998993

context: {

999994

cfg: mocks.resolvedConfig,

1000-

authStore: mocks.ensureAuthProfileStore(),

995+

authIndex: { hasProviderAuth: () => false },

1001996

availableKeys: new Set(["openai-codex/gpt-5.4"]),

1002997

configuredByKey: new Map(),

1003998

discoveredKeys: new Set(),