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

推荐订阅源

博客园 - 叶小钗
Microsoft Azure Blog
Microsoft Azure Blog
Stack Overflow Blog
Stack Overflow Blog
Jina AI
Jina AI
Vercel News
Vercel News
H
Help Net Security
Martin Fowler
Martin Fowler
美团技术团队
云风的 BLOG
云风的 BLOG
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
MyScale Blog
MyScale Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 三生石上(FineUI控件)
博客园 - 司徒正美
人人都是产品经理
人人都是产品经理
Engineering at Meta
Engineering at Meta
G
Google Developers Blog
Blog — PlanetScale
Blog — PlanetScale
MongoDB | Blog
MongoDB | Blog
宝玉的分享
宝玉的分享
小众软件
小众软件
T
Tailwind CSS Blog
WordPress大学
WordPress大学

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: clarify oc-path scenario assertions · openclaw/open...
steipete · 2026-05-08 · via Recent Commits to openclaw:main

@@ -5,136 +5,136 @@

55

* with quote-stripping; malformed frontmatter doesn't crash the parser

66

* (soft-error policy: emit diagnostic, recover).

77

*/

8-

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

9-

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

8+

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

9+

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

101011-

describe('wave-02 frontmatter-edges', () => {

12-

it('FM-01 simple kv pairs', () => {

13-

const { ast } = parseMd('---\nname: x\ndescription: y\n---\n');

11+

describe("wave-02 frontmatter-edges", () => {

12+

it("FM-01 simple kv pairs", () => {

13+

const { ast } = parseMd("---\nname: x\ndescription: y\n---\n");

1414

expect(ast.frontmatter.map((e) => [e.key, e.value])).toEqual([

15-

['name', 'x'],

16-

['description', 'y'],

15+

["name", "x"],

16+

["description", "y"],

1717

]);

1818

});

191920-

it('FM-02 unclosed frontmatter emits diagnostic, treats as preamble', () => {

21-

const { ast, diagnostics } = parseMd('---\nname: x\nno close fence\nbody\n');

22-

expect(diagnostics.some((d) => d.code === 'OC_FRONTMATTER_UNCLOSED')).toBe(true);

20+

it("FM-02 unclosed frontmatter emits diagnostic, treats as preamble", () => {

21+

const { ast, diagnostics } = parseMd("---\nname: x\nno close fence\nbody\n");

22+

expect(diagnostics.map((diagnostic) => diagnostic.code)).toContain("OC_FRONTMATTER_UNCLOSED");

2323

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

2424

});

252526-

it('FM-03 empty frontmatter (just open + close)', () => {

27-

const { ast } = parseMd('---\n---\n');

26+

it("FM-03 empty frontmatter (just open + close)", () => {

27+

const { ast } = parseMd("---\n---\n");

2828

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

2929

});

303031-

it('FM-04 frontmatter only, file has no other content', () => {

32-

const { ast } = parseMd('---\nk: v\n---\n');

33-

expect(ast.frontmatter).toEqual([{ key: 'k', value: 'v', line: 2 }]);

34-

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

31+

it("FM-04 frontmatter only, file has no other content", () => {

32+

const { ast } = parseMd("---\nk: v\n---\n");

33+

expect(ast.frontmatter).toEqual([{ key: "k", value: "v", line: 2 }]);

34+

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

3535

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

3636

});

373738-

it('FM-05 double-quoted value', () => {

38+

it("FM-05 double-quoted value", () => {

3939

const { ast } = parseMd('---\ntitle: "Hello, world"\n---\n');

40-

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

40+

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

4141

});

424243-

it('FM-06 single-quoted value', () => {

43+

it("FM-06 single-quoted value", () => {

4444

const { ast } = parseMd("---\ntitle: 'Hello, world'\n---\n");

45-

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

45+

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

4646

});

474748-

it('FM-07 unquoted value with internal colons preserved', () => {

49-

const { ast } = parseMd('---\nurl: https://example.com:443/p\n---\n');

50-

expect(ast.frontmatter[0]?.value).toBe('https://example.com:443/p');

48+

it("FM-07 unquoted value with internal colons preserved", () => {

49+

const { ast } = parseMd("---\nurl: https://example.com:443/p\n---\n");

50+

expect(ast.frontmatter[0]?.value).toBe("https://example.com:443/p");

5151

});

525253-

it('FM-08 empty value', () => {

54-

const { ast } = parseMd('---\nk:\n---\n');

55-

expect(ast.frontmatter[0]).toEqual({ key: 'k', value: '', line: 2 });

53+

it("FM-08 empty value", () => {

54+

const { ast } = parseMd("---\nk:\n---\n");

55+

expect(ast.frontmatter[0]).toEqual({ key: "k", value: "", line: 2 });

5656

});

575758-

it('FM-09 value with leading/trailing whitespace trimmed', () => {

59-

const { ast } = parseMd('---\nk: spaced \n---\n');

60-

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

58+

it("FM-09 value with leading/trailing whitespace trimmed", () => {

59+

const { ast } = parseMd("---\nk: spaced \n---\n");

60+

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

6161

});

626263-

it('FM-10 list-style continuations are silently dropped (substrate stays opinion-free)', () => {

64-

const { ast } = parseMd('---\ntools:\n - gh\n - curl\n---\n');

63+

it("FM-10 list-style continuations are silently dropped (substrate stays opinion-free)", () => {

64+

const { ast } = parseMd("---\ntools:\n - gh\n - curl\n---\n");

6565

// The `tools:` key has an empty inline value; the list continuation

6666

// lines ` - gh` and ` - curl` don't match the kv regex and are

6767

// skipped. Lint rules can do their own structural reading of

6868

// frontmatter; the substrate does not.

69-

expect(ast.frontmatter.map((e) => e.key)).toEqual(['tools']);

70-

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

69+

expect(ast.frontmatter.map((e) => e.key)).toEqual(["tools"]);

70+

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

7171

});

727273-

it('FM-11 line numbers are 1-based and accurate', () => {

74-

const { ast } = parseMd('---\nk1: v1\nk2: v2\nk3: v3\n---\n');

73+

it("FM-11 line numbers are 1-based and accurate", () => {

74+

const { ast } = parseMd("---\nk1: v1\nk2: v2\nk3: v3\n---\n");

7575

expect(ast.frontmatter.map((e) => [e.key, e.line])).toEqual([

76-

['k1', 2],

77-

['k2', 3],

78-

['k3', 4],

76+

["k1", 2],

77+

["k2", 3],

78+

["k3", 4],

7979

]);

8080

});

818182-

it('FM-12 dash-key allowed', () => {

83-

const { ast } = parseMd('---\nuser-invocable: true\n---\n');

84-

expect(ast.frontmatter[0]?.key).toBe('user-invocable');

82+

it("FM-12 dash-key allowed", () => {

83+

const { ast } = parseMd("---\nuser-invocable: true\n---\n");

84+

expect(ast.frontmatter[0]?.key).toBe("user-invocable");

8585

});

868687-

it('FM-13 underscore-key allowed', () => {

88-

const { ast } = parseMd('---\nparam_set: foo\n---\n');

89-

expect(ast.frontmatter[0]?.key).toBe('param_set');

87+

it("FM-13 underscore-key allowed", () => {

88+

const { ast } = parseMd("---\nparam_set: foo\n---\n");

89+

expect(ast.frontmatter[0]?.key).toBe("param_set");

9090

});

919192-

it('FM-14 number-only value preserved as string', () => {

93-

const { ast } = parseMd('---\ntimeout: 15000\n---\n');

94-

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

92+

it("FM-14 number-only value preserved as string", () => {

93+

const { ast } = parseMd("---\ntimeout: 15000\n---\n");

94+

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

9595

});

969697-

it('FM-15 boolean-like value preserved as string', () => {

98-

const { ast } = parseMd('---\nenabled: true\n---\n');

99-

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

97+

it("FM-15 boolean-like value preserved as string", () => {

98+

const { ast } = parseMd("---\nenabled: true\n---\n");

99+

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

100100

});

101101102-

it('FM-16 blank lines inside frontmatter are skipped', () => {

103-

const { ast } = parseMd('---\n\nk1: v1\n\nk2: v2\n\n---\n');

104-

expect(ast.frontmatter.map((e) => e.key)).toEqual(['k1', 'k2']);

102+

it("FM-16 blank lines inside frontmatter are skipped", () => {

103+

const { ast } = parseMd("---\n\nk1: v1\n\nk2: v2\n\n---\n");

104+

expect(ast.frontmatter.map((e) => e.key)).toEqual(["k1", "k2"]);

105105

});

106106107-

it('FM-17 frontmatter with same key twice — both retained (no dedup)', () => {

107+

it("FM-17 frontmatter with same key twice — both retained (no dedup)", () => {

108108

// Substrate doesn't dedup; lint rules can flag duplicates if needed.

109-

const { ast } = parseMd('---\nk: v1\nk: v2\n---\n');

109+

const { ast } = parseMd("---\nk: v1\nk: v2\n---\n");

110110

expect(ast.frontmatter).toEqual([

111-

{ key: 'k', value: 'v1', line: 2 },

112-

{ key: 'k', value: 'v2', line: 3 },

111+

{ key: "k", value: "v1", line: 2 },

112+

{ key: "k", value: "v2", line: 3 },

113113

]);

114114

});

115115116-

it('FM-18 frontmatter must be at start — leading blank line breaks detection', () => {

117-

const { ast } = parseMd('\n---\nk: v\n---\n');

116+

it("FM-18 frontmatter must be at start — leading blank line breaks detection", () => {

117+

const { ast } = parseMd("\n---\nk: v\n---\n");

118118

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

119119

});

120120121-

it('FM-19 frontmatter must be at start — leading text breaks detection', () => {

122-

const { ast } = parseMd('intro\n\n---\nk: v\n---\n');

121+

it("FM-19 frontmatter must be at start — leading text breaks detection", () => {

122+

const { ast } = parseMd("intro\n\n---\nk: v\n---\n");

123123

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

124124

});

125125126-

it('FM-20 BOM before frontmatter open is tolerated', () => {

127-

const { ast } = parseMd('---\nname: bom\n---\n');

128-

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

126+

it("FM-20 BOM before frontmatter open is tolerated", () => {

127+

const { ast } = parseMd("---\nname: bom\n---\n");

128+

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

129129

});

130130131-

it('FM-21 single-line file with `---` and `---` is empty frontmatter', () => {

132-

const { ast } = parseMd('---\n---');

131+

it("FM-21 single-line file with `---` and `---` is empty frontmatter", () => {

132+

const { ast } = parseMd("---\n---");

133133

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

134134

});

135135136-

it('FM-22 hash-prefixed lines skipped (not yaml comments — just don\'t match kv regex)', () => {

137-

const { ast } = parseMd('---\n# comment\nk: v\n---\n');

138-

expect(ast.frontmatter.map((e) => e.key)).toEqual(['k']);

136+

it("FM-22 hash-prefixed lines skipped (not yaml comments — just don't match kv regex)", () => {

137+

const { ast } = parseMd("---\n# comment\nk: v\n---\n");

138+

expect(ast.frontmatter.map((e) => e.key)).toEqual(["k"]);

139139

});

140140

});