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

推荐订阅源

WordPress大学
WordPress大学
H
Help Net Security
Jina AI
Jina AI
V
V2EX
G
Google Developers Blog
B
Blog
GbyAI
GbyAI
U
Unit 42
爱范儿
爱范儿
腾讯CDC
Engineering at Meta
Engineering at Meta
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
宝玉的分享
宝玉的分享
小众软件
小众软件
D
DataBreaches.Net
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - Franky
博客园 - 聂微东
The Cloudflare Blog
I
InfoQ
Microsoft Azure Blog
Microsoft Azure Blog
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
test: guard config cli mock calls · openclaw/openclaw@5ed...
steipete · 2026-05-12 · via Recent Commits to openclaw:main

@@ -143,8 +143,22 @@ async function runValidateJsonAndGetPayload() {

143143

};

144144

}

145145146+

function firstWrittenConfig(): OpenClawConfig {

147+

const written = mockWriteConfigFile.mock.calls.at(0)?.[0];

148+

if (!written) {

149+

throw new Error("expected written config");

150+

}

151+

return written;

152+

}

153+154+

function firstWriteConfigOptions():

155+

| { unsetPaths?: string[][]; explicitSetPaths?: string[][] }

156+

| undefined {

157+

return mockWriteConfigFile.mock.calls.at(0)?.[1];

158+

}

159+146160

function requireWriteOptions(): { unsetPaths?: string[][]; explicitSetPaths?: string[][] } {

147-

const options = mockWriteConfigFile.mock.calls[0]?.[1];

161+

const options = firstWriteConfigOptions();

148162

if (!options) {

149163

throw new Error("expected write options");

150164

}

@@ -251,7 +265,7 @@ describe("config cli", () => {

251265

await runConfigCommand(["config", "set", "gateway.auth.mode", "token"]);

252266253267

expect(mockWriteConfigFile).toHaveBeenCalledTimes(1);

254-

const written = mockWriteConfigFile.mock.calls[0]?.[0];

268+

const written = firstWrittenConfig();

255269

expect(written.gateway?.auth).toEqual({ mode: "token" });

256270

expect(written.gateway?.port).toBe(18789);

257271

expect(written.agents).toEqual(resolved.agents);

@@ -339,7 +353,7 @@ describe("config cli", () => {

339353

await runConfigCommand(["config", "set", "gateway.auth.mode", "token"]);

340354341355

expect(mockWriteConfigFile).toHaveBeenCalledTimes(1);

342-

const written = mockWriteConfigFile.mock.calls[0]?.[0];

356+

const written = firstWrittenConfig();

343357

expect(written).not.toHaveProperty("agents.defaults.model");

344358

expect(written).not.toHaveProperty("agents.defaults.contextWindow");

345359

expect(written).not.toHaveProperty("agents.defaults.maxTokens");

@@ -370,7 +384,7 @@ describe("config cli", () => {

370384

]);

371385372386

expect(mockWriteConfigFile).toHaveBeenCalledTimes(1);

373-

const written = mockWriteConfigFile.mock.calls[0]?.[0];

387+

const written = firstWrittenConfig();

374388

expect(written.agents?.defaults?.model).toBe("openai/gpt-5.4");

375389

expect(written.agents?.defaults?.imageGenerationModel).toEqual({

376390

primary: "openai/gpt-image-1",

@@ -403,7 +417,7 @@ describe("config cli", () => {

403417

]);

404418405419

expect(mockWriteConfigFile).toHaveBeenCalledTimes(1);

406-

const written = mockWriteConfigFile.mock.calls[0]?.[0];

420+

const written = firstWrittenConfig();

407421

expect(written.agents?.defaults?.model).toEqual({

408422

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

409423

fallbacks: ["google/gemini-3.1-pro-preview"],

@@ -433,7 +447,7 @@ describe("config cli", () => {

433447

]);

434448435449

expect(mockWriteConfigFile).toHaveBeenCalledTimes(1);

436-

const written = mockWriteConfigFile.mock.calls[0]?.[0];

450+

const written = firstWrittenConfig();

437451

expect(written.agents?.defaults?.models).toEqual({

438452

"google/gemini-3.1-pro-preview": { alias: "gemini" },

439453

});

@@ -508,7 +522,7 @@ describe("config cli", () => {

508522

]);

509523510524

expect(mockWriteConfigFile).toHaveBeenCalledTimes(1);

511-

const written = mockWriteConfigFile.mock.calls[0]?.[0];

525+

const written = firstWrittenConfig();

512526

expect(written.agents?.defaults?.models).toEqual({

513527

"openai/gpt-5.4": { alias: "GPT" },

514528

"anthropic/claude-sonnet-4-6": { alias: "Sonnet" },

@@ -541,7 +555,7 @@ describe("config cli", () => {

541555

]);

542556543557

expect(mockWriteConfigFile).toHaveBeenCalledTimes(1);

544-

const written = mockWriteConfigFile.mock.calls[0]?.[0];

558+

const written = firstWrittenConfig();

545559

expect(written.models?.providers?.ollama?.models).toEqual([

546560

{ id: "llama3.2", name: "Llama 3.2 latest", contextWindow: 131072 },

547561

{ id: "qwen3", name: "Qwen 3" },

@@ -565,7 +579,7 @@ describe("config cli", () => {

565579

await runConfigCommand(["config", "set", "gateway.auth.mode", "token"]);

566580567581

expect(mockWriteConfigFile).toHaveBeenCalledTimes(1);

568-

const written = mockWriteConfigFile.mock.calls[0]?.[0];

582+

const written = firstWrittenConfig();

569583

expect(written.gateway?.auth).toEqual({

570584

mode: "token",

571585

token: "token-keep",

@@ -589,7 +603,7 @@ describe("config cli", () => {

589603

await runConfigCommand(["config", "set", "gateway.auth.mode", "password"]);

590604591605

expect(mockWriteConfigFile).toHaveBeenCalledTimes(1);

592-

const written = mockWriteConfigFile.mock.calls[0]?.[0];

606+

const written = firstWrittenConfig();

593607

expect(written.gateway?.auth).toEqual({

594608

mode: "password",

595609

password: "password-keep", // pragma: allowlist secret

@@ -617,7 +631,7 @@ describe("config cli", () => {

617631

]);

618632619633

expect(mockWriteConfigFile).toHaveBeenCalledTimes(1);

620-

const written = mockWriteConfigFile.mock.calls[0]?.[0];

634+

const written = firstWrittenConfig();

621635

expect(written.gateway?.auth).toEqual({

622636

mode: "token",

623637

token: "token-keep",

@@ -824,7 +838,7 @@ describe("config cli", () => {

824838

await runConfigCommand(["config", "set", "gateway.auth.mode", "{bad"]);

825839826840

expect(mockWriteConfigFile).toHaveBeenCalledTimes(1);

827-

const written = mockWriteConfigFile.mock.calls[0]?.[0];

841+

const written = firstWrittenConfig();

828842

expect(written.gateway?.auth).toEqual({ mode: "{bad" });

829843

});

830844

@@ -870,7 +884,7 @@ describe("config cli", () => {

870884

]);

871885872886

expect(mockWriteConfigFile).toHaveBeenCalledTimes(1);

873-

const written = mockWriteConfigFile.mock.calls[0]?.[0];

887+

const written = firstWrittenConfig();

874888

expect(written.gateway?.auth).toEqual({ mode: "token" });

875889

});

876890

@@ -926,7 +940,7 @@ describe("config cli", () => {

926940

]);

927941928942

expect(mockWriteConfigFile).toHaveBeenCalledTimes(1);

929-

const written = mockWriteConfigFile.mock.calls[0]?.[0];

943+

const written = firstWrittenConfig();

930944

expect(written.channels?.discord?.token).toEqual({

931945

source: "env",

932946

provider: "default",

@@ -1000,7 +1014,7 @@ describe("config cli", () => {

10001014

]);

1001101510021016

expect(mockWriteConfigFile).toHaveBeenCalledTimes(1);

1003-

const written = mockWriteConfigFile.mock.calls[0]?.[0];

1017+

const written = firstWrittenConfig();

10041018

expect(written.secrets?.providers?.vaultfile).toEqual({

10051019

source: "file",

10061020

path: "/tmp/vault.json",

@@ -1358,7 +1372,7 @@ describe("config cli", () => {

13581372

]);

1359137313601374

expect(mockWriteConfigFile).toHaveBeenCalledTimes(1);

1361-

const written = mockWriteConfigFile.mock.calls[0]?.[0];

1375+

const written = firstWrittenConfig();

13621376

expect(written.channels?.googlechat?.serviceAccountRef).toEqual({

13631377

source: "file",

13641378

provider: "vaultfile",

@@ -1424,7 +1438,7 @@ describe("config cli", () => {

14241438

}

1425143914261440

expect(mockWriteConfigFile).toHaveBeenCalledTimes(1);

1427-

const written = mockWriteConfigFile.mock.calls[0]?.[0];

1441+

const written = firstWrittenConfig();

14281442

expect(written.gateway?.auth).toEqual({ mode: "token" });

14291443

});

14301444

@@ -1467,7 +1481,7 @@ describe("config cli", () => {

14671481

}

1468148214691483

expect(mockWriteConfigFile).toHaveBeenCalledTimes(1);

1470-

const written = mockWriteConfigFile.mock.calls[0]?.[0];

1484+

const written = firstWrittenConfig();

14711485

expect(written.agents?.defaults?.models).toEqual(resolved.agents?.defaults?.models);

14721486

expect(written.agents?.defaults?.model).toEqual(resolved.agents?.defaults?.model);

14731487

expect(written.agents?.defaults?.memorySearch).toEqual({

@@ -1553,7 +1567,7 @@ describe("config cli", () => {

15531567

}

1554156815551569

expect(mockWriteConfigFile).toHaveBeenCalledTimes(1);

1556-

const written = mockWriteConfigFile.mock.calls[0]?.[0] as Record<string, unknown>;

1570+

const written = firstWrittenConfig() as Record<string, unknown>;

15571571

expect(

15581572

((written.agents as Record<string, unknown>).defaults as Record<string, unknown>).models,

15591573

).toEqual({

@@ -1601,7 +1615,7 @@ describe("config cli", () => {

16011615

fs.rmSync(pathname, { force: true });

16021616

}

160316171604-

const written = mockWriteConfigFile.mock.calls[0]?.[0] as Record<string, unknown>;

1618+

const written = firstWrittenConfig() as Record<string, unknown>;

16051619

expect(

16061620

((written.agents as Record<string, unknown>).defaults as Record<string, unknown>).models,

16071621

).toEqual({

@@ -1632,7 +1646,7 @@ describe("config cli", () => {

16321646

fs.rmSync(pathname, { force: true });

16331647

}

163416481635-

const written = mockWriteConfigFile.mock.calls[0]?.[0] as Record<string, unknown>;

1649+

const written = firstWrittenConfig() as Record<string, unknown>;

16361650

expect((written.channels as Record<string, unknown>).slack).toEqual({

16371651

enabled: true,

16381652

mode: "socket",

@@ -1838,7 +1852,7 @@ describe("config cli", () => {

18381852

fs.rmSync(pathname, { force: true });

18391853

}

184018541841-

const written = mockWriteConfigFile.mock.calls[0]?.[0] as Record<string, unknown>;

1855+

const written = firstWrittenConfig() as Record<string, unknown>;

18421856

const channels = (written.channels as Record<string, unknown>).discord as Record<

18431857

string,

18441858

unknown

@@ -2276,14 +2290,14 @@ describe("config cli", () => {

22762290

await runConfigCommand(["config", "unset", "tools.alsoAllow"]);

2277229122782292

expect(mockWriteConfigFile).toHaveBeenCalledTimes(1);

2279-

const written = mockWriteConfigFile.mock.calls[0]?.[0];

2293+

const written = firstWrittenConfig();

22802294

expect(written.tools).not.toHaveProperty("alsoAllow");

22812295

expect(written.agents).not.toHaveProperty("defaults");

22822296

expect(written.agents?.list).toEqual(resolved.agents?.list);

22832297

expect(written.gateway).toEqual(resolved.gateway);

22842298

expect(written.tools?.profile).toBe("coding");

22852299

expect(written.logging).toEqual(resolved.logging);

2286-

expect(mockWriteConfigFile.mock.calls[0]?.[1]).toEqual({

2300+

expect(firstWriteConfigOptions()).toEqual({

22872301

unsetPaths: [["tools", "alsoAllow"]],

22882302

});

22892303

});

@@ -2302,9 +2316,9 @@ describe("config cli", () => {

23022316

await runConfigCommand(["config", "unset", "agents.list[1]"]);

2303231723042318

expect(mockWriteConfigFile).toHaveBeenCalledTimes(1);

2305-

const written = mockWriteConfigFile.mock.calls[0]?.[0];

2319+

const written = firstWrittenConfig();

23062320

expect(written.agents?.list).toEqual([{ id: "agent-a" }, { id: "agent-c" }]);

2307-

expect(mockWriteConfigFile.mock.calls[0]?.[1]).toBeUndefined();

2321+

expect(firstWriteConfigOptions()).toBeUndefined();

23082322

});

2309232323102324

it("preserves write-level unset handling for numeric object keys", async () => {

@@ -2323,13 +2337,13 @@ describe("config cli", () => {

23232337

await runConfigCommand(["config", "unset", "channels.discord.guilds.123"]);

2324233823252339

expect(mockWriteConfigFile).toHaveBeenCalledTimes(1);

2326-

const written = mockWriteConfigFile.mock.calls[0]?.[0] as {

2340+

const written = firstWrittenConfig() as {

23272341

channels?: { discord?: { guilds?: Record<string, unknown> } };

23282342

};

23292343

expect(written.channels?.discord?.guilds).toEqual({

23302344

"456": { channels: ["alerts"] },

23312345

});

2332-

expect(mockWriteConfigFile.mock.calls[0]?.[1]).toEqual({

2346+

expect(firstWriteConfigOptions()).toEqual({

23332347

unsetPaths: [["channels", "discord", "guilds", "123"]],

23342348

});

23352349

});