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

推荐订阅源

IT之家
IT之家
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页
MyScale Blog
MyScale Blog
N
Netflix TechBlog - Medium
I
InfoQ
Jina AI
Jina AI
Martin Fowler
Martin Fowler
Recent Announcements
Recent Announcements
量子位
月光博客
月光博客
罗磊的独立博客
雷峰网
雷峰网
The Cloudflare Blog
V
V2EX
小众软件
小众软件
人人都是产品经理
人人都是产品经理
博客园 - Franky
T
Tailwind CSS Blog
有赞技术团队
有赞技术团队
S
SegmentFault 最新的问题

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 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 test: merge chat context notice checks · openclaw/openclaw@5c2f4af 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: merge config view browser checks · openclaw/opencla...
steipete · 2026-04-18 · via Recent Commits to openclaw:main

@@ -102,86 +102,59 @@ describe("config view", () => {

102102

resetRawRevealState();

103103

});

104104105-

it("allows save when form is unsafe", () => {

105+

it("updates save/apply disabled state from form safety and raw dirtiness", () => {

106106

const container = document.createElement("div");

107-

render(

108-

renderConfig({

109-

...baseProps(),

110-

schema: {

111-

type: "object",

112-

properties: {

113-

mixed: {

114-

anyOf: [{ type: "string" }, { type: "object", properties: {} }],

115-

},

107+108+

const renderCase = (overrides: Partial<ConfigProps>) =>

109+

render(renderConfig({ ...baseProps(), ...overrides }), container);

110+111+

renderCase({

112+

schema: {

113+

type: "object",

114+

properties: {

115+

mixed: {

116+

anyOf: [{ type: "string" }, { type: "object", properties: {} }],

116117

},

117118

},

118-

schemaLoading: false,

119-

uiHints: {},

120-

formMode: "form",

121-

formValue: { mixed: "x" },

122-

}),

123-

container,

124-

);

125-126-

const saveButton = Array.from(container.querySelectorAll("button")).find(

127-

(btn) => btn.textContent?.trim() === "Save",

128-

);

119+

},

120+

schemaLoading: false,

121+

uiHints: {},

122+

formMode: "form",

123+

formValue: { mixed: "x" },

124+

});

125+

let { saveButton, applyButton } = findActionButtons(container);

129126

expect(saveButton).not.toBeUndefined();

130127

expect(saveButton?.disabled).toBe(false);

131-

});

132-133-

it("disables save when schema is missing", () => {

134-

const container = document.createElement("div");

135-

render(

136-

renderConfig({

137-

...baseProps(),

138-

schema: null,

139-

formMode: "form",

140-

formValue: { gateway: { mode: "local" } },

141-

originalValue: {},

142-

}),

143-

container,

144-

);

128+

expect(applyButton?.disabled).toBe(false);

145129146-

const saveButton = Array.from(container.querySelectorAll("button")).find(

147-

(btn) => btn.textContent?.trim() === "Save",

148-

);

130+

renderCase({

131+

schema: null,

132+

formMode: "form",

133+

formValue: { gateway: { mode: "local" } },

134+

originalValue: {},

135+

});

136+

({ saveButton, applyButton } = findActionButtons(container));

149137

expect(saveButton).not.toBeUndefined();

150138

expect(saveButton?.disabled).toBe(true);

151-

});

152-153-

it("disables save and apply when raw is unchanged", () => {

154-

const container = document.createElement("div");

155-

render(

156-

renderConfig({

157-

...baseProps(),

158-

formMode: "raw",

159-

raw: "{\n}\n",

160-

originalRaw: "{\n}\n",

161-

}),

162-

container,

163-

);

139+

expect(applyButton?.disabled).toBe(true);

164140165-

const { saveButton, applyButton } = findActionButtons(container);

141+

renderCase({

142+

formMode: "raw",

143+

raw: "{\n}\n",

144+

originalRaw: "{\n}\n",

145+

});

146+

({ saveButton, applyButton } = findActionButtons(container));

166147

expect(saveButton).not.toBeUndefined();

167148

expect(applyButton).not.toBeUndefined();

168149

expect(saveButton?.disabled).toBe(true);

169150

expect(applyButton?.disabled).toBe(true);

170-

});

171-172-

it("enables save and apply when raw changes", () => {

173-

const container = document.createElement("div");

174-

render(

175-

renderConfig({

176-

...baseProps(),

177-

formMode: "raw",

178-

raw: '{\n gateway: { mode: "local" }\n}\n',

179-

originalRaw: "{\n}\n",

180-

}),

181-

container,

182-

);

183151184-

const { saveButton, applyButton } = findActionButtons(container);

152+

renderCase({

153+

formMode: "raw",

154+

raw: '{\n gateway: { mode: "local" }\n}\n',

155+

originalRaw: "{\n}\n",

156+

});

157+

({ saveButton, applyButton } = findActionButtons(container));

185158

expect(saveButton).not.toBeUndefined();

186159

expect(applyButton).not.toBeUndefined();

187160

expect(saveButton?.disabled).toBe(false);

@@ -245,7 +218,7 @@ describe("config view", () => {

245218

expect(onFormModeChange).not.toHaveBeenCalled();

246219

});

247220248-

it("switches sections from the sidebar", () => {

221+

it("renders section tabs and switches sections from the sidebar", () => {

249222

const container = document.createElement("div");

250223

const onSectionChange = vi.fn();

251224

render(

@@ -263,6 +236,13 @@ describe("config view", () => {

263236

container,

264237

);

265238239+

const tabs = Array.from(container.querySelectorAll(".config-top-tabs__tab")).map((tab) =>

240+

tab.textContent?.trim(),

241+

);

242+

expect(tabs).toContain("Settings");

243+

expect(tabs).toContain("Agents");

244+

expect(tabs).toContain("Gateway");

245+266246

const btn = Array.from(container.querySelectorAll("button")).find(

267247

(b) => b.textContent?.trim() === "Gateway",

268248

);

@@ -329,17 +309,22 @@ describe("config view", () => {

329309

expect(content.scrollLeft).toBe(0);

330310

});

331311332-

it("wires search input to onSearchChange", () => {

312+

it("renders and wires the search field controls", () => {

333313

const container = document.createElement("div");

334314

const onSearchChange = vi.fn();

335315

render(

336316

renderConfig({

337317

...baseProps(),

318+

searchQuery: "gateway",

338319

onSearchChange,

339320

}),

340321

container,

341322

);

342323324+

const icon = container.querySelector<SVGElement>(".config-search__icon");

325+

expect(icon).not.toBeNull();

326+

expect(icon?.closest(".config-search__input-row")).not.toBeNull();

327+343328

const input = container.querySelector(".config-search__input");

344329

expect(input).not.toBeNull();

345330

if (!input) {

@@ -348,60 +333,15 @@ describe("config view", () => {

348333

(input as HTMLInputElement).value = "gateway";

349334

input.dispatchEvent(new Event("input", { bubbles: true }));

350335

expect(onSearchChange).toHaveBeenCalledWith("gateway");

351-

});

352-353-

it("renders the top search icon inside the search input row", () => {

354-

const container = document.createElement("div");

355-

render(renderConfig(baseProps()), container);

356-357-

const icon = container.querySelector<SVGElement>(".config-search__icon");

358-

expect(icon).not.toBeNull();

359-

expect(icon?.closest(".config-search__input-row")).not.toBeNull();

360-

});

361-362-

it("renders top tabs for root and available sections", () => {

363-

const container = document.createElement("div");

364-

render(

365-

renderConfig({

366-

...baseProps(),

367-

schema: {

368-

type: "object",

369-

properties: {

370-

gateway: { type: "object", properties: {} },

371-

agents: { type: "object", properties: {} },

372-

},

373-

},

374-

}),

375-

container,

376-

);

377-378-

const tabs = Array.from(container.querySelectorAll(".config-top-tabs__tab")).map((tab) =>

379-

tab.textContent?.trim(),

380-

);

381-

expect(tabs).toContain("Settings");

382-

expect(tabs).toContain("Agents");

383-

expect(tabs).toContain("Gateway");

384-

});

385-386-

it("clears the active search query", () => {

387-

const container = document.createElement("div");

388-

const onSearchChange = vi.fn();

389-

render(

390-

renderConfig({

391-

...baseProps(),

392-

searchQuery: "gateway",

393-

onSearchChange,

394-

}),

395-

container,

396-

);

397336398337

const clearButton = container.querySelector<HTMLButtonElement>(".config-search__clear");

399338

expect(clearButton).toBeTruthy();

400339

clearButton?.click();

401340

expect(onSearchChange).toHaveBeenCalledWith("");

402341

});

403342404-

it("keeps sensitive raw config hidden until reveal", () => {

343+

it("keeps sensitive raw config hidden until reveal before editing", () => {

344+

const onRawChange = vi.fn();

405345

const { container } = renderConfigView({

406346

formMode: "raw",

407347

raw: '{\n "openai": { "apiKey": "supersecret" }\n}\n',

@@ -411,28 +351,14 @@ describe("config view", () => {

411351

apiKey: "supersecret",

412352

},

413353

},

354+

onRawChange,

414355

});

415356416357

const text = normalizedText(container);

417358

expect(text).toContain("1 secret redacted");

418359

expect(text).toContain("Use the reveal button above to edit the raw config.");

419360

expect(text).not.toContain("supersecret");

420361

expect(container.querySelector("textarea")).toBeNull();

421-

});

422-423-

it("reveals sensitive raw config before editing", () => {

424-

const onRawChange = vi.fn();

425-

const { container } = renderConfigView({

426-

formMode: "raw",

427-

raw: '{\n "openai": { "apiKey": "supersecret" }\n}\n',

428-

originalRaw: '{\n "openai": { "apiKey": "supersecret" }\n}\n',

429-

formValue: {

430-

openai: {

431-

apiKey: "supersecret",

432-

},

433-

},

434-

onRawChange,

435-

});

436362437363

const revealButton = container.querySelector<HTMLButtonElement>(".config-raw-toggle");

438364

expect(revealButton).toBeTruthy();