Spaces:
Sleeping
Sleeping
File size: 8,806 Bytes
32d2d9e b6beb2d 32d2d9e b6beb2d 32d2d9e b6beb2d 32d2d9e b6beb2d 32d2d9e b6beb2d 32d2d9e b6beb2d 32d2d9e b6beb2d 32d2d9e b6beb2d 32d2d9e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 | """Unit tests for the folder watcher / batch runner (build-plan task 4.2).
All tests are fully offline: they use ``tmp_path`` for isolated directories,
the ``StubBackend`` for deterministic extraction, and inject an ``acquire``
callable that skips real parsing. No network, no Docling, no real models.
Acceptance criteria (T8):
- A mixed batch (PDF + image + corrupt file) all process without stopping.
- Valid files move to processed/ or review/ based on their decision.
- A corrupt file (unreadable) routes to review/ with a logged reason.
- A duplicate (same content hash) is persisted only once.
- Unsupported file types are skipped, not crashed on.
"""
from __future__ import annotations
from datetime import date
from pathlib import Path
from unittest.mock import patch
from docfield.backends.base import DocumentPayload
from docfield.backends.stub import DEFAULT_STUB_DOCUMENT, StubBackend
from docfield.config import load_config
from docfield.ingest.watcher import _process_one, process_inbox
from docfield.store.db import record_count
# ---------------------------------------------------------------------------
# Fixtures
# ---------------------------------------------------------------------------
def _settings(tmp_path: Path):
"""Settings pointing all paths into a tmp_path tree."""
return load_config(
extraction_backend="ollama",
image_strategy="ocr_then_text",
inbox_dir=str(tmp_path / "inbox"),
processed_dir=str(tmp_path / "processed"),
review_dir=str(tmp_path / "review"),
db_path=str(tmp_path / "docfield.db"),
)
def _stub_backend_accept():
return StubBackend()
def _stub_backend_review():
"""Stub whose data fails H2 so the pipeline routes to review."""
broken = dict(DEFAULT_STUB_DOCUMENT)
broken["total"] = 999.99
return StubBackend(data=broken, field_confidence={})
def _make_pdf(inbox: Path, name: str = "doc.pdf") -> Path:
"""Write a minimal valid-looking PDF file."""
p = inbox / name
p.write_bytes(b"%PDF-1.4 fake content")
return p
def _make_image(inbox: Path, name: str = "photo.jpeg") -> Path:
p = inbox / name
p.write_bytes(b"\xff\xd8\xff fake jpeg")
return p
def _make_corrupt(inbox: Path, name: str = "corrupt.pdf") -> Path:
"""Write a file that will cause file_sha256 to fail (directory trick via mock)."""
p = inbox / name
p.write_bytes(b"") # exists but empty; sha256 succeeds; we corrupt at process time
return p
def _patched_process_inbox(settings, backend, today=date(2024, 6, 1)):
"""Run process_inbox with an injected backend and acquire stub."""
def _acquire(path: Path, modality):
return DocumentPayload(modality=modality, source_path=path, text="stub text")
with patch("docfield.ingest.watcher.create_backend", return_value=backend), \
patch("docfield.core._make_acquire", return_value=_acquire), \
patch("docfield.core.date") as mock_date:
mock_date.today.return_value = today
return process_inbox(settings)
# ---------------------------------------------------------------------------
# _process_one: per-document behaviour
# ---------------------------------------------------------------------------
def test_accepted_document_moves_to_processed(tmp_path: Path) -> None:
"""An auto-accepted document ends up in processed/ and is persisted."""
settings = _settings(tmp_path)
inbox = Path(settings.inbox_dir)
inbox.mkdir(parents=True)
src = _make_pdf(inbox)
def _acquire(path, modality):
return DocumentPayload(modality=modality, source_path=path, text="stub")
with patch("docfield.core._make_acquire", return_value=_acquire):
_process_one(src, settings, _stub_backend_accept())
assert not src.exists()
assert (Path(settings.processed_dir) / src.name).exists()
assert record_count(Path(settings.db_path)) == 1
def test_review_document_moves_to_review(tmp_path: Path) -> None:
"""A document routed to review ends up in review/ and is NOT persisted."""
settings = _settings(tmp_path)
inbox = Path(settings.inbox_dir)
inbox.mkdir(parents=True)
src = _make_pdf(inbox)
def _acquire(path, modality):
return DocumentPayload(modality=modality, source_path=path, text="stub")
with patch("docfield.core._make_acquire", return_value=_acquire):
_process_one(src, settings, _stub_backend_review())
assert not src.exists()
assert (Path(settings.review_dir) / src.name).exists()
assert record_count(Path(settings.db_path)) == 0
def test_corrupt_file_routes_to_review_loop_continues(tmp_path: Path) -> None:
"""A file that raises during hashing is moved to review; no exception propagates."""
settings = _settings(tmp_path)
inbox = Path(settings.inbox_dir)
inbox.mkdir(parents=True)
src = _make_pdf(inbox, "corrupt.pdf")
with patch("docfield.ingest.watcher.file_sha256", side_effect=OSError("unreadable")):
_process_one(src, settings, _stub_backend_accept()) # must not raise
assert not src.exists()
assert (Path(settings.review_dir) / src.name).exists()
assert record_count(Path(settings.db_path)) == 0
def test_already_moved_file_is_skipped_silently(tmp_path: Path) -> None:
"""_process_one is a no-op when the file no longer exists (race guard)."""
settings = _settings(tmp_path)
ghost = tmp_path / "inbox" / "ghost.pdf" # never created
_process_one(ghost, settings, _stub_backend_accept()) # must not raise
assert record_count(Path(settings.db_path)) == 0
# ---------------------------------------------------------------------------
# process_inbox: batch mode
# ---------------------------------------------------------------------------
def test_batch_processes_mixed_files(tmp_path: Path) -> None:
"""A batch of PDF + image files all process; counts add up."""
settings = _settings(tmp_path)
inbox = Path(settings.inbox_dir)
inbox.mkdir(parents=True)
_make_pdf(inbox, "a.pdf")
_make_image(inbox, "b.jpeg")
counts = _patched_process_inbox(settings, _stub_backend_accept())
assert counts["processed"] == 2
assert counts["skipped"] == 0
def test_batch_unsupported_files_are_skipped(tmp_path: Path) -> None:
"""Files with unsupported extensions are skipped, not crashed on."""
settings = _settings(tmp_path)
inbox = Path(settings.inbox_dir)
inbox.mkdir(parents=True)
(inbox / "readme.txt").write_text("hello")
(inbox / "data.csv").write_text("a,b")
_make_pdf(inbox, "invoice.pdf")
counts = _patched_process_inbox(settings, _stub_backend_accept())
assert counts["skipped"] == 2
assert counts["processed"] == 1
def test_batch_corrupt_file_does_not_stop_loop(tmp_path: Path) -> None:
"""A corrupt file routes to review and the rest of the batch continues."""
settings = _settings(tmp_path)
inbox = Path(settings.inbox_dir)
inbox.mkdir(parents=True)
_make_pdf(inbox, "good.pdf")
_make_pdf(inbox, "corrupt.pdf")
_make_image(inbox, "photo.jpeg")
def _acquire(path, modality):
return DocumentPayload(modality=modality, source_path=path, text="stub")
def _flaky_hash(path):
if "corrupt" in path.name:
raise OSError("disk error")
from docfield.utils.hash import file_sha256 as _real
return _real(path)
with patch("docfield.ingest.watcher.create_backend", return_value=_stub_backend_accept()), \
patch("docfield.core._make_acquire", return_value=_acquire), \
patch("docfield.ingest.watcher.file_sha256", side_effect=_flaky_hash):
counts = process_inbox(settings)
assert counts["processed"] == 3 # all three attempted
assert (Path(settings.review_dir) / "corrupt.pdf").exists()
def test_batch_duplicate_hash_persisted_once(tmp_path: Path) -> None:
"""Two files with identical content produce only one DB record."""
settings = _settings(tmp_path)
inbox = Path(settings.inbox_dir)
inbox.mkdir(parents=True)
content = b"%PDF-1.4 identical"
(inbox / "a.pdf").write_bytes(content)
(inbox / "b.pdf").write_bytes(content)
counts = _patched_process_inbox(settings, _stub_backend_accept())
assert counts["processed"] == 2
assert record_count(Path(settings.db_path)) == 1
def test_batch_creates_directories(tmp_path: Path) -> None:
"""process_inbox creates inbox, processed, and review dirs if absent."""
settings = _settings(tmp_path)
# Directories do not exist yet.
assert not Path(settings.inbox_dir).exists()
_patched_process_inbox(settings, _stub_backend_accept())
assert Path(settings.inbox_dir).exists()
assert Path(settings.processed_dir).exists()
assert Path(settings.review_dir).exists()
|