Runs after SetupStep. Dispatches the flat page list to the injected OCRClient, writes the raw OCRResult onto response.ocr_result, injects <page file="..." number="..."> open/close tag lines around each page's content, and builds a SegmentIndex over the non-tag lines when provenance is on. Validate follows the spec triad rule: - include_geometries/include_ocr_text/ocr_only + no files -> IX_000_004 - no files -> False (skip) - files + (use_ocr or triad) -> True 9 unit tests in tests/unit/test_ocr_step.py cover all three validate branches, OCRResult written, page tags injected (format + file_index), SegmentIndex built iff provenance on. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
199 lines
7.5 KiB
Python
199 lines
7.5 KiB
Python
"""Tests for :class:`ix.pipeline.ocr_step.OCRStep` (spec §6.2)."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import pytest
|
|
|
|
from ix.contracts import (
|
|
Context,
|
|
Line,
|
|
OCRDetails,
|
|
OCROptions,
|
|
OCRResult,
|
|
Options,
|
|
Page,
|
|
ProvenanceOptions,
|
|
RequestIX,
|
|
ResponseIX,
|
|
)
|
|
from ix.contracts.response import _InternalContext
|
|
from ix.errors import IXErrorCode, IXException
|
|
from ix.ocr import FakeOCRClient
|
|
from ix.pipeline.ocr_step import OCRStep
|
|
from ix.segmentation import PageMetadata, SegmentIndex
|
|
|
|
|
|
def _make_request(
|
|
*,
|
|
use_ocr: bool = True,
|
|
include_geometries: bool = False,
|
|
include_ocr_text: bool = False,
|
|
ocr_only: bool = False,
|
|
include_provenance: bool = True,
|
|
files: list | None = None,
|
|
texts: list[str] | None = None,
|
|
) -> RequestIX:
|
|
return RequestIX(
|
|
use_case="bank_statement_header",
|
|
ix_client_id="test",
|
|
request_id="r-1",
|
|
context=Context(files=files if files is not None else [], texts=texts or []),
|
|
options=Options(
|
|
ocr=OCROptions(
|
|
use_ocr=use_ocr,
|
|
include_geometries=include_geometries,
|
|
include_ocr_text=include_ocr_text,
|
|
ocr_only=ocr_only,
|
|
),
|
|
provenance=ProvenanceOptions(include_provenance=include_provenance),
|
|
),
|
|
)
|
|
|
|
|
|
def _response_with_context(
|
|
*,
|
|
pages: list[Page] | None = None,
|
|
files: list | None = None,
|
|
texts: list[str] | None = None,
|
|
page_metadata: list[PageMetadata] | None = None,
|
|
) -> ResponseIX:
|
|
resp = ResponseIX()
|
|
resp.context = _InternalContext(
|
|
pages=pages or [],
|
|
files=files or [],
|
|
texts=texts or [],
|
|
page_metadata=page_metadata or [],
|
|
)
|
|
return resp
|
|
|
|
|
|
def _canned_ocr(pages: int = 1) -> OCRResult:
|
|
return OCRResult(
|
|
result=OCRDetails(
|
|
text="\n".join(f"text p{i+1}" for i in range(pages)),
|
|
pages=[
|
|
Page(
|
|
page_no=i + 1,
|
|
width=100.0,
|
|
height=200.0,
|
|
lines=[
|
|
Line(
|
|
text=f"line-content p{i+1}",
|
|
bounding_box=[0, 0, 10, 0, 10, 5, 0, 5],
|
|
)
|
|
],
|
|
)
|
|
for i in range(pages)
|
|
],
|
|
)
|
|
)
|
|
|
|
|
|
class TestValidate:
|
|
async def test_ocr_only_without_files_raises_IX_000_004(self) -> None:
|
|
step = OCRStep(ocr_client=FakeOCRClient(canned=_canned_ocr()))
|
|
req = _make_request(ocr_only=True, files=[], texts=["hi"])
|
|
resp = _response_with_context(files=[])
|
|
with pytest.raises(IXException) as ei:
|
|
await step.validate(req, resp)
|
|
assert ei.value.code is IXErrorCode.IX_000_004
|
|
|
|
async def test_include_ocr_text_without_files_raises_IX_000_004(self) -> None:
|
|
step = OCRStep(ocr_client=FakeOCRClient(canned=_canned_ocr()))
|
|
req = _make_request(include_ocr_text=True, files=[], texts=["hi"])
|
|
resp = _response_with_context(files=[])
|
|
with pytest.raises(IXException) as ei:
|
|
await step.validate(req, resp)
|
|
assert ei.value.code is IXErrorCode.IX_000_004
|
|
|
|
async def test_include_geometries_without_files_raises_IX_000_004(self) -> None:
|
|
step = OCRStep(ocr_client=FakeOCRClient(canned=_canned_ocr()))
|
|
req = _make_request(include_geometries=True, files=[], texts=["hi"])
|
|
resp = _response_with_context(files=[])
|
|
with pytest.raises(IXException) as ei:
|
|
await step.validate(req, resp)
|
|
assert ei.value.code is IXErrorCode.IX_000_004
|
|
|
|
async def test_text_only_skips_step(self) -> None:
|
|
step = OCRStep(ocr_client=FakeOCRClient(canned=_canned_ocr()))
|
|
req = _make_request(use_ocr=True, files=[], texts=["hi"])
|
|
resp = _response_with_context(files=[], texts=["hi"])
|
|
assert await step.validate(req, resp) is False
|
|
|
|
async def test_ocr_runs_when_files_and_use_ocr(self) -> None:
|
|
step = OCRStep(ocr_client=FakeOCRClient(canned=_canned_ocr()))
|
|
req = _make_request(use_ocr=True, files=["http://x"])
|
|
resp = _response_with_context(files=[("/tmp/x.pdf", "application/pdf")])
|
|
assert await step.validate(req, resp) is True
|
|
|
|
|
|
class TestProcess:
|
|
async def test_ocr_result_written_to_response(self) -> None:
|
|
canned = _canned_ocr(pages=2)
|
|
step = OCRStep(ocr_client=FakeOCRClient(canned=canned))
|
|
req = _make_request(use_ocr=True, files=["http://x"])
|
|
resp = _response_with_context(
|
|
pages=[Page(page_no=1, width=100.0, height=200.0, lines=[])] * 2,
|
|
files=[("/tmp/x.pdf", "application/pdf")],
|
|
page_metadata=[PageMetadata(file_index=0), PageMetadata(file_index=0)],
|
|
)
|
|
resp = await step.process(req, resp)
|
|
# Full OCR result written.
|
|
assert resp.ocr_result.result.text == canned.result.text
|
|
# Page tags injected: prepend + append around lines per page.
|
|
pages = resp.ocr_result.result.pages
|
|
assert len(pages) == 2
|
|
# First line is the opening <page> tag.
|
|
assert pages[0].lines[0].text is not None
|
|
assert pages[0].lines[0].text.startswith("<page ")
|
|
# Last line is the closing </page> tag.
|
|
assert pages[0].lines[-1].text == "</page>"
|
|
|
|
async def test_segment_index_built_when_provenance_on(self) -> None:
|
|
canned = _canned_ocr(pages=1)
|
|
step = OCRStep(ocr_client=FakeOCRClient(canned=canned))
|
|
req = _make_request(
|
|
use_ocr=True, include_provenance=True, files=["http://x"]
|
|
)
|
|
resp = _response_with_context(
|
|
pages=[Page(page_no=1, width=100.0, height=200.0, lines=[])],
|
|
files=[("/tmp/x.pdf", "application/pdf")],
|
|
page_metadata=[PageMetadata(file_index=0)],
|
|
)
|
|
resp = await step.process(req, resp)
|
|
seg_idx = resp.context.segment_index # type: ignore[union-attr]
|
|
assert isinstance(seg_idx, SegmentIndex)
|
|
# Page-tag lines are excluded; only the real line becomes a segment.
|
|
assert seg_idx._ordered_ids == ["p1_l0"]
|
|
pos = seg_idx.lookup_segment("p1_l0")
|
|
assert pos is not None
|
|
assert pos["text"] == "line-content p1"
|
|
|
|
async def test_segment_index_not_built_when_provenance_off(self) -> None:
|
|
canned = _canned_ocr(pages=1)
|
|
step = OCRStep(ocr_client=FakeOCRClient(canned=canned))
|
|
req = _make_request(
|
|
use_ocr=True, include_provenance=False, files=["http://x"]
|
|
)
|
|
resp = _response_with_context(
|
|
pages=[Page(page_no=1, width=100.0, height=200.0, lines=[])],
|
|
files=[("/tmp/x.pdf", "application/pdf")],
|
|
page_metadata=[PageMetadata(file_index=0)],
|
|
)
|
|
resp = await step.process(req, resp)
|
|
assert resp.context.segment_index is None # type: ignore[union-attr]
|
|
|
|
async def test_page_tags_include_file_index(self) -> None:
|
|
canned = _canned_ocr(pages=1)
|
|
step = OCRStep(ocr_client=FakeOCRClient(canned=canned))
|
|
req = _make_request(use_ocr=True, files=["http://x"])
|
|
resp = _response_with_context(
|
|
pages=[Page(page_no=1, width=100.0, height=200.0, lines=[])],
|
|
files=[("/tmp/x.pdf", "application/pdf")],
|
|
page_metadata=[PageMetadata(file_index=3)],
|
|
)
|
|
resp = await step.process(req, resp)
|
|
first_line = resp.ocr_result.result.pages[0].lines[0].text
|
|
assert first_line is not None
|
|
assert 'file="3"' in first_line
|
|
assert 'number="1"' in first_line
|