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

推荐订阅源

Martin Fowler
Martin Fowler
J
Java Code Geeks
博客园 - 【当耐特】
宝玉的分享
宝玉的分享
腾讯CDC
D
DataBreaches.Net
Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
V
V2EX
F
Fortinet All Blogs
MyScale Blog
MyScale Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
Tailwind CSS Blog
Jina AI
Jina AI
GbyAI
GbyAI
大猫的无限游戏
大猫的无限游戏
A
About on SuperTechFans
酷 壳 – CoolShell
酷 壳 – CoolShell
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
U
Unit 42
B
Blog
M
MIT News - Artificial intelligence
N
Netflix TechBlog - Medium

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
test: clear model picker broad matchers · openclaw/opencl...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -163,6 +163,54 @@ function configuredTextModel(id: string, name: string) {

163163

};

164164

}

165165166+

type MockCallSource = {

167+

mock: {

168+

calls: ArrayLike<ReadonlyArray<unknown>>;

169+

};

170+

};

171+172+

function requireRecord(value: unknown, label: string): Record<string, unknown> {

173+

expect(value, label).toBeTypeOf("object");

174+

expect(value, label).not.toBeNull();

175+

return value as Record<string, unknown>;

176+

}

177+178+

function mockArg(source: MockCallSource, callIndex: number, argIndex: number, label: string) {

179+

const call = source.mock.calls[callIndex];

180+

if (!call) {

181+

throw new Error(`expected mock call: ${label}`);

182+

}

183+

return call[argIndex];

184+

}

185+186+

function pickerParams(source: MockCallSource, callIndex = 0) {

187+

return requireRecord(mockArg(source, callIndex, 0, `picker call ${callIndex}`), "picker params");

188+

}

189+190+

function pickerOptions(source: MockCallSource, callIndex = 0) {

191+

const options = pickerParams(source, callIndex).options;

192+

expect(options, "picker options").toBeInstanceOf(Array);

193+

return options as Array<Record<string, unknown>>;

194+

}

195+196+

function optionValues(options: Array<Record<string, unknown>>) {

197+

return options.map((option) => option.value);

198+

}

199+200+

function requireOption(options: Array<Record<string, unknown>>, value: string) {

201+

const option = options.find((candidate) => candidate.value === value);

202+

if (!option) {

203+

throw new Error(`expected picker option: ${value}`);

204+

}

205+

return option;

206+

}

207+208+

function providerCallProviders() {

209+

return resolveOwningPluginIdsForProvider.mock.calls.map(

210+

([params]) => requireRecord(params, "provider ownership params").provider,

211+

);

212+

}

213+166214

beforeEach(() => {

167215

vi.clearAllMocks();

168216

loadStaticManifestCatalogRowsForList.mockReturnValue([]);

@@ -210,19 +258,11 @@ describe("promptDefaultModel", () => {

210258

ignoreAllowlist: true,

211259

});

212260213-

const options = select.mock.calls[0]?.[0]?.options ?? [];

214-

expect(options).toEqual(

215-

expect.arrayContaining([

216-

expect.objectContaining({

217-

value: "openai/gpt-5.5",

218-

hint: expect.stringContaining("Codex runtime route"),

219-

}),

220-

expect.objectContaining({

221-

value: "openai-codex/gpt-5.5",

222-

hint: expect.stringContaining("legacy Codex OAuth route"),

223-

}),

224-

]),

225-

);

261+

const options = pickerOptions(select as MockCallSource);

262+

const canonical = requireOption(options, "openai/gpt-5.5");

263+

expect(canonical.hint).toContain("Codex runtime route");

264+

const legacy = requireOption(options, "openai-codex/gpt-5.5");

265+

expect(legacy.hint).toContain("legacy Codex OAuth route");

226266

});

227267228268

it("hides unauthenticated catalog entries from default model choices", async () => {

@@ -324,14 +364,15 @@ describe("promptDefaultModel", () => {

324364

});

325365326366

expect(result.model).toBe("google/gemini-3.1-pro-preview");

327-

expect(select.mock.calls[0]?.[0]?.options).toEqual([

328-

expect.objectContaining({ value: "google/gemini-3.1-pro-preview" }),

367+

expect(optionValues(pickerOptions(select as MockCallSource))).toEqual([

368+

"google/gemini-3.1-pro-preview",

329369

]);

330-

expect(runProviderModelSelectedHook).toHaveBeenCalledWith(

331-

expect.objectContaining({

332-

model: "google/gemini-3.1-pro-preview",

333-

}),

334-

);

370+

expect(

371+

requireRecord(

372+

mockArg(runProviderModelSelectedHook as MockCallSource, 0, 0, "provider selected hook"),

373+

"provider selected hook params",

374+

).model,

375+

).toBe("google/gemini-3.1-pro-preview");

335376

});

336377337378

it("uses configured provider models for default picker without loading the full catalog in replace mode", async () => {

@@ -364,12 +405,11 @@ describe("promptDefaultModel", () => {

364405

});

365406366407

expect(loadModelCatalog).not.toHaveBeenCalled();

367-

expect(select.mock.calls[0]?.[0]?.options).toEqual([

368-

expect.objectContaining({

369-

value: "minimax/MiniMax-M2.7-highspeed",

370-

hint: expect.stringContaining("MiniMax M2.7 Highspeed"),

371-

}),

372-

]);

408+

const minimaxOption = requireOption(

409+

pickerOptions(select as MockCallSource),

410+

"minimax/MiniMax-M2.7-highspeed",

411+

);

412+

expect(minimaxOption.hint).toContain("MiniMax M2.7 Highspeed");

373413

expect(result.model).toBe("minimax/MiniMax-M2.7-highspeed");

374414

});

375415

@@ -412,12 +452,8 @@ describe("promptDefaultModel", () => {

412452

expect(optionValues[1]).toBe("byteplus-plan/ark-code-latest");

413453

expect(select.mock.calls[0]?.[0]?.initialValue).toBe("byteplus-plan/ark-code-latest");

414454

expect(result.model).toBe("byteplus-plan/ark-code-latest");

415-

expect(resolveOwningPluginIdsForProvider).toHaveBeenCalledWith(

416-

expect.objectContaining({ provider: "byteplus" }),

417-

);

418-

expect(resolveOwningPluginIdsForProvider).toHaveBeenCalledWith(

419-

expect.objectContaining({ provider: "byteplus-plan" }),

420-

);

455+

expect(providerCallProviders()).toContain("byteplus");

456+

expect(providerCallProviders()).toContain("byteplus-plan");

421457

});

422458423459

it("shows literal double-prefix labels for providers that preserve literal prefixes", async () => {

@@ -453,18 +489,12 @@ describe("promptDefaultModel", () => {

453489

ignoreAllowlist: true,

454490

});

455491456-

const options = select.mock.calls[0]?.[0]?.options ?? [];

457-

expect(options).toEqual(

458-

expect.arrayContaining([

459-

expect.objectContaining({

460-

value: "__keep__",

461-

label: "Keep current (nvidia/nvidia/nemotron-3-super-120b-a12b)",

462-

}),

463-

expect.objectContaining({

464-

value: "nvidia/nemotron-3-super-120b-a12b",

465-

label: "nvidia/nvidia/nemotron-3-super-120b-a12b",

466-

}),

467-

]),

492+

const options = pickerOptions(select as MockCallSource);

493+

expect(requireOption(options, "__keep__").label).toBe(

494+

"Keep current (nvidia/nvidia/nemotron-3-super-120b-a12b)",

495+

);

496+

expect(requireOption(options, "nvidia/nemotron-3-super-120b-a12b").label).toBe(

497+

"nvidia/nvidia/nemotron-3-super-120b-a12b",

468498

);

469499

});

470500

@@ -498,18 +528,14 @@ describe("promptDefaultModel", () => {

498528499529

expect(result).toStrictEqual({});

500530

expect(loadModelCatalog).not.toHaveBeenCalled();

501-

expect(select.mock.calls[0]?.[0]).toMatchObject({

502-

searchable: false,

503-

initialValue: "__keep__",

504-

});

505-

expect(select.mock.calls[0]?.[0]?.options).toEqual([

506-

expect.objectContaining({

507-

value: "__keep__",

508-

label: "Keep current (nvidia/nvidia/nemotron-3-super-120b-a12b)",

509-

}),

510-

expect.objectContaining({ value: "__manual__" }),

511-

expect.objectContaining({ value: "__browse__" }),

512-

]);

531+

const params = pickerParams(select as MockCallSource);

532+

expect(params.searchable).toBe(false);

533+

expect(params.initialValue).toBe("__keep__");

534+

const options = pickerOptions(select as MockCallSource);

535+

expect(optionValues(options)).toEqual(["__keep__", "__manual__", "__browse__"]);

536+

expect(requireOption(options, "__keep__").label).toBe(

537+

"Keep current (nvidia/nvidia/nemotron-3-super-120b-a12b)",

538+

);

513539

});

514540515541

it("keeps current preferred-provider models cold until browsing is requested", async () => {

@@ -535,14 +561,13 @@ describe("promptDefaultModel", () => {

535561536562

expect(result).toStrictEqual({});

537563

expect(loadModelCatalog).not.toHaveBeenCalled();

538-

expect(select.mock.calls[0]?.[0]).toMatchObject({

539-

searchable: false,

540-

initialValue: "__keep__",

541-

});

542-

expect(select.mock.calls[0]?.[0]?.options).toEqual([

543-

expect.objectContaining({ value: "__keep__" }),

544-

expect.objectContaining({ value: "__manual__" }),

545-

expect.objectContaining({ value: "__browse__" }),

564+

const params = pickerParams(select as MockCallSource);

565+

expect(params.searchable).toBe(false);

566+

expect(params.initialValue).toBe("__keep__");

567+

expect(optionValues(pickerOptions(select as MockCallSource))).toEqual([

568+

"__keep__",

569+

"__manual__",

570+

"__browse__",

546571

]);

547572

});

548573

@@ -656,7 +681,7 @@ describe("promptDefaultModel", () => {

656681

mode: "setup",

657682

});

658683

expect(result.model).toBe("vllm/meta-llama/Meta-Llama-3-8B-Instruct");

659-

expect(result.config?.models?.providers?.vllm).toMatchObject({

684+

expect(result.config?.models?.providers?.vllm).toEqual({

660685

baseUrl: "http://127.0.0.1:8000/v1",

661686

api: "openai-completions",

662687

apiKey: "VLLM_API_KEY", // pragma: allowlist secret

@@ -713,12 +738,9 @@ describe("promptDefaultModel", () => {

713738

});

714739715740

expect(providerModelPickerContributionRuntime.resolve).toHaveBeenCalledOnce();

716-

expect(select.mock.calls[0]?.[0]?.options).toEqual(

717-

expect.arrayContaining([expect.objectContaining({ value: "ollama", label: "Ollama" })]),

718-

);

719-

expect(select.mock.calls[0]?.[0]?.options).not.toEqual(

720-

expect.arrayContaining([expect.objectContaining({ value: "legacy-entry" })]),

721-

);

741+

const options = pickerOptions(select as MockCallSource);

742+

expect(requireOption(options, "ollama").label).toBe("Ollama");

743+

expect(optionValues(options)).not.toContain("legacy-entry");

722744

});

723745724746

it("keeps skip-auth model selection cold when catalog loading is disabled", async () => {

@@ -748,10 +770,10 @@ describe("promptDefaultModel", () => {

748770

expect(loadModelCatalog).not.toHaveBeenCalled();

749771

expect(resolveProviderModelPickerEntries).not.toHaveBeenCalled();

750772

expect(providerModelPickerContributionRuntime.resolve).not.toHaveBeenCalled();

751-

expect(select.mock.calls[0]?.[0]?.options).toEqual([

752-

expect.objectContaining({ value: "__keep__" }),

753-

expect.objectContaining({ value: "__manual__" }),

754-

expect.objectContaining({ value: "openai/gpt-5.5" }),

773+

expect(optionValues(pickerOptions(select as MockCallSource))).toEqual([

774+

"__keep__",

775+

"__manual__",

776+

"openai/gpt-5.5",

755777

]);

756778

});

757779

@@ -796,14 +818,10 @@ describe("promptDefaultModel", () => {

796818

runtime: {} as never,

797819

});

798820799-

expect(select.mock.calls[0]?.[0]?.options).toEqual(

800-

expect.arrayContaining([

801-

expect.objectContaining({

802-

value: "provider-plugin:nvidia:api-key",

803-

label: "NVIDIA (custom)",

804-

}),

805-

]),

806-

);

821+

expect(

822+

requireOption(pickerOptions(select as MockCallSource), "provider-plugin:nvidia:api-key")

823+

.label,

824+

).toBe("NVIDIA (custom)");

807825

});

808826

});

809827

@@ -1221,8 +1239,8 @@ describe("promptModelAllowlist", () => {

12211239

});

1222124012231241

expect(loadModelCatalog).not.toHaveBeenCalled();

1224-

expect(multiselect.mock.calls[0]?.[0]?.options).toEqual([

1225-

expect.objectContaining({ value: "openai-codex/gpt-5.5" }),

1242+

expect(optionValues(pickerOptions(multiselect as MockCallSource))).toEqual([

1243+

"openai-codex/gpt-5.5",

12261244

]);

12271245

expect(multiselect.mock.calls[0]?.[0]?.initialValues).toEqual(["openai-codex/gpt-5.5"]);

12281246

expect(result).toEqual({