Spaces:
Running
Running
File size: 15,092 Bytes
d9d0c2b 979f3c3 d9d0c2b 979f3c3 d9d0c2b 979f3c3 d9d0c2b 979f3c3 d9d0c2b 979f3c3 d9d0c2b 979f3c3 d9d0c2b 979f3c3 d9d0c2b 979f3c3 d9d0c2b 979f3c3 d9d0c2b 979f3c3 d9d0c2b 979f3c3 d9d0c2b 979f3c3 d9d0c2b 979f3c3 d9d0c2b 979f3c3 d9d0c2b 979f3c3 d9d0c2b 979f3c3 d9d0c2b | 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 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 | """Tests Sprint 50 β adaptation Google Vision pour exposer token_confidences.
Couvre :
1. ``_extract_token_confidences_from_full_text`` reconstruit chaque mot
par concatΓ©nation des ``word.symbols[i].text`` et associe la
``word.confidence``.
2. HiΓ©rarchie pages β blocks β paragraphs β words est traversΓ©e
correctement (multi-pages, multi-blocks).
3. Mots sans confidence, conf nΓ©gative, symboles vides β ignorΓ©s.
4. ``expose_confidences=False`` dΓ©sactive l'extraction.
5. ``full_text_annotation = None`` (cas TEXT_DETECTION) β retourne
``None``.
6. ``run()`` orchestre les deux chemins :
- SDK : ``response.full_text_annotation`` proto converti en dict
- REST : ``r["fullTextAnnotation"]`` directement utilisΓ©
Le texte reste celui de ``full_text_annotation.text``
(rΓ©trocompat).
7. Γchec API β ``error`` renseignΓ©, ``token_confidences = None``.
8. Conversion SDK β dict normalisΓ© : un mock proto est correctement
sΓ©rialisΓ©.
9. IntΓ©gration runner : ``calibration_metrics`` calculΓ©e bout-en-bout.
"""
from __future__ import annotations
import json
from pathlib import Path
from unittest.mock import MagicMock
import pytest
import picarones.engines.google_vision as gv_module
from picarones.engines.google_vision import GoogleVisionEngine
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Helpers : construire un fullTextAnnotation au format dict normalisΓ©
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _word(text: str, conf: float) -> dict:
return {
"confidence": conf,
"symbols": [{"text": c} for c in text],
}
def _full_text(words: list[dict]) -> dict:
return {
"pages": [{
"blocks": [{
"paragraphs": [{"words": words}],
}],
}],
}
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# 1-3. Extraction depuis full_text_annotation
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class TestExtractFromFullText:
def test_reconstructs_word_from_symbols(self) -> None:
engine = GoogleVisionEngine()
full = _full_text([_word("Bonjour", 0.95)])
assert engine._normalize_token_confidences(engine._extract_raw_confidences(full)) == [
{"token": "Bonjour", "confidence": 0.95},
]
def test_multiple_words(self) -> None:
engine = GoogleVisionEngine()
full = _full_text([
_word("Bonjour", 0.95),
_word("monde", 0.88),
])
out = engine._normalize_token_confidences(engine._extract_raw_confidences(full))
assert out == [
{"token": "Bonjour", "confidence": 0.95},
{"token": "monde", "confidence": 0.88},
]
def test_skips_word_without_confidence(self) -> None:
engine = GoogleVisionEngine()
full = _full_text([
{"confidence": 0.95, "symbols": [{"text": "ok"}]},
{"symbols": [{"text": "nope"}]}, # pas de confidence
{"confidence": None, "symbols": [{"text": "nope"}]}, # None
])
out = engine._normalize_token_confidences(engine._extract_raw_confidences(full))
assert out == [{"token": "ok", "confidence": 0.95}]
def test_skips_negative_confidence(self) -> None:
engine = GoogleVisionEngine()
full = _full_text([
_word("ok", 0.9),
_word("dropped", -0.1),
])
out = engine._normalize_token_confidences(engine._extract_raw_confidences(full))
assert out == [{"token": "ok", "confidence": 0.9}]
def test_skips_empty_text(self) -> None:
engine = GoogleVisionEngine()
full = _full_text([
_word("", 0.95),
_word("ok", 0.9),
])
out = engine._normalize_token_confidences(engine._extract_raw_confidences(full))
assert out == [{"token": "ok", "confidence": 0.9}]
def test_traverses_multiple_pages_and_blocks(self) -> None:
engine = GoogleVisionEngine()
full = {
"pages": [
{"blocks": [
{"paragraphs": [{"words": [_word("alpha", 0.9)]}]},
{"paragraphs": [{"words": [_word("beta", 0.85)]}]},
]},
{"blocks": [
{"paragraphs": [{"words": [_word("gamma", 0.8)]}]},
]},
],
}
out = engine._normalize_token_confidences(engine._extract_raw_confidences(full))
assert out is not None
tokens = [tc["token"] for tc in out]
assert tokens == ["alpha", "beta", "gamma"]
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# 4. expose_confidences=False
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class TestExposeFlag:
def test_disabled_returns_none(self) -> None:
engine = GoogleVisionEngine(config={"expose_confidences": False})
full = _full_text([_word("ok", 0.95)])
assert engine._normalize_token_confidences(engine._extract_raw_confidences(full)) is None
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# 5. Cas dΓ©gΓ©nΓ©rΓ©s
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class TestDegenerateInputs:
def test_none(self) -> None:
engine = GoogleVisionEngine()
assert engine._normalize_token_confidences(engine._extract_raw_confidences(None)) is None
def test_empty_dict(self) -> None:
engine = GoogleVisionEngine()
assert engine._normalize_token_confidences(engine._extract_raw_confidences({})) is None
def test_no_pages(self) -> None:
engine = GoogleVisionEngine()
assert engine._normalize_token_confidences(engine._extract_raw_confidences(
{"pages": []},
)) is None
def test_pages_without_blocks(self) -> None:
engine = GoogleVisionEngine()
assert engine._normalize_token_confidences(engine._extract_raw_confidences(
{"pages": [{"text": "raw text only"}]},
)) is None
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# 6. Conversion SDK β dict
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class TestSdkConversion:
def test_sdk_proto_to_dict(self) -> None:
# Simule un proto SDK avec des objets attribut-based
word_mock = MagicMock()
word_mock.confidence = 0.92
sym_b = MagicMock()
sym_b.text = "B"
sym_o = MagicMock()
sym_o.text = "o"
sym_n = MagicMock()
sym_n.text = "n"
word_mock.symbols = [sym_b, sym_o, sym_n]
para_mock = MagicMock()
para_mock.words = [word_mock]
block_mock = MagicMock()
block_mock.paragraphs = [para_mock]
page_mock = MagicMock()
page_mock.blocks = [block_mock]
full_mock = MagicMock()
full_mock.pages = [page_mock]
result = GoogleVisionEngine._sdk_full_text_to_dict(full_mock)
assert "pages" in result
assert len(result["pages"]) == 1
word = result["pages"][0]["blocks"][0]["paragraphs"][0]["words"][0]
assert word["confidence"] == pytest.approx(0.92)
assert "".join(s["text"] for s in word["symbols"]) == "Bon"
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# 7. run() bout-en-bout via mock du chemin rΓ©seau
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _patch_run_with_full(
monkeypatch: pytest.MonkeyPatch,
text: str,
full: dict | None,
*,
raise_exc: Exception | None = None,
) -> GoogleVisionEngine:
engine = GoogleVisionEngine()
engine._api_key = "test" # bypass auth check
def _fake(self, image_path):
if raise_exc is not None:
raise raise_exc
return text, full
monkeypatch.setattr(
GoogleVisionEngine, "_run_with_native", _fake,
)
return engine
class TestRunOverride:
def test_run_exposes_confidences(
self, monkeypatch: pytest.MonkeyPatch, tmp_path: Path,
) -> None:
engine = _patch_run_with_full(
monkeypatch,
text="Bonjour monde",
full=_full_text([_word("Bonjour", 0.95), _word("monde", 0.88)]),
)
img = tmp_path / "p.png"
img.write_bytes(b"x")
result = engine.run(img)
assert result.text == "Bonjour monde"
assert result.error is None
assert result.token_confidences is not None
assert len(result.token_confidences) == 2
def test_run_text_detection_no_confidences(
self, monkeypatch: pytest.MonkeyPatch, tmp_path: Path,
) -> None:
"""TEXT_DETECTION : full = None β token_confidences = None."""
engine = _patch_run_with_full(monkeypatch, text="Texte court", full=None)
img = tmp_path / "p.png"
img.write_bytes(b"x")
result = engine.run(img)
assert result.text == "Texte court"
assert result.token_confidences is None
def test_run_api_failure_keeps_error(
self, monkeypatch: pytest.MonkeyPatch, tmp_path: Path,
) -> None:
engine = _patch_run_with_full(
monkeypatch, text="", full=None,
raise_exc=RuntimeError("Quota exceeded"),
)
img = tmp_path / "p.png"
img.write_bytes(b"x")
result = engine.run(img)
assert result.error == "Quota exceeded"
assert result.text == ""
assert result.token_confidences is None
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# 8. REST direct : parsing du JSON complet
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class TestRESTPath:
def test_rest_passes_full_text_through(
self, monkeypatch: pytest.MonkeyPatch, tmp_path: Path,
) -> None:
"""Le chemin REST renvoie tel quel le ``fullTextAnnotation``
du JSON, qui est un dict directement consommable par
``_extract_token_confidences_from_full_text``."""
engine = GoogleVisionEngine()
engine._api_key = "test-key"
engine._credentials_path = None
# Mock urllib.request.urlopen pour retourner une rΓ©ponse REST
# contenant un fullTextAnnotation complet.
fake_response = json.dumps({
"responses": [{
"fullTextAnnotation": {
"text": "Bonjour",
**_full_text([_word("Bonjour", 0.97)]),
},
}],
}).encode("utf-8")
class FakeResp:
def __enter__(self):
return self
def __exit__(self, *args):
pass
def read(self):
return fake_response
monkeypatch.setattr(
gv_module.urllib.request, "urlopen",
lambda req, timeout=60: FakeResp(),
)
img = tmp_path / "p.png"
img.write_bytes(b"\x89PNG\r\n\x1a\n")
text, full = engine._run_via_rest(img)
assert text == "Bonjour"
assert full is not None
assert "pages" in full
# L'extraction passe ensuite normalement
out = engine._normalize_token_confidences(engine._extract_raw_confidences(full))
assert out == [{"token": "Bonjour", "confidence": 0.97}]
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# 9. IntΓ©gration runner
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class TestEndToEndWithRunner:
def test_runner_picks_up_google_vision_confidences(self) -> None:
from picarones.measurements.runner import _compute_document_result
from picarones.engines.base import EngineResult
ocr = EngineResult(
engine_name="google_vision",
image_path="/tmp/x.png",
text="alpha beta gamma",
duration_seconds=0.1,
token_confidences=[
{"token": "alpha", "confidence": 0.95},
{"token": "beta", "confidence": 0.92},
{"token": "gamma", "confidence": 0.97},
],
)
dr = _compute_document_result(
doc_id="d1", image_path="/tmp/x.png",
ground_truth="alpha beta gamma",
ocr_result=ocr, char_exclude=None,
)
assert dr.calibration_metrics is not None
assert dr.calibration_metrics["overall_accuracy"] == 1.0
assert dr.calibration_metrics["overall_confidence"] == pytest.approx(
(0.95 + 0.92 + 0.97) / 3,
)
|