mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
41 lines
956 B
Python
41 lines
956 B
Python
from collections.abc import Generator
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
from paperless_tika.parsers import TikaDocumentParser
|
|
|
|
|
|
@pytest.fixture()
|
|
def tika_parser() -> Generator[TikaDocumentParser, None, None]:
|
|
try:
|
|
parser = TikaDocumentParser(logging_group=None)
|
|
yield parser
|
|
finally:
|
|
parser.cleanup()
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def sample_dir() -> Path:
|
|
return (Path(__file__).parent / Path("samples")).resolve()
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def sample_odt_file(sample_dir: Path) -> Path:
|
|
return sample_dir / "sample.odt"
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def sample_docx_file(sample_dir: Path) -> Path:
|
|
return sample_dir / "sample.docx"
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def sample_doc_file(sample_dir: Path) -> Path:
|
|
return sample_dir / "sample.doc"
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def sample_broken_odt(sample_dir: Path) -> Path:
|
|
return sample_dir / "multi-part-broken.odt"
|