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

推荐订阅源

博客园 - Franky
有赞技术团队
有赞技术团队
宝玉的分享
宝玉的分享
雷峰网
雷峰网
Hugging Face - Blog
Hugging Face - Blog
V
V2EX
大猫的无限游戏
大猫的无限游戏
博客园 - 司徒正美
D
Docker
T
The Blog of Author Tim Ferriss
罗磊的独立博客
博客园 - 叶小钗
酷 壳 – CoolShell
酷 壳 – CoolShell
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
J
Java Code Geeks
Jina AI
Jina AI
博客园 - 【当耐特】
C
Check Point Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
腾讯CDC
Last Week in AI
Last Week in AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
Visual Studio 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(memory): normalize styled CLI status assertions · op...
vincentkoc · 2026-05-09 · via Recent Commits to openclaw:main

@@ -142,6 +142,23 @@ describe("memory cli", () => {

142142

);

143143

}

144144145+

const ansiPattern = /\u001B\[[0-?]*[ -/]*[@-~]/g;

146+147+

function loggedOutput(spy: ReturnType<typeof vi.spyOn>) {

148+

return spy.mock.calls

149+

.map((call: unknown[]) => (typeof call[0] === "string" ? call[0] : ""))

150+

.join("\n")

151+

.replace(ansiPattern, "");

152+

}

153+154+

function expectLogged(spy: ReturnType<typeof vi.spyOn>, expected: string) {

155+

expect(loggedOutput(spy)).toContain(expected);

156+

}

157+158+

function expectNotLogged(spy: ReturnType<typeof vi.spyOn>, expected: string) {

159+

expect(loggedOutput(spy)).not.toContain(expected);

160+

}

161+145162

async function runMemoryCli(args: string[]) {

146163

const program = new Command();

147164

program.name("test");

@@ -241,14 +258,12 @@ describe("memory cli", () => {

241258

await runMemoryCli(["status"]);

242259243260

expect(probeVectorAvailability).not.toHaveBeenCalled();

244-

expect(log).toHaveBeenCalledWith(expect.stringContaining("Vector store: ready"));

245-

expect(log).toHaveBeenCalledWith(expect.stringContaining("Semantic vectors: ready"));

246-

expect(log).toHaveBeenCalledWith(expect.stringContaining("Vector dims: 1024"));

247-

expect(log).toHaveBeenCalledWith(expect.stringContaining("Vector path: /opt/sqlite-vec.dylib"));

248-

expect(log).toHaveBeenCalledWith(expect.stringContaining("FTS: ready"));

249-

expect(log).toHaveBeenCalledWith(

250-

expect.stringContaining("Embedding cache: enabled (123 entries)"),

251-

);

261+

expectLogged(log, "Vector store: ready");

262+

expectLogged(log, "Semantic vectors: ready");

263+

expectLogged(log, "Vector dims: 1024");

264+

expectLogged(log, "Vector path: /opt/sqlite-vec.dylib");

265+

expectLogged(log, "FTS: ready");

266+

expectLogged(log, "Embedding cache: enabled (123 entries)");

252267

expect(close).toHaveBeenCalled();

253268

});

254269

@@ -277,8 +292,8 @@ describe("memory cli", () => {

277292278293

expect(probeVectorAvailability).not.toHaveBeenCalled();

279294

expect(probeEmbeddingAvailability).not.toHaveBeenCalled();

280-

expect(log).toHaveBeenCalledWith(expect.stringContaining("Provider: auto"));

281-

expect(log).toHaveBeenCalledWith(expect.stringContaining("Vector store: unknown"));

295+

expectLogged(log, "Provider: auto");

296+

expectLogged(log, "Vector store: unknown");

282297

expect(close).toHaveBeenCalled();

283298

});

284299

@@ -366,9 +381,9 @@ describe("memory cli", () => {

366381

const log = spyRuntimeLogs(defaultRuntime);

367382

await runMemoryCli(["status", "--agent", "main"]);

368383369-

expect(log).toHaveBeenCalledWith(expect.stringContaining("Vector store: unavailable"));

370-

expect(log).toHaveBeenCalledWith(expect.stringContaining("Semantic vectors: unavailable"));

371-

expect(log).toHaveBeenCalledWith(expect.stringContaining("Vector error: load failed"));

384+

expectLogged(log, "Vector store: unavailable");

385+

expectLogged(log, "Semantic vectors: unavailable");

386+

expectLogged(log, "Vector error: load failed");

372387

expect(close).toHaveBeenCalled();

373388

});

374389

@@ -391,7 +406,7 @@ describe("memory cli", () => {

391406

expect(probeVectorStoreAvailability).toHaveBeenCalled();

392407

expect(probeVectorAvailability).toHaveBeenCalled();

393408

expect(probeEmbeddingAvailability).toHaveBeenCalled();

394-

expect(log).toHaveBeenCalledWith(expect.stringContaining("Embeddings: ready"));

409+

expectLogged(log, "Embeddings: ready");

395410

expect(close).toHaveBeenCalled();

396411

});

397412

@@ -427,12 +442,10 @@ describe("memory cli", () => {

427442

expect(probeVectorStoreAvailability).toHaveBeenCalled();

428443

expect(probeEmbeddingAvailability).toHaveBeenCalled();

429444

expect(probeVectorAvailability).toHaveBeenCalled();

430-

expect(log).toHaveBeenCalledWith(expect.stringContaining("Vector store: ready"));

431-

expect(log).toHaveBeenCalledWith(expect.stringContaining("Semantic vectors: unavailable"));

432-

expect(log).toHaveBeenCalledWith(expect.stringContaining("Embeddings: unavailable"));

433-

expect(log).toHaveBeenCalledWith(

434-

expect.stringContaining("Embeddings error: No embedding provider available"),

435-

);

445+

expectLogged(log, "Vector store: ready");

446+

expectLogged(log, "Semantic vectors: unavailable");

447+

expectLogged(log, "Embeddings: unavailable");

448+

expectLogged(log, "Embeddings error: No embedding provider available");

436449

expect(close).toHaveBeenCalled();

437450

});

438451

@@ -466,8 +479,8 @@ describe("memory cli", () => {

466479

expect(probeVectorStoreAvailability).not.toHaveBeenCalled();

467480

expect(probeVectorAvailability).toHaveBeenCalled();

468481

expect(probeEmbeddingAvailability).toHaveBeenCalled();

469-

expect(log).toHaveBeenCalledWith(expect.stringContaining("Vector: ready"));

470-

expect(log).not.toHaveBeenCalledWith(expect.stringContaining("Vector store:"));

482+

expectLogged(log, "Vector: ready");

483+

expectNotLogged(log, "Vector store:");

471484

expect(close).toHaveBeenCalled();

472485

});

473486

@@ -498,8 +511,8 @@ describe("memory cli", () => {

498511

const log = spyRuntimeLogs(defaultRuntime);

499512

await runMemoryCli(["status"]);

500513501-

expect(log).toHaveBeenCalledWith(expect.stringContaining("Recall store: 1 entries"));

502-

expect(log).toHaveBeenCalledWith(expect.stringContaining("Dreaming: off"));

514+

expectLogged(log, "Recall store: 1 entries");

515+

expectLogged(log, "Dreaming: off");

503516

expect(close).toHaveBeenCalled();

504517

});

505518

});

@@ -553,7 +566,7 @@ describe("memory cli", () => {

553566

const log = spyRuntimeLogs(defaultRuntime);

554567

await runMemoryCli(["status", "--fix"]);

555568556-

expect(log).toHaveBeenCalledWith(expect.stringContaining("Repair: rewrote store"));

569+

expectLogged(log, "Repair: rewrote store");

557570

await expect(fs.stat(lockPath)).rejects.toThrow();

558571

const repaired = JSON.parse(await fs.readFile(storePath, "utf-8")) as {

559572

entries: Record<string, { conceptTags?: string[] }>;

@@ -577,9 +590,7 @@ describe("memory cli", () => {

577590578591

const log = spyRuntimeLogs(defaultRuntime);

579592

await runMemoryCli(["status"]);

580-

expect(log).toHaveBeenCalledWith(

581-

expect.stringContaining("Fix: openclaw memory status --fix --agent main"),

582-

);

593+

expectLogged(log, "Fix: openclaw memory status --fix --agent main");

583594584595

log.mockClear();

585596

mockManager({

@@ -588,9 +599,7 @@ describe("memory cli", () => {

588599

close,

589600

});

590601

await runMemoryCli(["status", "--fix"]);

591-

expect(log).not.toHaveBeenCalledWith(

592-

expect.stringContaining("Fix: openclaw memory status --fix --agent main"),

593-

);

602+

expectNotLogged(log, "Fix: openclaw memory status --fix --agent main");

594603

});

595604

});

596605

@@ -623,10 +632,8 @@ describe("memory cli", () => {

623632

const log = spyRuntimeLogs(defaultRuntime);

624633

await runMemoryCli(["status", "--fix"]);

625634626-

expect(log).toHaveBeenCalledWith(

627-

expect.stringContaining("Dream repair: archived session corpus"),

628-

);

629-

expect(log).toHaveBeenCalledWith(expect.stringContaining("Dream archive:"));

635+

expectLogged(log, "Dream repair: archived session corpus");

636+

expectLogged(log, "Dream archive:");

630637

await expect(fs.access(sessionCorpusDir)).rejects.toMatchObject({ code: "ENOENT" });

631638

await expect(

632639

fs.access(path.join(workspaceDir, "memory", ".dreams", "session-ingestion.json")),

@@ -746,7 +753,7 @@ describe("memory cli", () => {

746753

await runMemoryCli(["index"]);

747754748755

expectCliSync(sync);

749-

expect(log).toHaveBeenCalledWith(expect.stringContaining("QMD index: "));

756+

expectLogged(log, "QMD index: ");

750757

expect(log).toHaveBeenCalledWith("Memory index updated (main).");

751758

expect(close).toHaveBeenCalled();

752759

});

@@ -776,8 +783,8 @@ describe("memory cli", () => {

776783

const log = spyRuntimeLogs(defaultRuntime);

777784

await runMemoryCli(["status"]);

778785779-

expect(log).toHaveBeenCalledWith(expect.stringContaining("QMD audit:"));

780-

expect(log).toHaveBeenCalledWith(expect.stringContaining("2 collections"));

786+

expectLogged(log, "QMD audit:");

787+

expectLogged(log, "2 collections");

781788

expect(close).toHaveBeenCalled();

782789

});

783790

});