Files
gbrain/test/brain-writer.test.ts
T
4be9d112cb fix(frontmatter): stop treating YAML comments inside the fence as markdown headings (#3225) (#3247)
* fix(frontmatter): stop treating YAML comments inside the fence as markdown headings

autoFixFrontmatter's MISSING_CLOSE repair walked lines from the opening
`---` and broke out of the scan on the first `#`-prefixed line, treating
it as a markdown heading before it ever reached the real closing fence.
A `#` line inside a closed YAML block is a comment, not a heading — but
the scan never got that far, so it inserted a spurious `---` right
before the comment and split valid frontmatter in two, pushing the real
keys (title, pubDate, ...) into the document body.

This is the same bug PR #2153 fixed in the parseMarkdown validator, but
autoFixFrontmatter in brain-writer.ts is a separate reimplementation of
the same MISSING_CLOSE logic that PR never touched. Because
parseMarkdown's validator now parses this shape cleanly, autoFixFrontmatter
is only reachable when some other fixable error (SLUG_MISMATCH, NULL_BYTES,
etc.) also fires on the same file — a common real-world case (e.g. a
renamed file with a stale slug: field) that still corrupts otherwise-valid
frontmatter today.

Fix: scan the full zone for the closing `---` first; only fall back to
the heading-shaped-line heuristic when no closer is found at all.

Addresses the report in #3225. Thanks to @WilliamCourterWelch for the
clear repro and for catching this via git diff before it reached a live
site.

Tests: 4 new regression cases in test/brain-writer.test.ts covering a
YAML comment before the close, comment-only frontmatter, a `#` inside a
quoted string value, and a comment co-occurring with an unrelated real
fix (SLUG_MISMATCH) — confirmed all 3 corruption-covering cases fail
against the pre-fix code (stash/red/restore) and pass after the fix.
The pre-existing genuinely-missing-closer case is unchanged.

bun test test/brain-writer.test.ts test/markdown-validation.test.ts
test/markdown.test.ts test/lint-frontmatter.test.ts
test/doctor-frontmatter-partial.test.ts test/frontmatter-cli.test.ts
-> 122 pass / 0 fail. bun run typecheck -> clean. Full suite intentionally
not run locally (targeted scope per contribution norms); CI covers it.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* test(frontmatter): swap non-exercising regression case per codex review

The quoted-string test (title: "Chapter #1 recap") never exercised the
fixed branch — the heading regex is line-anchored on the trimmed line,
so a `#` mid-string never matched before or after the fix. Replace it
with an indented `#` line inside a YAML block scalar, which does hit
the same closer-first-scan code path as the other regression cases
with a different real-world shape.

bun test test/brain-writer.test.ts -> 27 pass / 0 fail. bun run
typecheck -> clean.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

---------

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
2026-07-23 14:21:39 -07:00

354 lines
15 KiB
TypeScript

import { describe, expect, test, beforeAll, afterAll, beforeEach, afterEach } from 'bun:test';
import { mkdtempSync, rmSync, writeFileSync, readFileSync, existsSync, mkdirSync, symlinkSync } from 'fs';
import { join } from 'path';
import { tmpdir } from 'os';
import {
autoFixFrontmatter,
writeBrainPage,
scanBrainSources,
BrainWriterError,
} from '../src/core/brain-writer.ts';
import { PGLiteEngine } from '../src/core/pglite-engine.ts';
import { resetPgliteState } from './helpers/reset-pglite.ts';
const fence = '---';
describe('autoFixFrontmatter', () => {
test('strips null bytes', () => {
const input = `${fence}\ntitle: ok\n${fence}\n\nbody\x00drop\x00here`;
const { content, fixes } = autoFixFrontmatter(input);
expect(content.includes('\x00')).toBe(false);
expect(fixes.some(f => f.code === 'NULL_BYTES')).toBe(true);
});
test('inserts closing --- before heading when MISSING_CLOSE', () => {
const input = `${fence}\ntype: concept\ntitle: ok\n# A heading\n\nbody`;
const { content, fixes } = autoFixFrontmatter(input);
expect(fixes.some(f => f.code === 'MISSING_CLOSE')).toBe(true);
// After fix, parsing should find a closing --- before the heading.
const idxClose = content.indexOf('---', 3);
const idxHeading = content.indexOf('# A heading');
expect(idxClose).toBeGreaterThan(0);
expect(idxClose).toBeLessThan(idxHeading);
});
// Regression for #3225: a `#`-prefixed line inside an already-closed
// frontmatter fence is a YAML comment, not a markdown heading. The old
// MISSING_CLOSE scan broke out on the first heading-shaped line without
// continuing to look for the real closer, so it inserted a spurious
// `---` before the comment and split valid frontmatter in two — pushing
// the real keys (title, pubDate, ...) into the document body.
test('does not corrupt closed frontmatter containing a YAML comment line', () => {
const input = `${fence}\n# a YAML comment inside the frontmatter block\ntitle: "Real Title"\npubDate: 2026-06-29\n${fence}\nBody...`;
const { content, fixes } = autoFixFrontmatter(input);
expect(content).toBe(input);
expect(fixes).toEqual([]);
});
test('does not corrupt closed frontmatter that is comment-only', () => {
const input = `${fence}\n# just a comment\n# another comment\n${fence}\nBody`;
const { content, fixes } = autoFixFrontmatter(input);
expect(content).toBe(input);
expect(fixes).toEqual([]);
});
test('does not corrupt closed frontmatter with an indented `#` line inside a YAML block scalar', () => {
const input = `${fence}\ndescription: |\n # not a heading, just literal block-scalar text\ntitle: ok\n${fence}\nBody`;
const { content, fixes } = autoFixFrontmatter(input);
expect(content).toBe(input);
expect(fixes).toEqual([]);
});
test('YAML comment before close does not suppress an unrelated real fix (SLUG_MISMATCH)', () => {
const input = `${fence}\n# a YAML comment\ntitle: hi\nslug: wrong-slug\n${fence}\nBody`;
const { content, fixes } = autoFixFrontmatter(input, { filePath: 'people/jane-doe.md' });
expect(fixes.some(f => f.code === 'MISSING_CLOSE')).toBe(false);
expect(fixes.some(f => f.code === 'SLUG_MISMATCH')).toBe(true);
// The frontmatter fence itself must stay intact — only the slug line
// is removed, the comment/title/close survive unchanged.
expect(content).toBe(`${fence}\n# a YAML comment\ntitle: hi\n\n${fence}\nBody`);
});
test('rewrites nested-quote title to single-quoted', () => {
const input = `${fence}\ntype: concept\ntitle: "Phil "Nick" Last"\n${fence}\n\nbody`;
const { content, fixes } = autoFixFrontmatter(input);
expect(fixes.some(f => f.code === 'NESTED_QUOTES')).toBe(true);
// Outer wrapper is now single quotes.
expect(content).toMatch(/^title: '.*'\s*$/m);
});
test('removes mismatched slug field', () => {
const input = `${fence}\ntype: concept\ntitle: hi\nslug: wrong-slug\n${fence}\n\nbody`;
const { content, fixes } = autoFixFrontmatter(input, { filePath: 'people/jane-doe.md' });
expect(fixes.some(f => f.code === 'SLUG_MISMATCH')).toBe(true);
expect(content).not.toMatch(/^slug:/m);
});
test('idempotent: running twice produces no diff and no fixes on second pass', () => {
const input = `${fence}\ntype: concept\ntitle: "Phil "Nick" Last"\n${fence}\n\nbody\x00`;
const first = autoFixFrontmatter(input);
const second = autoFixFrontmatter(first.content);
expect(second.content).toBe(first.content);
expect(second.fixes).toEqual([]);
});
test('clean input: no fixes, content unchanged', () => {
const input = `${fence}\ntype: concept\ntitle: ok\n${fence}\n\nbody`;
const { content, fixes } = autoFixFrontmatter(input);
expect(content).toBe(input);
expect(fixes).toEqual([]);
});
// v0.37.9.0 — Step 3a canonical-style normalization for tags/aliases arrays.
// The validator post-v0.37.5.0 no longer flags `tags: ["yc"]` as broken,
// but this pass still rewrites it for consistency with serializeFrontmatter.
test('step 3a: normalizes JSON-style double-quoted tags to single-quoted', () => {
const input = `${fence}\ntype: person\ntags: ["yc", "w2025"]\n${fence}\n\nbody`;
const { content, fixes } = autoFixFrontmatter(input);
expect(fixes.some(f => f.code === 'NESTED_QUOTES')).toBe(true);
expect(content).toContain("tags: ['yc', 'w2025']");
expect(content).not.toContain('tags: ["yc", "w2025"]');
});
test('step 3a: apostrophe in item falls back to double quotes', () => {
const input = `${fence}\ntype: person\ntags: ["Men's Fashion", "yc"]\n${fence}\n\nbody`;
const { content } = autoFixFrontmatter(input);
// Apostrophe item keeps double quotes; clean item uses single.
expect(content).toContain(`tags: ["Men's Fashion", 'yc']`);
});
test('step 3a: empty item handled as empty single-quoted scalar', () => {
const input = `${fence}\ntype: person\ntags: ["", "yc"]\n${fence}\n\nbody`;
const { content } = autoFixFrontmatter(input);
expect(content).toContain(`tags: ['', 'yc']`);
});
test('step 3a: non-allow-listed keys untouched (metrics, scores, etc.)', () => {
const input = `${fence}\ntype: company\nmetrics: ["1", "2", "3"]\nscores: ["a", "b"]\n${fence}\n\nbody`;
const { content, fixes } = autoFixFrontmatter(input);
// Only `tags` and `aliases` are in the allow-list.
expect(content).toContain('metrics: ["1", "2", "3"]');
expect(content).toContain('scores: ["a", "b"]');
expect(fixes.some(f => f.code === 'NESTED_QUOTES')).toBe(false);
});
test('step 3a applies to aliases: key as well as tags:', () => {
const input = `${fence}\ntype: person\naliases: ["Bob", "Robert"]\n${fence}\n\nbody`;
const { content, fixes } = autoFixFrontmatter(input);
expect(fixes.some(f => f.code === 'NESTED_QUOTES')).toBe(true);
expect(content).toContain("aliases: ['Bob', 'Robert']");
});
// codex outside-voice review (D7-2): when step 3a AND step 3 both fire on
// the same file, the audit must record ONE NESTED_QUOTES entry, not two.
// Otherwise frontmatter_integrity counts double-rewrites as two separate
// files needing repair.
test('step 3a + step 3 dedup: one NESTED_QUOTES fix record per file', () => {
const input = `${fence}\ntype: person\ntitle: "Phil "Nick" Last"\ntags: ["yc", "w2025"]\n${fence}\n\nbody`;
const { content, fixes } = autoFixFrontmatter(input);
const nestedQuotesFixes = fixes.filter(f => f.code === 'NESTED_QUOTES');
expect(nestedQuotesFixes.length).toBe(1);
// Both rewrites applied to the content.
expect(content).toContain("tags: ['yc', 'w2025']");
expect(content).toMatch(/^title: '.*'\s*$/m);
});
test('step 3a: idempotent (running twice on already-normalized leaves content unchanged)', () => {
const input = `${fence}\ntype: person\ntags: ['yc', 'w2025']\n${fence}\n\nbody`;
const { content, fixes } = autoFixFrontmatter(input);
expect(content).toBe(input);
expect(fixes).toEqual([]);
});
});
describe('writeBrainPage', () => {
let tmp: string;
beforeEach(() => {
tmp = mkdtempSync(join(tmpdir(), 'brain-writer-'));
});
afterEach(() => {
rmSync(tmp, { recursive: true, force: true });
});
test('happy path: writes file inside source', () => {
const file = join(tmp, 'people', 'jane.md');
const content = `${fence}\ntype: person\ntitle: Jane\n${fence}\n\nhello`;
writeBrainPage(file, content, { sourcePath: tmp });
expect(readFileSync(file, 'utf8')).toBe(content);
});
test('throws BrainWriterError when path is outside sourcePath', () => {
const elsewhere = mkdtempSync(join(tmpdir(), 'brain-writer-other-'));
try {
const offending = join(elsewhere, 'evil.md');
expect(() =>
writeBrainPage(offending, 'content', { sourcePath: tmp }),
).toThrow(BrainWriterError);
} finally {
rmSync(elsewhere, { recursive: true, force: true });
}
});
test('writes a centralized .bak before mutating an existing file', () => {
// v0.36.x #902: backups land under ~/.gbrain/backups/frontmatter/... not
// next to the source file (pre-fix littered the brain tree with .bak
// files that broke gitignore expectations). The returned backupPath is
// the contract — the test asserts both the path shape and that the
// backup faithfully captures the pre-write content.
const file = join(tmp, 'people', 'jane.md');
mkdirSync(join(tmp, 'people'), { recursive: true });
const original = `${fence}\ntype: person\ntitle: Old\n${fence}\n\nold`;
writeFileSync(file, original);
const backupRoot = mkdtempSync(join(tmpdir(), 'gbrain-test-backups-'));
try {
const { backupPath } = writeBrainPage(
file,
`${fence}\ntype: person\ntitle: New\n${fence}\n\nnew`,
{ sourcePath: tmp, backupRoot },
);
expect(backupPath).toBeDefined();
// Centralized — under the test-injected backupRoot, NOT a sibling .bak.
expect(existsSync(file + '.bak')).toBe(false);
expect(backupPath!.startsWith(backupRoot + '/')).toBe(true);
expect(backupPath!.endsWith('.bak')).toBe(true);
expect(existsSync(backupPath!)).toBe(true);
expect(readFileSync(backupPath!, 'utf8')).toBe(original);
} finally {
rmSync(backupRoot, { recursive: true, force: true });
}
});
test('autoFix: true repairs nested quotes before writing', () => {
const file = join(tmp, 'people', 'jane.md');
const broken = `${fence}\ntype: person\ntitle: "Phil "Nick" Last"\n${fence}\n\nbody`;
const { fixes } = writeBrainPage(file, broken, { sourcePath: tmp, autoFix: true });
expect(fixes.some(f => f.code === 'NESTED_QUOTES')).toBe(true);
expect(readFileSync(file, 'utf8')).toMatch(/^title: '.*'\s*$/m);
});
});
describe('scanBrainSources (PGLite)', () => {
let tmp: string;
let engine: PGLiteEngine;
// One PGLite per file — beforeEach wipes data only. PGLite cold-start is
// ~20s on CI; sharing one engine across 6 tests in this block saves ~2 min.
beforeAll(async () => {
engine = new PGLiteEngine();
await engine.connect({});
await engine.initSchema();
});
afterAll(async () => {
await engine.disconnect();
});
beforeEach(async () => {
await resetPgliteState(engine);
tmp = mkdtempSync(join(tmpdir(), 'brain-writer-scan-'));
});
afterEach(() => {
rmSync(tmp, { recursive: true, force: true });
});
async function registerSource(id: string, path: string) {
await engine.executeRaw(
`INSERT INTO sources (id, name, local_path) VALUES ($1, $1, $2)
ON CONFLICT (id) DO UPDATE SET local_path = EXCLUDED.local_path`,
[id, path],
);
}
test('returns ok=true for empty source', async () => {
await registerSource('empty', tmp);
const report = await scanBrainSources(engine);
expect(report.ok).toBe(true);
expect(report.total).toBe(0);
const empty = report.per_source.find(s => s.source_id === 'empty');
expect(empty).toBeDefined();
expect(empty!.total).toBe(0);
});
test('detects errors across multiple sources', async () => {
const srcA = join(tmp, 'a');
const srcB = join(tmp, 'b');
mkdirSync(srcA, { recursive: true });
mkdirSync(srcB, { recursive: true });
writeFileSync(join(srcA, 'p1.md'), `${fence}\ntype: x\ntitle: ok\n${fence}\n\nbody\x00`);
writeFileSync(join(srcB, 'p2.md'), `${fence}\ntype: x\ntitle: "P "I" L"\n${fence}\n\nbody`);
await registerSource('alpha', srcA);
await registerSource('beta', srcB);
const report = await scanBrainSources(engine);
expect(report.ok).toBe(false);
expect(report.total).toBeGreaterThan(0);
const alpha = report.per_source.find(s => s.source_id === 'alpha')!;
const beta = report.per_source.find(s => s.source_id === 'beta')!;
expect(alpha.errors_by_code.NULL_BYTES).toBeGreaterThanOrEqual(1);
expect(beta.errors_by_code.NESTED_QUOTES).toBeGreaterThanOrEqual(1);
});
test('respects sourceId filter', async () => {
const srcA = join(tmp, 'a');
const srcB = join(tmp, 'b');
mkdirSync(srcA, { recursive: true });
mkdirSync(srcB, { recursive: true });
writeFileSync(join(srcA, 'bad.md'), `${fence}\ntype: x\ntitle: ok\n${fence}\n\nbody\x00`);
writeFileSync(join(srcB, 'bad.md'), `${fence}\ntype: x\ntitle: ok\n${fence}\n\nbody\x00`);
await registerSource('alpha', srcA);
await registerSource('beta', srcB);
const onlyA = await scanBrainSources(engine, { sourceId: 'alpha' });
expect(onlyA.per_source.length).toBe(1);
expect(onlyA.per_source[0]!.source_id).toBe('alpha');
});
test('skips registered source with missing path', async () => {
await registerSource('ghost', join(tmp, 'does-not-exist'));
const report = await scanBrainSources(engine);
const ghost = report.per_source.find(s => s.source_id === 'ghost')!;
expect(ghost.total).toBe(0);
});
test('skips symlinks (matches sync no-symlink policy)', async () => {
mkdirSync(join(tmp, 'real'), { recursive: true });
writeFileSync(join(tmp, 'real', 'good.md'), `${fence}\ntype: x\ntitle: ok\n${fence}\n\nbody`);
// Create a symlink loop: tmp/real/loop -> tmp/real
try {
symlinkSync(join(tmp, 'real'), join(tmp, 'real', 'loop'));
} catch {
// Some CI environments forbid symlink creation; skip the assertion.
return;
}
await registerSource('with-symlink', tmp);
const report = await scanBrainSources(engine);
// The walk should complete without infinite-looping; at most one .md
// entry visited (via the real path, not the symlink).
expect(report.per_source[0]!.total).toBe(0);
});
test('AbortSignal before scan: every source marked skipped (v0.38.2.0 partial-state contract)', async () => {
const src = join(tmp, 'big');
mkdirSync(src, { recursive: true });
for (let i = 0; i < 50; i++) {
writeFileSync(join(src, `p${i}.md`), `${fence}\ntype: x\ntitle: t${i}\n${fence}\n\nbody`);
}
await registerSource('big', src);
const ctrl = new AbortController();
ctrl.abort();
const report = await scanBrainSources(engine, { signal: ctrl.signal });
// v0.38.2.0 changed the contract: instead of an empty per_source array
// (which hid the fact that sources weren't checked), the report now
// includes a 'skipped' entry per source the outer loop never reached.
// Doctor renders these as "NOT SCANNED" so the user knows.
expect(report.per_source.length).toBe(1);
expect(report.per_source[0].status).toBe('skipped');
expect(report.per_source[0].files_scanned).toBe(0);
expect(report.partial).toBe(true);
expect(report.ok).toBe(false);
});
});