File size: 1,125 Bytes
6b2c154 | 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 | """Tests for src.rag.clinical.loader."""
from __future__ import annotations
from pathlib import Path
import pytest
from src.rag.clinical import loader
from tests.fixtures.build_tiny_clinical_index import build as build_tiny
class TestLoadIndex:
def test_load_returns_payload_with_expected_keys(self, tmp_path: Path) -> None:
idx_path = build_tiny(tmp_path / "tiny.pkl")
payload = loader.load_index(idx_path)
assert {"chunks", "vectorizer", "matrix"} <= set(payload)
assert len(payload["chunks"]) == 4
def test_missing_index_raises(self, tmp_path: Path) -> None:
with pytest.raises(FileNotFoundError, match="clinical RAG index not found"):
loader.load_index(tmp_path / "nope.pkl")
def test_unique_sources(self, tmp_path: Path) -> None:
idx_path = build_tiny(tmp_path / "tiny.pkl")
payload = loader.load_index(idx_path)
sources = {c.source for c in payload["chunks"]}
assert sources == {
"alzheimers_lifestyle.pdf", "parkinsons_motor.pdf",
"alzheimers_mci.pdf", "parkinsons_nutrition.pdf",
}
|