design §3.7b 의 thin layer (ParsedBlock 류) 가 4 parser 중 1개 (markdown) 만 lift 를 경유하는 현실 — fan-in/fan-out 모두 1 → layer 의미 잃음. kebab-normalize (1097 LOC) + kebab-parse-types (98 LOC) 둘을 kebab-parse-md 로 흡수. 설계: docs/superpowers/specs/2026-05-26-normalize-absorption-spec.md 플랜: docs/superpowers/plans/2026-05-26-normalize-absorption-plan.md HOTFIXES: tasks/HOTFIXES.md 의 2026-05-26 entry (design deviation) - 5 사용 type + 3 forward-declared struct → kebab-parse-md::types module 의 pub explicit re-export. - build_canonical_document + derive_title + warning_agent → kebab-parse-md::normalize module. - 4 hard-coded agent literal (lib.rs:122/128/134/153) + warning_agent body return + tracing target literal 모두 보존 — stage label 일관성. - kebab-app callsite (lib.rs:51 use + :1119 context string) + Cargo.toml 의 2 dep (regular + dead) 제거. - kebab-chunk + kebab-store-sqlite 의 [dev-dependencies] kebab-normalize → 제거 (kebab-parse-md 로 갈음). 통합 test source 의 use shift. - test file 이동 (kebab-normalize/tests/normalize_snapshot.rs → kebab-parse-md/tests/). - workspace Cargo.toml: Hunk (a) members 2 entry 삭제 + Hunk (b) version 0.18.0 → 0.19.0 (frozen contract 변경). - design §3.7b 4-단락 재작성 (원래 intent 보존 + 현재 상태 + 보존된 surface + future re-extraction trigger). - design §8 graph 갱신 (3 edge 제거 + 2 forbidden bullet 의미 갱신 + commentary). - ARCHITECTURE.md crate graph + directory tree mechanical 갱신. - tasks/INDEX.md L169 closure mention + "Future work / deferred" 섹션 신설 (image/pdf normalize integration entry). - tasks/HOTFIXES.md 신규 entry (4-block — design deviation Symptom). - HANDOFF.md cross-link 한 줄. - 3 dead struct (ParsedImageRegion / ParsedPdfPage / ParsedAudioSegment) 는 보존 — v0.20+ image/pdf normalize integration 의 future surface (spec §11). Wire / surface impact: 0건. CLI / TUI / MCP / --json 출력 / config / XDG path / parser_version 모두 unchanged. wire-invisible provenance.events[].agent + tracing target literal "kb-normalize" 도 보존 — old DB row 와 new DB row 의 audit log 일관성. Verification: cargo test --workspace --no-fail-fast -j 1 → 1313 passed / 0 failed (172 result blocks). cargo clippy --workspace --all-targets -j 1 -- -D warnings → 0 warning (5m 46s). cargo metadata --no-deps --format-version 1 | jq '.workspace_members | length' = 22. cargo tree -p kebab-app --depth 2 | grep -E "kebab_(parse_types|normalize)" = 0 줄.
117 lines
3.9 KiB
Rust
117 lines
3.9 KiB
Rust
//! Snapshot tests pinning the `parse_blocks` output for two fixtures.
|
|
//!
|
|
//! Baselines are hand-authored / regenerated via the `--ignored` emitter
|
|
//! below. `body_offset_lines = 1` is used for both fixtures (no
|
|
//! frontmatter, body starts at file line 1).
|
|
//!
|
|
//! Note: kb-parse-md's snapshot tests use the `#[ignore]` regenerator
|
|
//! pattern (run `cargo test ... -- --ignored` to refresh baselines),
|
|
//! whereas `kb-normalize`'s integration test uses an `UPDATE_SNAPSHOTS=1`
|
|
//! env-var pattern. Migrating kb-parse-md to the env-var style is out of
|
|
//! scope; both styles are intentional for now.
|
|
//!
|
|
//! Following the kebab_core::Inline schema migration (struct-variant shape),
|
|
//! `ParsedBlock` now serializes directly through serde — no projection
|
|
//! shim is required. Inlines surface as structured objects, e.g.
|
|
//! `[{"kind":"text","text":"…"},{"kind":"code","code":"…"}]`.
|
|
|
|
use kebab_parse_md::parse_blocks;
|
|
use kebab_parse_md::{ParsedBlock, Warning};
|
|
use serde::Serialize;
|
|
use serde_json::Value;
|
|
use std::fs;
|
|
use std::path::PathBuf;
|
|
|
|
#[derive(Serialize)]
|
|
struct Snapshot {
|
|
blocks: Vec<ParsedBlock>,
|
|
warnings: Vec<Warning>,
|
|
}
|
|
|
|
fn fixtures_dir() -> PathBuf {
|
|
PathBuf::from(env!("CARGO_MANIFEST_DIR"))
|
|
.join("..")
|
|
.join("..")
|
|
.join("fixtures")
|
|
.join("markdown")
|
|
}
|
|
|
|
fn assert_snapshot(fixture: &str, baseline: &str) {
|
|
let dir = fixtures_dir();
|
|
let bytes = fs::read(dir.join(fixture)).expect("fixture readable");
|
|
|
|
let (blocks, warns) = parse_blocks(&bytes, 1).unwrap();
|
|
let snap = Snapshot {
|
|
blocks,
|
|
warnings: warns,
|
|
};
|
|
let actual: Value = serde_json::to_value(&snap).unwrap();
|
|
|
|
let expected_text =
|
|
fs::read_to_string(dir.join(baseline)).expect("snapshot baseline readable");
|
|
let expected: Value = serde_json::from_str(&expected_text).expect("baseline parses as json");
|
|
|
|
if actual != expected {
|
|
let actual_pretty = serde_json::to_string_pretty(&actual).unwrap();
|
|
panic!(
|
|
"snapshot drift for {fixture}\n\
|
|
--- expected ({baseline}) ---\n{expected_text}\n\
|
|
--- actual ---\n{actual_pretty}\n\
|
|
If the change is intentional, update {baseline}."
|
|
);
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn nested_headings_blocks_snapshot() {
|
|
assert_snapshot(
|
|
"nested-headings.md",
|
|
"nested-headings.blocks.snapshot.json",
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn code_and_table_blocks_snapshot() {
|
|
assert_snapshot(
|
|
"code-and-table.md",
|
|
"code-and-table.blocks.snapshot.json",
|
|
);
|
|
}
|
|
|
|
/// Run with `cargo test -p kb-parse-md --test blocks_snapshots emit_blocks_snapshots -- --ignored --nocapture`
|
|
/// to regenerate the baseline JSON files from the current parser output.
|
|
#[test]
|
|
#[ignore]
|
|
fn emit_blocks_snapshots() {
|
|
let dir = fixtures_dir();
|
|
for (fixture, baseline) in [
|
|
("nested-headings.md", "nested-headings.blocks.snapshot.json"),
|
|
("code-and-table.md", "code-and-table.blocks.snapshot.json"),
|
|
] {
|
|
let bytes = fs::read(dir.join(fixture)).unwrap();
|
|
let (blocks, warns) = parse_blocks(&bytes, 1).unwrap();
|
|
let snap = Snapshot {
|
|
blocks,
|
|
warnings: warns,
|
|
};
|
|
let json = serde_json::to_string_pretty(&snap).unwrap();
|
|
fs::write(dir.join(baseline), format!("{json}\n")).unwrap();
|
|
eprintln!("wrote {}", dir.join(baseline).display());
|
|
}
|
|
}
|
|
|
|
/// Determinism: parsing the same fixture twice in a row must give equal output.
|
|
#[test]
|
|
fn snapshot_is_deterministic_across_runs() {
|
|
let dir = fixtures_dir();
|
|
let bytes = fs::read(dir.join("nested-headings.md")).unwrap();
|
|
let (a_blocks, a_warns) = parse_blocks(&bytes, 1).unwrap();
|
|
let (b_blocks, b_warns) = parse_blocks(&bytes, 1).unwrap();
|
|
assert_eq!(a_blocks, b_blocks);
|
|
assert_eq!(a_warns, b_warns);
|
|
assert_eq!(
|
|
serde_json::to_value(&a_blocks).unwrap(),
|
|
serde_json::to_value(&b_blocks).unwrap()
|
|
);
|
|
}
|