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

推荐订阅源

月光博客
月光博客
MyScale Blog
MyScale Blog
博客园 - Franky
The Cloudflare Blog
IT之家
IT之家
Blog — PlanetScale
Blog — PlanetScale
博客园 - 聂微东
WordPress大学
WordPress大学
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
The Blog of Author Tim Ferriss
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
Google DeepMind News
Google DeepMind News
P
Proofpoint News Feed
Martin Fowler
Martin Fowler
aimingoo的专栏
aimingoo的专栏
J
Java Code Geeks
腾讯CDC
雷峰网
雷峰网
Microsoft Azure Blog
Microsoft Azure Blog
G
Google Developers Blog
博客园 - 【当耐特】
美团技术团队
云风的 BLOG
云风的 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
test: guard model picker mock calls · openclaw/openclaw@a...
steipete · 2026-05-12 · via Recent Commits to openclaw:main

@@ -166,7 +166,7 @@ function configuredTextModel(id: string, name: string) {

166166167167

type MockCallSource = {

168168

mock: {

169-

calls: ArrayLike<ReadonlyArray<unknown>>;

169+

calls: ReadonlyArray<ReadonlyArray<unknown>>;

170170

};

171171

};

172172

@@ -178,7 +178,7 @@ function requireRecord(value: unknown, label: string): Record<string, unknown> {

178178

}

179179180180

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

181-

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

181+

const call = source.mock.calls.at(callIndex);

182182

if (!call) {

183183

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

184184

}

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

285285

ignoreAllowlist: true,

286286

});

287287288-

const values = (select.mock.calls[0]?.[0]?.options ?? []).map(

288+

const values = (select.mock.calls.at(0)?.[0]?.options ?? []).map(

289289

(option: { value: string }) => option.value,

290290

);

291291

expect(values).toEqual(["anthropic/claude-sonnet-4-6"]);

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

309309

ignoreAllowlist: true,

310310

});

311311312-

const values = (select.mock.calls[0]?.[0]?.options ?? []).map(

312+

const values = (select.mock.calls.at(0)?.[0]?.options ?? []).map(

313313

(option: { value: string }) => option.value,

314314

);

315315

expect(values).toEqual(["amazon-bedrock/us.anthropic.claude-sonnet-4-5"]);

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

338338

ignoreAllowlist: true,

339339

});

340340341-

const optionValues = (select.mock.calls[0]?.[0]?.options ?? []).map(

341+

const optionValues = (select.mock.calls.at(0)?.[0]?.options ?? []).map(

342342

(option: { value: string }) => option.value,

343343

);

344344

expect(optionValues).toEqual([

@@ -448,11 +448,11 @@ describe("promptDefaultModel", () => {

448448

preferredProvider: "byteplus",

449449

});

450450451-

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

451+

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

452452

const optionValues = options.map((opt: { value: string }) => opt.value);

453453

expect(optionValues).toContain("byteplus-plan/ark-code-latest");

454454

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

455-

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

455+

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

456456

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

457457

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

458458

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

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

617617

expect(result.model).toBe("openai-codex/gpt-5.5-pro");

618618

expect(loadModelCatalog).toHaveBeenCalledOnce();

619619

expect(select).toHaveBeenCalledTimes(2);

620-

expect(select.mock.calls[1]?.[0]?.searchable).toBe(true);

620+

expect(select.mock.calls.at(1)?.[0]?.searchable).toBe(true);

621621

});

622622623623

it("supports configuring vLLM during setup", async () => {

@@ -857,7 +857,7 @@ describe("promptModelAllowlist", () => {

857857

allowedKeys: ["anthropic/claude-opus-4-6"],

858858

});

859859860-

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

860+

const options = multiselect.mock.calls.at(0)?.[0]?.options ?? [];

861861

expect(options.map((opt: { value: string }) => opt.value)).toEqual([

862862

"anthropic/claude-opus-4-6",

863863

]);

@@ -895,7 +895,7 @@ describe("promptModelAllowlist", () => {

895895

});

896896

expect(loadModelCatalog).not.toHaveBeenCalled();

897897

expect(

898-

multiselect.mock.calls[0]?.[0]?.options.map((option: { value: string }) => option.value),

898+

multiselect.mock.calls.at(0)?.[0]?.options.map((option: { value: string }) => option.value),

899899

).toEqual(["github-copilot/gpt-5.4"]);

900900

});

901901

@@ -931,7 +931,7 @@ describe("promptModelAllowlist", () => {

931931932932

expect(loadModelCatalog).not.toHaveBeenCalled();

933933

expect(

934-

multiselect.mock.calls[0]?.[0]?.options.map((option: { value: string }) => option.value),

934+

multiselect.mock.calls.at(0)?.[0]?.options.map((option: { value: string }) => option.value),

935935

).toEqual(["minimax/MiniMax-M2.7-highspeed", "zhipu/glm-4.5-air"]);

936936

expect(result.models).toEqual(["minimax/MiniMax-M2.7-highspeed", "zhipu/glm-4.5-air"]);

937937

});

@@ -965,7 +965,7 @@ describe("promptModelAllowlist", () => {

965965

preferredProvider: "openai",

966966

});

967967968-

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

968+

const options = multiselect.mock.calls.at(0)?.[0]?.options ?? [];

969969

expect(options.map((opt: { value: string }) => opt.value)).toEqual([

970970

"openai/gpt-5.5",

971971

"openai/gpt-5.4-mini",

@@ -1003,7 +1003,7 @@ describe("promptModelAllowlist", () => {

1003100310041004

expect(text).not.toHaveBeenCalled();

10051005

expect(

1006-

multiselect.mock.calls[0]?.[0]?.options.map((option: { value: string }) => option.value),

1006+

multiselect.mock.calls.at(0)?.[0]?.options.map((option: { value: string }) => option.value),

10071007

).toEqual(["ollama/kimi-k2.5:cloud", "ollama/gpt-oss:20b-cloud"]);

10081008

expect(result).toEqual({

10091009

models: ["ollama/kimi-k2.5:cloud", "ollama/gpt-oss:20b-cloud"],

@@ -1044,7 +1044,7 @@ describe("promptModelAllowlist", () => {

10441044

const result = await promptModelAllowlist({ config, prompter });

1045104510461046

expect(

1047-

multiselect.mock.calls[0]?.[0]?.options.map((option: { value: string }) => option.value),

1047+

multiselect.mock.calls.at(0)?.[0]?.options.map((option: { value: string }) => option.value),

10481048

).toEqual(["vllm/meta-llama/Meta-Llama-3-8B-Instruct"]);

10491049

expect(result.models).toEqual(["vllm/meta-llama/Meta-Llama-3-8B-Instruct"]);

10501050

});

@@ -1075,7 +1075,7 @@ describe("promptModelAllowlist", () => {

10751075

} as OpenClawConfig;

1076107610771077

const result = await promptModelAllowlist({ config, prompter });

1078-

const call = multiselect.mock.calls[0]?.[0];

1078+

const call = multiselect.mock.calls.at(0)?.[0];

10791079

expect(call?.options.map((option: { value: string }) => option.value)).toEqual([

10801080

"openai/gpt-5.5",

10811081

"anthropic/claude-sonnet-4-6",

@@ -1117,7 +1117,7 @@ describe("promptModelAllowlist", () => {

11171117

} as OpenClawConfig;

1118111811191119

const result = await promptModelAllowlist({ config, prompter });

1120-

const call = multiselect.mock.calls[0]?.[0];

1120+

const call = multiselect.mock.calls.at(0)?.[0];

1121112111221122

expect(call?.initialValues).toEqual([

11231123

"anthropic/claude-opus-4-6",

@@ -1141,7 +1141,7 @@ describe("promptModelAllowlist", () => {

1141114111421142

const result = await promptModelAllowlist({ config, prompter });

114311431144-

expect(text.mock.calls[0]?.[0]?.initialValue).toBe("");

1144+

expect(text.mock.calls.at(0)?.[0]?.initialValue).toBe("");

11451145

expect(result).toStrictEqual({});

11461146

});

11471147

@@ -1166,7 +1166,7 @@ describe("promptModelAllowlist", () => {

1166116611671167

const result = await promptModelAllowlist({ config, prompter });

116811681169-

expect(text.mock.calls[0]?.[0]?.initialValue).toBe(

1169+

expect(text.mock.calls.at(0)?.[0]?.initialValue).toBe(

11701170

"openai/gpt-5.5, anthropic/claude-sonnet-4-6",

11711171

);

11721172

expect(result.models).toEqual(["openai/gpt-5.5", "anthropic/claude-sonnet-4-6"]);

@@ -1210,7 +1210,7 @@ describe("promptModelAllowlist", () => {

12101210

preferredProvider: "openai",

12111211

});

121212121213-

const call = multiselect.mock.calls[0]?.[0];

1213+

const call = multiselect.mock.calls.at(0)?.[0];

12141214

expect(call?.options.map((option: { value: string }) => option.value)).toEqual([

12151215

"openai/gpt-5.5",

12161216

"openai/gpt-5.4",

@@ -1244,7 +1244,7 @@ describe("promptModelAllowlist", () => {

12441244

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

12451245

"openai-codex/gpt-5.5",

12461246

]);

1247-

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

1247+

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

12481248

expect(result).toEqual({

12491249

models: ["openai-codex/gpt-5.5"],

12501250

scopeKeys: ["openai-codex/gpt-5.5"],

@@ -1271,9 +1271,9 @@ describe("promptModelAllowlist", () => {

1271127112721272

expect(loadModelCatalog).not.toHaveBeenCalled();

12731273

expect(

1274-

multiselect.mock.calls[0]?.[0]?.options.map((option: { value: string }) => option.value),

1274+

multiselect.mock.calls.at(0)?.[0]?.options.map((option: { value: string }) => option.value),

12751275

).toEqual(["openai-codex/gpt-5.5", "openai-codex/gpt-5.4"]);

1276-

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

1276+

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

12771277

expect(result).toEqual({

12781278

models: ["openai-codex/gpt-5.5", "openai-codex/gpt-5.4"],

12791279

scopeKeys: ["openai-codex/gpt-5.5", "openai-codex/gpt-5.4"],

@@ -1309,7 +1309,7 @@ describe("runtime model picker visibility", () => {

1309130913101310

await promptModelAllowlist({ config, prompter });

131113111312-

const call = multiselect.mock.calls[0]?.[0];

1312+

const call = multiselect.mock.calls.at(0)?.[0];

13131313

const optionValues = (call?.options ?? []).map((option: { value: string }) => option.value);

13141314

expect(optionValues).toEqual([

13151315

"openai/gpt-5.5",

@@ -1342,10 +1342,10 @@ describe("router model filtering", () => {

13421342

});

13431343

await promptModelAllowlist({ config, prompter: allowlistPrompter });

134413441345-

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

1345+

const defaultOptions = select.mock.calls.at(0)?.[0]?.options ?? [];

13461346

expectRouterModelFiltering(defaultOptions);

134713471348-

const allowlistCall = multiselect.mock.calls[0]?.[0];

1348+

const allowlistCall = multiselect.mock.calls.at(0)?.[0];

13491349

expectRouterModelFiltering(allowlistCall?.options as Array<{ value: string }>);

13501350

expect(allowlistCall?.searchable).toBe(true);

13511351

expect(runProviderPluginAuthMethod).not.toHaveBeenCalled();