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

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
J
Java Code Geeks
Blog — PlanetScale
Blog — PlanetScale
F
Fortinet All Blogs
腾讯CDC
大猫的无限游戏
大猫的无限游戏
Jina AI
Jina AI
WordPress大学
WordPress大学
雷峰网
雷峰网
小众软件
小众软件
D
DataBreaches.Net
V
Visual Studio Blog
博客园 - Franky
IT之家
IT之家
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog RSS Feed
博客园 - 聂微东
T
Tailwind CSS Blog
有赞技术团队
有赞技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Security Blog
Microsoft Security 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: merge dreaming view UI cases · openclaw/openclaw@47...
steipete · 2026-04-18 · via Recent Commits to openclaw:main

@@ -198,113 +198,66 @@ function renderInto(props: DreamingProps): HTMLDivElement {

198198

}

199199200200

describe("dreaming view", () => {

201-

it("renders the sleeping lobster SVG", () => {

202-

const container = renderInto(buildProps());

201+

it("renders the active dream scene chrome and status", () => {

202+

const container = renderInto(buildProps({ dreamingOf: "reindexing old chats\u2026" }));

203+203204

const svg = container.querySelector(".dreams__lobster svg");

204205

expect(svg).not.toBeNull();

205-

});

206206207-

it("shows three floating Z elements", () => {

208-

const container = renderInto(buildProps());

209207

const zs = container.querySelectorAll(".dreams__z");

210208

expect(zs.length).toBe(3);

211-

});

212209213-

it("renders stars", () => {

214-

const container = renderInto(buildProps());

215210

const stars = container.querySelectorAll(".dreams__star");

216211

expect(stars.length).toBe(12);

217-

});

218212219-

it("renders moon", () => {

220-

const container = renderInto(buildProps());

221213

expect(container.querySelector(".dreams__moon")).not.toBeNull();

222-

});

223214224-

it("displays sleep phase cards", () => {

225-

const container = renderInto(buildProps());

226215

const phases = [...container.querySelectorAll(".dreams__phase-name")].map((node) =>

227216

node.textContent?.trim(),

228217

);

229218

expect(phases).toEqual(["Light", "Deep", "Rem"]);

230219

expect(container.querySelectorAll(".dreams__phase").length).toBe(3);

231220

expect(container.querySelector(".dreams__phase--off")?.textContent).toContain("off");

232-

});

233-234-

it("shows unknown phase status when phase data is unavailable", () => {

235-

const container = renderInto(buildProps({ phases: undefined }));

236-

const statuses = [...container.querySelectorAll(".dreams__phase-next")].map((node) =>

237-

node.textContent?.trim(),

238-

);

239-

expect(statuses).toEqual(["—", "—", "—"]);

240-

expect(container.querySelectorAll(".dreams__phase--off").length).toBe(0);

241-

});

242221243-

it("keeps maintenance controls out of the scene tab", () => {

244-

const container = renderInto(buildProps());

245222

const buttons = [...container.querySelectorAll("button")].map((node) =>

246223

node.textContent?.trim(),

247224

);

248225

expect(buttons).not.toContain("Backfill");

249226

expect(buttons).not.toContain("Reset");

250227

expect(buttons).not.toContain("Clear Replayed");

251-

});

252-253-

it("shows dream bubble when active", () => {

254-

const container = renderInto(buildProps({ active: true }));

255228

expect(container.querySelector(".dreams__bubble")).not.toBeNull();

256-

});

257-258-

it("hides dream bubble when idle", () => {

259-

const container = renderInto(buildProps({ active: false }));

260-

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

261-

});

262-263-

it("shows custom dreamingOf text when provided", () => {

264-

const container = renderInto(buildProps({ dreamingOf: "reindexing old chats\u2026" }));

265229

const text = container.querySelector(".dreams__bubble-text");

266230

expect(text?.textContent).toBe("reindexing old chats\u2026");

267-

});

268-269-

it("shows active status label when active", () => {

270-

const container = renderInto(buildProps({ active: true }));

271231

const label = container.querySelector(".dreams__status-label");

272232

expect(label?.textContent).toBe("Dreaming Active");

273-

});

274-275-

it("shows idle status label when inactive", () => {

276-

const container = renderInto(buildProps({ active: false }));

277-

const label = container.querySelector(".dreams__status-label");

278-

expect(label?.textContent).toBe("Dreaming Idle");

279-

});

280-281-

it("applies idle class when not active", () => {

282-

const container = renderInto(buildProps({ active: false }));

283-

expect(container.querySelector(".dreams--idle")).not.toBeNull();

284-

});

285-286-

it("shows next cycle info when provided", () => {

287-

const container = renderInto(buildProps({ nextCycle: "4:00 AM" }));

288233

const detail = container.querySelector(".dreams__status-detail span");

289234

expect(detail?.textContent).toContain("4:00 AM");

290-

});

291-292-

it("renders control error when present", () => {

293-

const container = renderInto(buildProps({ statusError: "patch failed" }));

294-

expect(container.querySelector(".dreams__controls-error")?.textContent).toContain(

295-

"patch failed",

296-

);

297-

});

298-299-

it("renders sub-tab navigation", () => {

300-

const container = renderInto(buildProps());

301235

const tabs = container.querySelectorAll(".dreams__tab");

302236

expect(tabs.length).toBe(3);

303237

expect(tabs[0]?.textContent).toContain("Scene");

304238

expect(tabs[1]?.textContent).toContain("Diary");

305239

expect(tabs[2]?.textContent).toContain("Advanced");

306240

});

307241242+

it("renders idle and unavailable scene states", () => {

243+

const idleContainer = renderInto(buildProps({ active: false }));

244+

expect(idleContainer.querySelector(".dreams__bubble")).toBeNull();

245+

expect(idleContainer.querySelector(".dreams__status-label")?.textContent).toBe("Dreaming Idle");

246+

expect(idleContainer.querySelector(".dreams--idle")).not.toBeNull();

247+248+

const unknownPhaseContainer = renderInto(buildProps({ phases: undefined }));

249+

const statuses = [...unknownPhaseContainer.querySelectorAll(".dreams__phase-next")].map(

250+

(node) => node.textContent?.trim(),

251+

);

252+

expect(statuses).toEqual(["—", "—", "—"]);

253+

expect(unknownPhaseContainer.querySelectorAll(".dreams__phase--off").length).toBe(0);

254+255+

const errorContainer = renderInto(buildProps({ statusError: "patch failed" }));

256+

expect(errorContainer.querySelector(".dreams__controls-error")?.textContent).toContain(

257+

"patch failed",

258+

);

259+

});

260+308261

it("renders imported memory topics inside the diary tab", () => {

309262

setDreamSubTab("diary");

310263

setDreamDiarySubTab("insights");

@@ -515,28 +468,20 @@ describe("dreaming view", () => {

515468

setDreamSubTab("scene");

516469

});

517470518-

it("shows empty diary state when no diary content exists", () => {

471+

it("renders diary empty, error, and removed-navigation states", () => {

519472

setDreamSubTab("diary");

520473

setDreamDiarySubTab("dreams");

521-

const container = renderInto(buildProps({ dreamDiaryContent: null }));

522-

expect(container.querySelector(".dreams-diary__empty")).not.toBeNull();

523-

expect(container.querySelector(".dreams-diary__empty-text")?.textContent).toContain(

474+

const emptyContainer = renderInto(buildProps({ dreamDiaryContent: null }));

475+

expect(emptyContainer.querySelector(".dreams-diary__empty")).not.toBeNull();

476+

expect(emptyContainer.querySelector(".dreams-diary__empty-text")?.textContent).toContain(

524477

"No dreams yet",

525478

);

526-

setDreamSubTab("scene");

527-

});

528479529-

it("shows diary error message when diary load fails", () => {

530-

setDreamSubTab("diary");

531-

setDreamDiarySubTab("dreams");

532-

const container = renderInto(buildProps({ dreamDiaryError: "read failed" }));

533-

expect(container.querySelector(".dreams-diary__error")?.textContent).toContain("read failed");

534-

setDreamSubTab("scene");

535-

});

480+

const errorContainer = renderInto(buildProps({ dreamDiaryError: "read failed" }));

481+

expect(errorContainer.querySelector(".dreams-diary__error")?.textContent).toContain(

482+

"read failed",

483+

);

536484537-

it("does not render the old page navigation chrome", () => {

538-

setDreamSubTab("diary");

539-

setDreamDiarySubTab("dreams");

540485

const container = renderInto(buildProps());

541486

expect(container.querySelector(".dreams-diary__page")).toBeNull();

542487

expect(container.querySelector(".dreams-diary__nav-btn")).toBeNull();