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

推荐订阅源

MyScale Blog
MyScale Blog
Apple Machine Learning Research
Apple Machine Learning Research
H
Help Net Security
雷峰网
雷峰网
V
Visual Studio Blog
G
Google Developers Blog
Microsoft Azure Blog
Microsoft Azure Blog
Hugging Face - Blog
Hugging Face - Blog
爱范儿
爱范儿
IT之家
IT之家
Engineering at Meta
Engineering at Meta
Microsoft Security Blog
Microsoft Security Blog
aimingoo的专栏
aimingoo的专栏
大猫的无限游戏
大猫的无限游戏
M
MIT News - Artificial intelligence
月光博客
月光博客
A
About on SuperTechFans
B
Blog RSS Feed
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
Blog — PlanetScale
Blog — PlanetScale

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

@@ -152,6 +152,38 @@ function getWizardNoteCalls(note: WizardPrompter["note"]) {

152152

return (note as unknown as { mock: { calls: unknown[][] } }).mock.calls;

153153

}

154154155+

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

156+

if (typeof value !== "object" || value === null || Array.isArray(value)) {

157+

throw new Error(`expected ${label} to be an object`);

158+

}

159+

return value as Record<string, unknown>;

160+

}

161+162+

function expectRecordFields(

163+

value: unknown,

164+

expected: Record<string, unknown>,

165+

label: string,

166+

): Record<string, unknown> {

167+

const record = requireRecord(value, label);

168+

for (const [key, expectedValue] of Object.entries(expected)) {

169+

expect(record[key], `${label}.${key}`).toEqual(expectedValue);

170+

}

171+

return record;

172+

}

173+174+

function getMockCallArg(

175+

mock: { mock: { calls: readonly unknown[][] } },

176+

callIndex: number,

177+

argIndex: number,

178+

label: string,

179+

): unknown {

180+

const call = (mock.mock.calls as unknown[][])[callIndex];

181+

if (!call) {

182+

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

183+

}

184+

return call[argIndex];

185+

}

186+155187

vi.mock("../commands/onboard-channels.js", () => ({

156188

setupChannels,

157189

}));

@@ -379,8 +411,10 @@ describe("runSetupWizard", () => {

379411

prompter,

380412

),

381413

).resolves.toBeUndefined();

382-

expect(resolvePreferredProviderForAuthChoice).toHaveBeenCalledWith(

383-

expect.objectContaining({ choice: "ollama" }),

414+

expectRecordFields(

415+

getMockCallArg(resolvePreferredProviderForAuthChoice, 0, 0, "preferred provider lookup"),

416+

{ choice: "ollama" },

417+

"preferred provider lookup params",

384418

);

385419

expect(resolvePluginProvidersRuntime).toHaveBeenCalled();

386420

setupChannels.mockClear();

@@ -488,23 +522,31 @@ describe("runSetupWizard", () => {

488522

prompter,

489523

);

490524491-

expect(replaceConfigFile).toHaveBeenCalledWith(

492-

expect.objectContaining({

493-

nextConfig: expect.objectContaining({

494-

agents: expect.objectContaining({

495-

defaults: expect.objectContaining({

496-

skipBootstrap: true,

497-

workspace: workspaceDir,

498-

}),

499-

}),

500-

}),

501-

writeOptions: expect.objectContaining({ allowConfigSizeDrop: true }),

502-

}),

525+

const replaceParams = requireRecord(

526+

getMockCallArg(replaceConfigFile, 0, 0, "config replacement"),

527+

"config replacement params",

503528

);

504-

expect(ensureWorkspaceAndSessions).toHaveBeenCalledWith(

505-

workspaceDir,

506-

runtime,

507-

expect.objectContaining({ skipBootstrap: true }),

529+

const nextConfig = requireRecord(replaceParams.nextConfig, "next config");

530+

const agents = requireRecord(nextConfig.agents, "next config agents");

531+

expectRecordFields(

532+

requireRecord(agents.defaults, "next config agent defaults"),

533+

{

534+

skipBootstrap: true,

535+

workspace: workspaceDir,

536+

},

537+

"next config agent defaults",

538+

);

539+

expectRecordFields(

540+

replaceParams.writeOptions,

541+

{ allowConfigSizeDrop: true },

542+

"config replacement write options",

543+

);

544+

expect(getMockCallArg(ensureWorkspaceAndSessions, 0, 0, "workspace setup")).toBe(workspaceDir);

545+

expect(getMockCallArg(ensureWorkspaceAndSessions, 0, 1, "workspace setup")).toBe(runtime);

546+

expectRecordFields(

547+

getMockCallArg(ensureWorkspaceAndSessions, 0, 2, "workspace setup"),

548+

{ skipBootstrap: true },

549+

"workspace setup options",

508550

);

509551

});

510552

@@ -569,12 +611,14 @@ describe("runSetupWizard", () => {

569611

prompter,

570612

);

571613572-

expect(runTui).toHaveBeenCalledWith(

573-

expect.objectContaining({

614+

expectRecordFields(

615+

getMockCallArg(runTui, 0, 0, "tui launch"),

616+

{

574617

local: true,

575618

deliver: false,

576619

message: params.expectedMessage,

577-

}),

620+

},

621+

"tui launch options",

578622

);

579623

}

580624

@@ -651,14 +695,16 @@ describe("runSetupWizard", () => {

651695

prompter,

652696

);

653697654-

expect(setupChannels).toHaveBeenCalledWith(

655-

expect.anything(),

656-

expect.anything(),

657-

expect.anything(),

658-

expect.objectContaining({

698+

expect(getMockCallArg(setupChannels, 0, 0, "channel setup")).not.toBeNull();

699+

expect(getMockCallArg(setupChannels, 0, 1, "channel setup")).not.toBeNull();

700+

expect(getMockCallArg(setupChannels, 0, 2, "channel setup")).not.toBeNull();

701+

expectRecordFields(

702+

getMockCallArg(setupChannels, 0, 3, "channel setup"),

703+

{

659704

deferStatusUntilSelection: true,

660705

quickstartDefaults: true,

661-

}),

706+

},

707+

"channel setup options",

662708

);

663709

});

664710

@@ -710,16 +756,20 @@ describe("runSetupWizard", () => {

710756

prompter,

711757

);

712758713-

expect(promptDefaultModel).toHaveBeenCalledWith(

714-

expect.objectContaining({

759+

expectRecordFields(

760+

getMockCallArg(promptDefaultModel, 0, 0, "default model prompt"),

761+

{

715762

allowKeep: false,

716763

browseCatalogOnDemand: true,

717-

}),

764+

},

765+

"default model prompt params",

718766

);

719-

expect(warnIfModelConfigLooksOff).toHaveBeenCalledWith(

720-

expect.anything(),

721-

expect.anything(),

722-

expect.objectContaining({ validateCatalog: false }),

767+

expect(getMockCallArg(warnIfModelConfigLooksOff, 0, 0, "model warning")).not.toBeNull();

768+

expect(getMockCallArg(warnIfModelConfigLooksOff, 0, 1, "model warning")).not.toBeNull();

769+

expectRecordFields(

770+

getMockCallArg(warnIfModelConfigLooksOff, 0, 2, "model warning"),

771+

{ validateCatalog: false },

772+

"model warning options",

723773

);

724774

});

725775

@@ -774,9 +824,9 @@ describe("runSetupWizard", () => {

774824775825

expect(promptAuthChoiceGrouped).toHaveBeenCalledTimes(2);

776826

expect(applyAuthChoice).toHaveBeenCalledTimes(2);

777-

expect(applyAuthChoice).toHaveBeenNthCalledWith(

778-

2,

779-

expect.objectContaining({

827+

expectRecordFields(

828+

getMockCallArg(applyAuthChoice, 1, 0, "retry auth choice"),

829+

{

780830

authChoice: "demo-provider-two",

781831

config: {

782832

plugins: {

@@ -787,7 +837,8 @@ describe("runSetupWizard", () => {

787837

},

788838

},

789839

},

790-

}),

840+

},

841+

"retry auth choice params",

791842

);

792843

});

793844

@@ -914,11 +965,13 @@ describe("runSetupWizard", () => {

914965

}

915966

}

916967917-

expect(probeGatewayReachable).toHaveBeenCalledWith(

918-

expect.objectContaining({

968+

expectRecordFields(

969+

getMockCallArg(probeGatewayReachable, 0, 0, "gateway probe"),

970+

{

919971

url: "ws://127.0.0.1:18789",

920972

password: "gateway-ref-password", // pragma: allowlist secret

921-

}),

973+

},

974+

"gateway probe params",

922975

);

923976

});

924977

@@ -945,10 +998,12 @@ describe("runSetupWizard", () => {

945998

prompter,

946999

);

9471000948-

expect(configureGatewayForSetup).toHaveBeenCalledWith(

949-

expect.objectContaining({

1001+

expectRecordFields(

1002+

getMockCallArg(configureGatewayForSetup, 0, 0, "gateway setup"),

1003+

{

9501004

secretInputMode: "ref", // pragma: allowlist secret

951-

}),

1005+

},

1006+

"gateway setup params",

9521007

);

9531008

});

9541009

@@ -1038,13 +1093,19 @@ describe("runSetupWizard", () => {

10381093

prompter,

10391094

);

104010951041-

expect(resolvePluginSetupProvider).toHaveBeenCalledWith(

1042-

expect.objectContaining({

1096+

expectRecordFields(

1097+

getMockCallArg(resolvePluginSetupProvider, 0, 0, "plugin setup provider"),

1098+

{

10431099

provider: "openai-codex",

10441100

pluginIds: ["openai"],

1045-

}),

1101+

},

1102+

"plugin setup provider params",

10461103

);

10471104

expect(resolvePluginProvidersRuntime).not.toHaveBeenCalled();

1048-

expect(promptDefaultModel).toHaveBeenCalledWith(expect.objectContaining({ allowKeep: false }));

1105+

expectRecordFields(

1106+

getMockCallArg(promptDefaultModel, 0, 0, "default model prompt"),

1107+

{ allowKeep: false },

1108+

"default model prompt params",

1109+

);

10491110

});

10501111

});