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

推荐订阅源

J
Java Code Geeks
月光博客
月光博客
D
DataBreaches.Net
云风的 BLOG
云风的 BLOG
F
Fortinet All Blogs
T
The Blog of Author Tim Ferriss
Stack Overflow Blog
Stack Overflow Blog
Blog — PlanetScale
Blog — PlanetScale
aimingoo的专栏
aimingoo的专栏
U
Unit 42
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MyScale Blog
MyScale Blog
T
Tailwind CSS Blog
N
Netflix TechBlog - Medium
B
Blog
博客园_首页
G
Google Developers Blog
Recent Announcements
Recent Announcements
博客园 - 【当耐特】
P
Proofpoint News Feed
博客园 - 司徒正美
Hugging Face - Blog
Hugging Face - Blog
MongoDB | Blog
MongoDB | Blog
Last Week in AI
Last Week in AI

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

@@ -201,6 +201,34 @@ function setupBaseWizardState(config: OpenClawConfig = {}) {

201201

});

202202

}

203203204+

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

205+

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

206+

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

207+

return value as Record<string, unknown>;

208+

}

209+210+

function requireWriteConfig(callIndex = 0) {

211+

const call = mocks.writeConfigFile.mock.calls.at(callIndex);

212+

expect(call, "writeConfigFile call").toBeDefined();

213+

return requireRecord(call?.[0], "written config");

214+

}

215+216+

function getGateway(config: Record<string, unknown>) {

217+

return requireRecord(config.gateway, "gateway config");

218+

}

219+220+

function getWebSearch(config: Record<string, unknown>) {

221+

const tools = requireRecord(config.tools, "tools config");

222+

const web = requireRecord(tools.web, "web config");

223+

return requireRecord(web.search, "web search config");

224+

}

225+226+

function getPluginEntry(config: Record<string, unknown>, pluginId: string) {

227+

const plugins = requireRecord(config.plugins, "plugins config");

228+

const entries = requireRecord(plugins.entries, "plugin entries");

229+

return requireRecord(entries[pluginId], `${pluginId} entry`);

230+

}

231+204232

function queueWizardPrompts(params: { select: string[]; confirm: boolean[]; text?: string }) {

205233

const selectQueue = [...params.select];

206234

const confirmQueue = [...params.confirm];

@@ -245,11 +273,7 @@ describe("runConfigureWizard", () => {

245273246274

await runConfigureWizard({ command: "configure" }, createRuntime());

247275248-

expect(mocks.writeConfigFile).toHaveBeenCalledWith(

249-

expect.objectContaining({

250-

gateway: expect.objectContaining({ mode: "local" }),

251-

}),

252-

);

276+

expect(getGateway(requireWriteConfig()).mode).toBe("local");

253277

});

254278

it("keeps startup gateway hint probes bounded", async () => {

255279

setupBaseWizardState({

@@ -268,19 +292,16 @@ describe("runConfigureWizard", () => {

268292269293

await runConfigureWizard({ command: "configure" }, createRuntime());

270294271-

expect(mocks.probeGatewayReachable).toHaveBeenCalledWith(

272-

expect.objectContaining({

273-

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

274-

timeoutMs: 300,

275-

}),

295+

const probeRequests = mocks.probeGatewayReachable.mock.calls.map(([request]) =>

296+

requireRecord(request, "probe request"),

276297

);

277-

expect(mocks.probeGatewayReachable).toHaveBeenCalledWith(

278-

expect.objectContaining({

279-

url: "wss://gateway.example.test",

280-

token: "token",

281-

timeoutMs: 300,

282-

}),

298+

const localProbe = probeRequests.find((request) => request.url === "ws://127.0.0.1:18789");

299+

const remoteProbe = probeRequests.find(

300+

(request) => request.url === "wss://gateway.example.test",

283301

);

302+

expect(localProbe?.timeoutMs).toBe(300);

303+

expect(remoteProbe?.token).toBe("token");

304+

expect(remoteProbe?.timeoutMs).toBe(300);

284305

});

285306286307

it("exits with code 1 when configure wizard is cancelled", async () => {

@@ -308,34 +329,17 @@ describe("runConfigureWizard", () => {

308329309330

await runWebConfigureWizard();

310331311-

expect(mocks.setupSearch).toHaveBeenCalledWith(

312-

expect.objectContaining({

313-

gateway: expect.objectContaining({ mode: "local" }),

314-

}),

315-

expect.anything(),

316-

expect.anything(),

317-

);

318-

expect(mocks.writeConfigFile).toHaveBeenCalledWith(

319-

expect.objectContaining({

320-

tools: expect.objectContaining({

321-

web: expect.objectContaining({

322-

search: expect.objectContaining({

323-

provider: "firecrawl",

324-

enabled: true,

325-

}),

326-

}),

327-

}),

328-

plugins: expect.objectContaining({

329-

entries: expect.objectContaining({

330-

firecrawl: expect.objectContaining({

331-

enabled: true,

332-

config: expect.objectContaining({

333-

webSearch: expect.objectContaining({ apiKey: "fc-entered-key" }),

334-

}),

335-

}),

336-

}),

337-

}),

338-

}),

332+

const setupConfig = requireRecord(mocks.setupSearch.mock.calls[0]?.[0], "setupSearch config");

333+

expect(getGateway(setupConfig).mode).toBe("local");

334+

const written = requireWriteConfig();

335+

const search = getWebSearch(written);

336+

expect(search.provider).toBe("firecrawl");

337+

expect(search.enabled).toBe(true);

338+

const firecrawl = getPluginEntry(written, "firecrawl");

339+

expect(firecrawl.enabled).toBe(true);

340+

const firecrawlConfig = requireRecord(firecrawl.config, "firecrawl config");

341+

expect(requireRecord(firecrawlConfig.webSearch, "firecrawl web search").apiKey).toBe(

342+

"fc-entered-key",

339343

);

340344

expect(mocks.setupSearch).toHaveBeenCalledOnce();

341345

});

@@ -356,17 +360,7 @@ describe("runConfigureWizard", () => {

356360

),

357361

"Web search",

358362

);

359-

expect(mocks.writeConfigFile).toHaveBeenCalledWith(

360-

expect.objectContaining({

361-

tools: expect.objectContaining({

362-

web: expect.objectContaining({

363-

search: expect.objectContaining({

364-

enabled: false,

365-

}),

366-

}),

367-

}),

368-

}),

369-

);

363+

expect(getWebSearch(requireWriteConfig()).enabled).toBe(false);

370364

});

371365372366

it("does not load managed search provider options when web search is disabled", async () => {

@@ -378,12 +372,12 @@ describe("runConfigureWizard", () => {

378372379373

await runWebConfigureWizard();

380374381-

expect(mocks.resolvePluginContributionOwners).toHaveBeenCalledWith(

382-

expect.objectContaining({

383-

contribution: "contracts",

384-

matches: "webSearchProviders",

385-

}),

375+

const ownersRequest = requireRecord(

376+

mocks.resolvePluginContributionOwners.mock.calls[0]?.[0],

377+

"plugin owner request",

386378

);

379+

expect(ownersRequest.contribution).toBe("contracts");

380+

expect(ownersRequest.matches).toBe("webSearchProviders");

387381

expect(mocks.resolveSearchProviderOptions).not.toHaveBeenCalled();

388382

expect(mocks.setupSearch).not.toHaveBeenCalled();

389383

});

@@ -397,17 +391,12 @@ describe("runConfigureWizard", () => {

397391398392

await runConfigureWizard({ command: "configure", sections: ["channels"] }, createRuntime());

399393400-

expect(mocks.setupChannels).toHaveBeenCalledWith(

401-

expect.objectContaining({

402-

gateway: expect.objectContaining({ mode: "local" }),

403-

}),

404-

expect.anything(),

405-

expect.anything(),

406-

expect.objectContaining({

407-

deferStatusUntilSelection: true,

408-

skipStatusNote: true,

409-

}),

410-

);

394+

const setupChannelsCall = mocks.setupChannels.mock.calls[0] as Array<unknown> | undefined;

395+

const setupChannelsConfig = requireRecord(setupChannelsCall?.[0], "setupChannels config");

396+

expect(getGateway(setupChannelsConfig).mode).toBe("local");

397+

const setupChannelsOptions = requireRecord(setupChannelsCall?.[3], "setupChannels options");

398+

expect(setupChannelsOptions.deferStatusUntilSelection).toBe(true);

399+

expect(setupChannelsOptions.skipStatusNote).toBe(true);

411400

});

412401413402

it("still supports keyless web search providers through the shared setup flow", async () => {

@@ -459,21 +448,11 @@ describe("runConfigureWizard", () => {

459448460449

await runWebConfigureWizard();

461450462-

expect(mocks.writeConfigFile).toHaveBeenCalledWith(

463-

expect.objectContaining({

464-

tools: expect.objectContaining({

465-

web: expect.objectContaining({

466-

search: expect.objectContaining({

467-

enabled: true,

468-

openaiCodex: expect.objectContaining({

469-

enabled: true,

470-

mode: "cached",

471-

}),

472-

}),

473-

}),

474-

}),

475-

}),

476-

);

451+

const search = getWebSearch(requireWriteConfig());

452+

expect(search.enabled).toBe(true);

453+

const codexSearch = requireRecord(search.openaiCodex, "Codex native search");

454+

expect(codexSearch.enabled).toBe(true);

455+

expect(codexSearch.mode).toBe("cached");

477456

expect(mocks.setupSearch).not.toHaveBeenCalled();

478457

});

479458

@@ -506,21 +485,11 @@ describe("runConfigureWizard", () => {

506485507486

await runWebConfigureWizard();

508487509-

expect(mocks.writeConfigFile).toHaveBeenCalledWith(

510-

expect.objectContaining({

511-

tools: expect.objectContaining({

512-

web: expect.objectContaining({

513-

search: expect.objectContaining({

514-

enabled: true,

515-

openaiCodex: expect.objectContaining({

516-

enabled: false,

517-

mode: "live",

518-

}),

519-

}),

520-

}),

521-

}),

522-

}),

523-

);

488+

const search = getWebSearch(requireWriteConfig());

489+

expect(search.enabled).toBe(true);

490+

const codexSearch = requireRecord(search.openaiCodex, "Codex native search");

491+

expect(codexSearch.enabled).toBe(false);

492+

expect(codexSearch.mode).toBe("live");

524493

expect(mocks.setupSearch).toHaveBeenCalledOnce();

525494

});

526495

@@ -623,23 +592,13 @@ describe("runConfigureWizard", () => {

623592

const retryCall = mocks.replaceConfigFile.mock.calls[1][0] as {

624593

nextConfig: Record<string, unknown>;

625594

};

626-

expect(retryCall.nextConfig).toMatchObject({

627-

agents: {

628-

defaults: {

629-

workspace: expect.stringContaining("/.openclaw/workspace"),

630-

},

631-

},

632-

plugins: {

633-

entries: {

634-

"github-copilot": {

635-

enabled: false,

636-

config: {

637-

region: "us-east-1",

638-

accessToken: "plugin-wrote-this",

639-

},

640-

},

641-

},

642-

},

643-

});

595+

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

596+

const defaults = requireRecord(agents.defaults, "agent defaults");

597+

expect(String(defaults.workspace)).toContain("/.openclaw/workspace");

598+

const githubCopilot = getPluginEntry(retryCall.nextConfig, "github-copilot");

599+

expect(githubCopilot.enabled).toBe(false);

600+

const pluginConfig = requireRecord(githubCopilot.config, "github-copilot config");

601+

expect(pluginConfig.region).toBe("us-east-1");

602+

expect(pluginConfig.accessToken).toBe("plugin-wrote-this");

644603

});

645604

});