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

推荐订阅源

云风的 BLOG
云风的 BLOG
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 叶小钗
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell
月光博客
月光博客
人人都是产品经理
人人都是产品经理
宝玉的分享
宝玉的分享
博客园 - 司徒正美
WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
罗磊的独立博客
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
T
Tailwind CSS Blog
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
L
LangChain Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
Visual Studio Blog
S
SegmentFault 最新的问题
Google DeepMind News
Google DeepMind News
博客园 - 聂微东

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: tighten remaining defined assertions · openclaw/ope...
steipete · 2026-05-08 · via Recent Commits to openclaw:main

@@ -1,8 +1,8 @@

1-

import { describe, expect, it } from 'vitest';

2-

import { parseMd } from '../parse.js';

1+

import { describe, expect, it } from "vitest";

2+

import { parseMd } from "../parse.js";

334-

describe('parseMd — frontmatter', () => {

5-

it('parses simple frontmatter', () => {

4+

describe("parseMd — frontmatter", () => {

5+

it("parses simple frontmatter", () => {

66

const raw = `---

77

name: github

88

description: gh CLI for issues, PRs, runs

@@ -13,20 +13,20 @@ Body text.

1313

const { ast, diagnostics } = parseMd(raw);

1414

expect(diagnostics).toEqual([]);

1515

expect(ast.frontmatter).toEqual([

16-

{ key: 'name', value: 'github', line: 2 },

17-

{ key: 'description', value: 'gh CLI for issues, PRs, runs', line: 3 },

16+

{ key: "name", value: "github", line: 2 },

17+

{ key: "description", value: "gh CLI for issues, PRs, runs", line: 3 },

1818

]);

1919

});

202021-

it('handles no frontmatter', () => {

21+

it("handles no frontmatter", () => {

2222

const raw = `## First section\n\nContent.\n`;

2323

const { ast } = parseMd(raw);

2424

expect(ast.frontmatter).toEqual([]);

25-

expect(ast.preamble).toBe('');

25+

expect(ast.preamble).toBe("");

2626

expect(ast.blocks.length).toBe(1);

2727

});

282829-

it('emits diagnostic for unclosed frontmatter', () => {

29+

it("emits diagnostic for unclosed frontmatter", () => {

3030

const raw = `---

3131

name: github

3232

description: never closes

@@ -35,24 +35,24 @@ Body.

3535

`;

3636

const { diagnostics } = parseMd(raw);

3737

expect(diagnostics).toContainEqual(

38-

expect.objectContaining({ code: 'OC_FRONTMATTER_UNCLOSED' }),

38+

expect.objectContaining({ code: "OC_FRONTMATTER_UNCLOSED" }),

3939

);

4040

});

414142-

it('strips quotes from values', () => {

42+

it("strips quotes from values", () => {

4343

const raw = `---

4444

title: "Hello world"

4545

hint: 'quoted'

4646

---

4747

`;

4848

const { ast } = parseMd(raw);

49-

expect(ast.frontmatter[0]?.value).toBe('Hello world');

50-

expect(ast.frontmatter[1]?.value).toBe('quoted');

49+

expect(ast.frontmatter[0]?.value).toBe("Hello world");

50+

expect(ast.frontmatter[1]?.value).toBe("quoted");

5151

});

5252

});

535354-

describe('parseMd — H2 blocks', () => {

55-

it('splits sections', () => {

54+

describe("parseMd — H2 blocks", () => {

55+

it("splits sections", () => {

5656

const raw = `Preamble text.

57575858

## First

@@ -64,14 +64,14 @@ Body of first.

6464

Body of second.

6565

`;

6666

const { ast } = parseMd(raw);

67-

expect(ast.preamble.trim()).toBe('Preamble text.');

67+

expect(ast.preamble.trim()).toBe("Preamble text.");

6868

expect(ast.blocks.length).toBe(2);

69-

expect(ast.blocks[0]?.heading).toBe('First');

70-

expect(ast.blocks[0]?.slug).toBe('first');

71-

expect(ast.blocks[1]?.heading).toBe('Second');

69+

expect(ast.blocks[0]?.heading).toBe("First");

70+

expect(ast.blocks[0]?.slug).toBe("first");

71+

expect(ast.blocks[1]?.heading).toBe("Second");

7272

});

737374-

it('preserves line numbers (1-based)', () => {

74+

it("preserves line numbers (1-based)", () => {

7575

const raw = `Line 1

7676

## Heading at line 2

7777

Line 3

@@ -80,7 +80,7 @@ Line 3

8080

expect(ast.blocks[0]?.line).toBe(2);

8181

});

828283-

it('does NOT split on `## ` inside fenced code blocks', () => {

83+

it("does NOT split on `## ` inside fenced code blocks", () => {

8484

const raw = `## Real section

85858686

\`\`\`md

@@ -91,36 +91,36 @@ content

9191

## Another section

9292

`;

9393

const { ast } = parseMd(raw);

94-

expect(ast.blocks.map((b) => b.heading)).toEqual(['Real section', 'Another section']);

94+

expect(ast.blocks.map((b) => b.heading)).toEqual(["Real section", "Another section"]);

9595

});

9696

});

979798-

describe('parseMd — items', () => {

99-

it('extracts plain bullet items', () => {

98+

describe("parseMd — items", () => {

99+

it("extracts plain bullet items", () => {

100100

const raw = `## Boundaries

101101102102

- never write to /etc

103103

- always confirm before deleting

104104

`;

105105

const { ast } = parseMd(raw);

106106

expect(ast.blocks[0]?.items.length).toBe(2);

107-

expect(ast.blocks[0]?.items[0]?.text).toBe('never write to /etc');

107+

expect(ast.blocks[0]?.items[0]?.text).toBe("never write to /etc");

108108

expect(ast.blocks[0]?.items[0]?.kv).toBeUndefined();

109109

});

110110111-

it('extracts kv items', () => {

111+

it("extracts kv items", () => {

112112

const raw = `## Tools

113113114114

- gh: GitHub CLI

115115

- curl: HTTP client

116116

`;

117117

const { ast } = parseMd(raw);

118-

expect(ast.blocks[0]?.items[0]?.kv).toEqual({ key: 'gh', value: 'GitHub CLI' });

119-

expect(ast.blocks[0]?.items[0]?.slug).toBe('gh');

120-

expect(ast.blocks[0]?.items[1]?.kv).toEqual({ key: 'curl', value: 'HTTP client' });

118+

expect(ast.blocks[0]?.items[0]?.kv).toEqual({ key: "gh", value: "GitHub CLI" });

119+

expect(ast.blocks[0]?.items[0]?.slug).toBe("gh");

120+

expect(ast.blocks[0]?.items[1]?.kv).toEqual({ key: "curl", value: "HTTP client" });

121121

});

122122123-

it('does NOT extract bullets inside fenced code', () => {

123+

it("does NOT extract bullets inside fenced code", () => {

124124

const raw = `## Section

125125126126

\`\`\`

@@ -131,12 +131,12 @@ describe('parseMd — items', () => {

131131

`;

132132

const { ast } = parseMd(raw);

133133

expect(ast.blocks[0]?.items.length).toBe(1);

134-

expect(ast.blocks[0]?.items[0]?.text).toBe('real bullet');

134+

expect(ast.blocks[0]?.items[0]?.text).toBe("real bullet");

135135

});

136136

});

137137138-

describe('parseMd — tables', () => {

139-

it('extracts a simple table', () => {

138+

describe("parseMd — tables", () => {

139+

it("extracts a simple table", () => {

140140

const raw = `## Tool Guidance

141141142142

| tool | guidance |

@@ -146,15 +146,17 @@ describe('parseMd — tables', () => {

146146

`;

147147

const { ast } = parseMd(raw);

148148

const table = ast.blocks[0]?.tables[0];

149-

expect(table).toBeDefined();

150-

expect(table?.headers).toEqual(['tool', 'guidance']);

151-

expect(table?.rows.length).toBe(2);

152-

expect(table?.rows[0]).toEqual(['gh', 'use for GitHub']);

149+

if (!table) {

150+

throw new Error("expected parsed markdown table");

151+

}

152+

expect(table.headers).toEqual(["tool", "guidance"]);

153+

expect(table.rows.length).toBe(2);

154+

expect(table.rows[0]).toEqual(["gh", "use for GitHub"]);

153155

});

154156

});

155157156-

describe('parseMd — code blocks', () => {

157-

it('extracts a fenced code block', () => {

158+

describe("parseMd — code blocks", () => {

159+

it("extracts a fenced code block", () => {

158160

const raw = `## Examples

159161160162

\`\`\`ts

@@ -163,12 +165,12 @@ const x = 1;

163165

`;

164166

const { ast } = parseMd(raw);

165167

expect(ast.blocks[0]?.codeBlocks[0]).toMatchObject({

166-

lang: 'ts',

167-

text: 'const x = 1;',

168+

lang: "ts",

169+

text: "const x = 1;",

168170

});

169171

});

170172171-

it('handles unlanguaged fences', () => {

173+

it("handles unlanguaged fences", () => {

172174

const raw = `## Block

173175174176

\`\`\`

@@ -180,24 +182,24 @@ plain text

180182

});

181183

});

182184183-

describe('parseMd — byte-fidelity', () => {

184-

it('preserves raw on the AST', () => {

185+

describe("parseMd — byte-fidelity", () => {

186+

it("preserves raw on the AST", () => {

185187

const raw = `---\nname: x\n---\n\n## Sec\n\n- a\n- b\n`;

186188

const { ast } = parseMd(raw);

187189

expect(ast.raw).toBe(raw);

188190

});

189191190-

it('preserves BOM in raw but ignores it for parsing', () => {

191-

const raw = '## Heading\n';

192+

it("preserves BOM in raw but ignores it for parsing", () => {

193+

const raw = "## Heading\n";

192194

const { ast } = parseMd(raw);

193195

expect(ast.raw).toBe(raw);

194-

expect(ast.blocks[0]?.heading).toBe('Heading');

196+

expect(ast.blocks[0]?.heading).toBe("Heading");

195197

});

196198197-

it('handles CRLF line endings', () => {

198-

const raw = '## Heading\r\n\r\n- item\r\n';

199+

it("handles CRLF line endings", () => {

200+

const raw = "## Heading\r\n\r\n- item\r\n";

199201

const { ast } = parseMd(raw);

200-

expect(ast.blocks[0]?.heading).toBe('Heading');

201-

expect(ast.blocks[0]?.items[0]?.text).toBe('item');

202+

expect(ast.blocks[0]?.heading).toBe("Heading");

203+

expect(ast.blocks[0]?.items[0]?.text).toBe("item");

202204

});

203205

});