- Executed cargo fuzz build profile_yaml successfully
- Binary built at fuzz/target/x86_64-unknown-linux-gnu/release/profile_yaml (58MB)
- No errors or warnings during build
- Build completed without hangs or delays
Closes bf-3xl3t
Closes bf-3h10m. Verification: notes/bf-3h10m.md.
The fixture discovery functionality was already implemented in
tests/forms_integration.rs. All acceptance criteria PASS:
- Function discovers all .pdf files in tests/fixtures/forms/
- Test prints discovered fixture names when run
- Handles non-existent directory gracefully (empty vec)
- No compilation errors
Test execution: cargo test --test forms_integration test_discover_pdf_fixtures
Result: 1 passed, 0 failed
- Validated fuzz/fuzz_targets/profile_yaml.rs exists and has correct structure
- Verified imports match working fuzz target patterns
- Confirmed load_profile_yaml function exists in pdftract-core
- Checked Cargo.toml configuration for libfuzzer-sys and profiles feature
- All acceptance criteria PASS
Closes bf-4zhtc
- Add #[serde(default)] to unmapped_glyph_names field in UnmappedGlyphNamesConfig
- Field now defaults to empty Vec<String> when not specified in config files
- Add comprehensive integration tests covering all scenarios:
- Config without unmapped_glyph_names field (defaults to empty)
- Config with unmapped_glyph_names specified (parses correctly)
- Config with explicit empty array (works as expected)
- Minimal empty config (all fields default appropriately)
Acceptance criteria:
- ✅ unmapped_glyph_names defaults to empty list when not specified
- ✅ Default value handling integrates cleanly with existing config logic
- ✅ Code compiles without errors
- ✅ Both specified and unspecified cases work correctly (4/4 tests pass)
Closes bf-34xgg
Created verification note documenting:
- TestExecutionResult struct at tests/encryption_fixtures.rs:189
- All required field accessors (exit_code, stdout, stderr, success)
- Assertion methods for encryption test validation
- Naming discrepancy note (bead refers to ExtractionResult, actual struct is TestExecutionResult)
- Location and Debug derive verified
Closes bf-5gjeo
- Use UnmappedGlyphNamesConfig struct for proper deserialization
- Replace serde_json::Value with typed parsing for better error messages
- Handle both empty and populated glyph name lists correctly
- Add verification note at notes/bf-66dwv.md
Closes bf-66dwv
Added typed config struct for unmapped glyph names configuration:
- unmapped_glyph_names: Vec<String> - list of glyph names to skip
- description: Option<String> - optional documentation
- version: Option<String> - format version identifier
The struct represents the JSON structure from build/unmapped-glyph-names.json
and is ready for parsing implementation in follow-up beads.
Closes bf-3vo80. Verification: notes/bf-3vo80.md
Fixed Debug formatting issue in test_truncated_flate_recovery.rs where XrefResolver
doesn't implement Debug. Changed assert to only format error case.
Verification:
- Basic fixture existence test passes
- Test compiles and runs without crashing
- Scaffold structure is in place for future implementation
Closes bf-3b41k
- Identified build/unmapped-glyph-names.json as the primary config file
- Documented DifferencesOverlay struct in encoding.rs as the Rust config structure
- Described the build-time generation process via build.rs
- Listed all files involved in the config pipeline
Closes bf-10vsm
Verified that the skip logic is fully implemented in encoding.rs:
- is_unmapped_glyph_name() method checks glyph names against unmapped set
- Skip logic at CMAP entry creation (line 227) prevents unmapped glyphs
- All tests pass (26/26 encoding tests)
- Clean skip with no errors or partial entries
Closes bf-2ts7z
Verify that the unmapped_glyph_names configuration is properly wired
through to the CMAP entry creation point in Type1 font encoding
differences parsing.
The configuration was already added in bf-4zgpr (commit 7660cfc8). This
bead confirms the wiring is complete:
- DifferencesOverlay stores unmapped_glyph_names as instance state
- Default initialization loads from global UNMAPPED_GLYPH_NAMES set
- Skip check at encoding.rs:227 filters unmapped glyphs before entry creation
- Custom configuration available via with_unmapped_glyph_names() constructor
Acceptance criteria:
- ✅ CMAP entry creation accepts unmapped_glyph_names (via self field)
- ✅ Configuration passes from defaults to entry creation
- ✅ Code compiles without errors
See notes/bf-2nn5x.md for detailed verification.
The CMAP skip check for unmapped glyphs was already implemented in
commit 7660cfc8 (bead bf-4zgpr). This note documents the verification
of that implementation.
Acceptance criteria verified:
- Code checks glyph name against unmapped_glyph_names ✓
- Unmapped glyphs are skipped during CMAP generation ✓
- Skip happens cleanly (no errors, no panics) ✓
- Code compiles without errors ✓
See notes/bf-3s7gd.md for details.
Add unmapped_glyph_names configuration field to DifferencesOverlay struct,
which serves as the CMAP generator for Type1 font encoding differences.
Changes:
- Added unmapped_glyph_names: HashSet<String> field to DifferencesOverlay
- Added with_unmapped_glyph_names() constructor for custom configuration
- Added is_unmapped_glyph_name() instance method for checking membership
- Added unmapped_glyph_names() getter and set_unmapped_glyph_names() setter
- Updated parse() to use instance method instead of global function
- Defaults to global UNMAPPED_GLYPH_NAMES set when not explicitly configured
Acceptance criteria:
- CMAP generator struct has unmapped_glyph_names field
- Field is HashSet<String> for O(1) lookup efficiency
- Field can be set via constructor or setter method
- Code compiles and all tests pass (24 encoding tests)
Closes bf-4zgpr. See notes/bf-4zgpr.md for verification details.
- Identified ToUnicodeMap::add_mapping() as primary creation point
- Located at crates/pdftract-core/src/font/cmap.rs:86-88
- Uses HashMap<Vec<u8>, Vec<char>> for storage
- Called from parse_beginbfchar() and parse_beginbfrange()
- Documents call sites and data structure for skip logic implementation
Closes bf-o4nrq
Captured version 0.1.0 from workspace Cargo.toml and commit hash b13db189.
Saved to /tmp/pdftract-version-info.txt for downstream bead use.
Closes bf-4636k
Verified all test helper functions, fixtures, and constants for encryption
testing are complete and functional per bead bf-1b9yf.
- Constants: EXIT_ENCRYPTED = 3 ✓
- Fixtures: 5 encrypted PDFs exist and are valid ✓
- Path functions: workspace_root, pdftract_bin, encrypted_fixture all work ✓
- Test helpers: run_pdftract_extract, assertion helpers all compile ✓
- Mock builders: dict builders for RC4/AES encryption ready ✓
- Verification tests: all pass in verify_encryption_fixtures.rs ✓
Closes bf-1b9yf
Located and documented the exact locations where ToUnicode entries are created:
- Primary storage: ToUnicodeMap::add_mapping() in cmap.rs:86-88
- Resolution entry: resolve_level1() in resolver.rs:397-401
- Documented data flow from PDF dictionaries through text extraction
- Identified existing filtering logic (empty/U+FFFD entries)
- Identified where to add future skip logic for unmapped glyphs
Closes bf-1pq0q. Verification: notes/bf-1pq0q.md.
All acceptance criteria met:
- All 5 test modules present and properly structured
- Fixture validation tests run successfully (not ignored)
- Encrypted PDF tests have #[ignore] with clear reasons
- File compiles successfully with no errors
- 10 encrypted PDF tests ignored, 3 fixture validation tests pass
Verification note: notes/bf-1or48.md
Identified where in the stream decoder fixture test the error assertion
should be added and what it should validate.
Key findings:
- flate_truncated fixture should emit STREAM_DECODE_ERROR diagnostic
- StreamDecoder::decode() trait doesn't support diagnostics output
- Test loop lacks diagnostic validation
- Assertion should be added after line 326 in test loop
- Test needs to be updated to use decode_stream() which returns DecodeResult with diagnostics
Closes bf-2hjaa.
Add verification note confirming all helper functions, constants, and fixture
infrastructure are in place and working correctly.
Verified:
- All 4 helper functions (workspace_root, encrypted_fixture_dir,
encrypted_fixture, pdftract_bin) present and functional
- ENCRYPTION_EXIT_CODE and ENCRYPTED_FIXTURES constants defined
- All 7 fixture files exist and are valid PDFs
- Code compiles successfully with zero errors
- Fixture validation tests pass (3/3)
Note: File structure differs from task description (simpler design without
diag_codes/error_messages/encryption_types modules or ExtractionResult
struct), but all core functionality is present and working.
Closes bf-36c0b
Analyzed how errors are organized in pdftract-core:
- ExtractionResult has page-level errors in PageResult.error
- ExtractionMetadata tracks error_count and diagnostics array
- JSON Output schema has structured errors array with DiagnosticJson
- Mapped error data flow from extraction to JSON output
Verification: notes/bf-4ix4m.md
Commented out unused internal module imports in encryption error tests
with comprehensive documentation explaining the subprocess testing
approach. Verified all modules exist and compile successfully.
Verified imports:
- pdftract_cli::password (crates/pdftract-cli/src/password.rs)
- pdftract_core::diagnostics types (crates/pdftract-core/src/diagnostics.rs)
Tests use std::process::Command to spawn CLI binary, not direct
module calls. Imports retained as comments for future reference.
Closes bf-31re9. Verification: notes/bf-31re9.md
- Test file test_truncated_flate_recovery.rs does not exist
- Correct error code is STREAM_DECODE_ERROR (not STREAM_DECOMPRESS_ERROR)
- Document extraction result errors array structure
- Document existing test patterns for error assertions
- Note implications for parent beads in dependency chain
Verified that the pdftract extract command integration is complete:
- All 6 forms_integration tests pass
- test_extract_all_discovered_pdfs() calls pdftract extract --json on each fixture
- Success/failure logging is implemented
- Test completes without panicking
Acceptance criteria: PASS (all 4 criteria met)
Closes bf-1oxk7
- Add std::process::Stdio to imports in both test files
- Update code to use imported Stdio instead of fully qualified paths
- Verify compilation succeeds with cargo check
Closes bf-3x4rp. Verification: notes/bf-3x4rp.md
- Updated degraded-200dpi-ground-truth.txt with accurate transcription
- Matches first 2500 chars of source document (as created by PDF generation script)
- Contains Abraham Lincoln public domain text with metadata
- Verified with diff against source content
- Includes verification note at notes/bf-cc7ru.md
Acceptance criteria:
✓ Ground truth file exists in tests/fixtures/scanned/low-quality/
✓ Accurately reflects source document content (verified)
✓ Properly formatted and readable
✓ Special characters handled appropriately
Closes bf-cc7ru
Implemented discovery logic already exists in tests/forms_integration.rs:
- discover_pdf_fixtures() uses walkdir for recursive PDF discovery
- find_pdf_fixtures() uses std::fs for non-recursive discovery
- All 6 tests pass, including test_discover_pdf_fixtures which prints discovered fixtures
- Test is idempotent with no side effects
Acceptance criteria:
✅ Discovers PDF files in tests/fixtures/forms/
✅ Prints discovered fixtures for verification
✅ cargo test forms_integration passes (6/6 tests)
✅ Test runs identically on repeated execution
Verification: notes/bf-14tjh.md
- Document acceptance criteria status (PASS/WARN items)
- Record corpus metrics and verification steps
- Note grep implementation blocked on 7.8.x beads
Documented the disposition of all untracked work products, verified clean
workspace state, and confirmed all commits pushed to forgejo.
Acceptance criteria:
- PASS: Encoding fixtures deferred to bf-512z1 (open bead)
- PASS: SDK templates handled by bf-5o8cg (closed bead)
- PASS: No untracked files requiring disposition
- PASS: Clean working tree verified
- PASS: cargo check passes
- PASS: All commits pushed to forgejo