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

推荐订阅源

MongoDB | Blog
MongoDB | Blog
V
V2EX
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
有赞技术团队
有赞技术团队
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
罗磊的独立博客
月光博客
月光博客
爱范儿
爱范儿
D
Docker
U
Unit 42
P
Proofpoint News Feed
I
InfoQ
腾讯CDC
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
L
LangChain Blog
V
Visual Studio Blog
IT之家
IT之家
Vercel News
Vercel News
G
Google Developers Blog
M
MIT News - Artificial intelligence
美团技术团队
The GitHub Blog
The GitHub Blog
阮一峰的网络日志
阮一峰的网络日志
MyScale Blog
MyScale 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: require oc-path resolver matches · openclaw/opencla...
steipete · 2026-05-09 · via Recent Commits to openclaw:main

@@ -5,11 +5,11 @@

55

* across re-parses. OcPath round-trip via the AST (slugs in OcPath

66

* must round-trip back to the resolved node).

77

*/

8-

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

9-

import { emitMd } from '../../emit.js';

10-

import { formatOcPath, parseOcPath } from '../../oc-path.js';

11-

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

12-

import { resolveMdOcPath as resolveOcPath } from '../../resolve.js';

8+

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

9+

import { emitMd } from "../../emit.js";

10+

import { formatOcPath, parseOcPath } from "../../oc-path.js";

11+

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

12+

import { resolveMdOcPath as resolveOcPath } from "../../resolve.js";

13131414

const SAMPLE = `---

1515

name: github

@@ -29,60 +29,60 @@ Preamble.

2929

- curl: HTTP client

3030

`;

313132-

describe('wave-13 cross-cutting', () => {

33-

it('CC-01 parse → resolve → emit pipeline (block)', () => {

32+

describe("wave-13 cross-cutting", () => {

33+

it("CC-01 parse → resolve → emit pipeline (block)", () => {

3434

const { ast } = parseMd(SAMPLE);

35-

const m = resolveOcPath(ast, { file: 'AGENTS.md', section: 'boundaries' });

36-

expect(m?.kind).toBe('block');

35+

const m = resolveOcPath(ast, { file: "AGENTS.md", section: "boundaries" });

36+

expect(m?.kind).toBe("block");

3737

expect(emitMd(ast)).toBe(SAMPLE);

3838

});

393940-

it('CC-02 OcPath round-trip via AST: parse + resolve + format', () => {

40+

it("CC-02 OcPath round-trip via AST: parse + resolve + format", () => {

4141

const { ast } = parseMd(SAMPLE);

4242

for (const block of ast.blocks) {

4343

const path = parseOcPath(`oc://AGENTS.md/${block.slug}`);

4444

const m = resolveOcPath(ast, path);

45-

expect(m?.kind, `block ${block.slug} should resolve`).toBe('block');

45+

expect(m?.kind, `block ${block.slug} should resolve`).toBe("block");

4646

// Format the same path back; slug → URI shape should be stable.

4747

expect(formatOcPath(path)).toBe(`oc://AGENTS.md/${block.slug}`);

4848

}

4949

});

505051-

it('CC-03 every item in every block is OcPath-addressable', () => {

51+

it("CC-03 every item in every block is OcPath-addressable", () => {

5252

const { ast } = parseMd(SAMPLE);

5353

for (const block of ast.blocks) {

5454

for (const item of block.items) {

5555

const path = parseOcPath(`oc://AGENTS.md/${block.slug}/${item.slug}`);

5656

const m = resolveOcPath(ast, path);

57-

expect(m?.kind, `${block.slug}/${item.slug} should resolve`).toBe('item');

57+

expect(m?.kind, `${block.slug}/${item.slug} should resolve`).toBe("item");

5858

}

5959

}

6060

});

616162-

it('CC-04 every kv item field is OcPath-addressable', () => {

62+

it("CC-04 every kv item field is OcPath-addressable", () => {

6363

const { ast } = parseMd(SAMPLE);

6464

for (const block of ast.blocks) {

6565

for (const item of block.items) {

66-

if (!item.kv) {continue;}

67-

const path = parseOcPath(

68-

`oc://AGENTS.md/${block.slug}/${item.slug}/${item.kv.key}`,

69-

);

66+

if (!item.kv) {

67+

continue;

68+

}

69+

const path = parseOcPath(`oc://AGENTS.md/${block.slug}/${item.slug}/${item.kv.key}`);

7070

const m = resolveOcPath(ast, path);

71-

expect(m?.kind).toBe('item-field');

71+

expect(m?.kind).toBe("item-field");

7272

}

7373

}

7474

});

757576-

it('CC-05 every frontmatter entry is OcPath-addressable', () => {

76+

it("CC-05 every frontmatter entry is OcPath-addressable", () => {

7777

const { ast } = parseMd(SAMPLE);

7878

for (const fm of ast.frontmatter) {

7979

const path = parseOcPath(`oc://AGENTS.md/[frontmatter]/${fm.key}`);

8080

const m = resolveOcPath(ast, path);

81-

expect(m?.kind).toBe('frontmatter');

81+

expect(m?.kind).toBe("frontmatter");

8282

}

8383

});

848485-

it('CC-06 slugs are stable across re-parses (deterministic)', () => {

85+

it("CC-06 slugs are stable across re-parses (deterministic)", () => {

8686

const a1 = parseMd(SAMPLE).ast;

8787

const a2 = parseMd(SAMPLE).ast;

8888

expect(a1.blocks.map((b) => b.slug)).toEqual(a2.blocks.map((b) => b.slug));

@@ -91,49 +91,49 @@ describe('wave-13 cross-cutting', () => {

9191

);

9292

});

939394-

it('CC-07 modifying raw + re-parse produces consistent AST shape', () => {

94+

it("CC-07 modifying raw + re-parse produces consistent AST shape", () => {

9595

const a1 = parseMd(SAMPLE).ast;

96-

const modified = SAMPLE.replace('GitHub CLI', 'GitHub command-line interface');

96+

const modified = SAMPLE.replace("GitHub CLI", "GitHub command-line interface");

9797

const a2 = parseMd(modified).ast;

9898

// Block + item count + slugs unchanged.

9999

expect(a2.blocks.length).toBe(a1.blocks.length);

100-

const a1Tools = a1.blocks.find((b) => b.slug === 'tools');

101-

const a2Tools = a2.blocks.find((b) => b.slug === 'tools');

100+

const a1Tools = a1.blocks.find((b) => b.slug === "tools");

101+

const a2Tools = a2.blocks.find((b) => b.slug === "tools");

102102

expect(a2Tools?.items.length).toBe(a1Tools?.items.length);

103103

// KV value reflects the change.

104-

const ghItem = a2Tools?.items.find((i) => i.kv?.key === 'gh');

105-

expect(ghItem?.kv?.value).toBe('GitHub command-line interface');

104+

const ghItem = a2Tools?.items.find((i) => i.kv?.key === "gh");

105+

expect(ghItem?.kv?.value).toBe("GitHub command-line interface");

106106

});

107107108-

it('CC-08 unknown OcPath returns null without affecting subsequent valid resolves', () => {

108+

it("CC-08 unknown OcPath returns null without affecting subsequent valid resolves", () => {

109109

const { ast } = parseMd(SAMPLE);

110-

expect(resolveOcPath(ast, { file: 'X.md', section: 'nonexistent' })).toBeNull();

111-

expect(resolveOcPath(ast, { file: 'X.md', section: 'tools' })?.kind).toBe('block');

110+

expect(resolveOcPath(ast, { file: "X.md", section: "nonexistent" })).toBeNull();

111+

expect(resolveOcPath(ast, { file: "X.md", section: "tools" })?.kind).toBe("block");

112112

});

113113114-

it('CC-09 resolve does not depend on file segment matching', () => {

114+

it("CC-09 resolve does not depend on file segment matching", () => {

115115

const { ast } = parseMd(SAMPLE);

116-

const a = resolveOcPath(ast, { file: 'A.md', section: 'tools' });

117-

const b = resolveOcPath(ast, { file: 'B.md', section: 'tools' });

116+

const a = resolveOcPath(ast, { file: "A.md", section: "tools" });

117+

const b = resolveOcPath(ast, { file: "B.md", section: "tools" });

118118

expect(a?.kind).toBe(b?.kind);

119119

});

120120121-

it('CC-10 round-trip across all 9 valid OcPath shapes', () => {

121+

it("CC-10 round-trip across all 9 valid OcPath shapes", () => {

122122

const { ast } = parseMd(SAMPLE);

123123

const cases = [

124-

{ file: 'X.md' },

125-

{ file: 'X.md', section: 'tools' },

126-

{ file: 'X.md', section: 'tools', item: 'gh' },

127-

{ file: 'X.md', section: 'tools', item: 'gh', field: 'gh' },

128-

{ file: 'X.md', section: '[frontmatter]', field: 'name' },

129-

{ file: 'X.md', section: 'boundaries' },

130-

{ file: 'X.md', section: 'boundaries', item: 'never-write-to-etc' },

131-

{ file: 'X.md', section: 'boundaries', item: 'always-confirm' },

132-

{ file: 'X.md', section: '[frontmatter]', field: 'description' },

124+

{ file: "X.md" },

125+

{ file: "X.md", section: "tools" },

126+

{ file: "X.md", section: "tools", item: "gh" },

127+

{ file: "X.md", section: "tools", item: "gh", field: "gh" },

128+

{ file: "X.md", section: "[frontmatter]", field: "name" },

129+

{ file: "X.md", section: "boundaries" },

130+

{ file: "X.md", section: "boundaries", item: "never-write-to-etc" },

131+

{ file: "X.md", section: "boundaries", item: "always-confirm" },

132+

{ file: "X.md", section: "[frontmatter]", field: "description" },

133133

];

134134

for (const path of cases) {

135135

const m = resolveOcPath(ast, path);

136-

expect(m, `failed for ${JSON.stringify(path)}`).not.toBeNull();

136+

expect(m, `failed for ${JSON.stringify(path)}`).toEqual(expect.any(Object));

137137

}

138138

});

139139

});