Spaces:
Running
feat(app): Sprint A14-S22 — CLI du nouveau monde (import-corpus + report)
Browse filesPremier exécutable utilisable bout-en-bout du rewrite ciblé. Wrap
Click autour des services applicatifs livrés en S20 (CorpusService)
et S21 (ReportService).
Invocation
----------
::
python -m picarones.app.cli import-corpus mon_corpus.zip \
--output-dir ./workspaces/sess1 --corpus-name bnf_xviiie
python -m picarones.app.cli report ./runs/run_001 \
--output rapport.html --lang fr
Distinct du legacy
------------------
La CLI legacy ``picarones.cli`` reste opérationnelle (script
``picarones`` installé via ``pyproject.toml``). Cette nouvelle CLI
vit dans ``picarones.app.cli`` et s'invoque via ``python -m`` —
pas (encore) exposée comme console_script. Quand le rewrite atteint
la parité fonctionnelle, on bascule l'entry point et on supprime le
legacy.
Sous-commande ``import-corpus``
-------------------------------
Wrap minimal du ``CorpusService`` (S20). Options :
- ``--output-dir`` (requis) : répertoire parent du workspace.
- ``--corpus-name`` : sanitizé via ``safe_report_name``, défaut au
stem du ZIP.
- ``--metadata KEY=VALUE`` (répétable) : passe ``CorpusSpec.metadata``.
- ``--max-zip-mb`` / ``--max-entries`` / ``--max-uncompressed-mb`` :
plafonds anti zip bomb.
- ``--quiet`` : n'affiche que le chemin extrait (pour piping shell).
Codes de sortie : 0 succès, 1 erreur typée
(``CorpusImportError`` : ZIP corrompu, traversal, plafond
dépassé), 2 erreur d'usage Click (option mal formée).
Sous-commande ``report``
------------------------
Wrap minimal du ``ReportService`` (S21). Options :
- ``--output`` : chemin du fichier HTML à écrire. Si omis, HTML
sur stdout.
- ``--lang`` : ``fr`` (défaut) ou ``en``, validé par Click.
Codes de sortie : 0 succès, 1 fichiers persistés introuvables
(``FileNotFoundError`` typé sur ``run_manifest.json`` /
``pipeline_results.jsonl`` / ``view_results.jsonl``), 2 erreur
Click (run_dir inexistant, lang invalide).
Pourquoi pas ``run`` en S22
---------------------------
La commande ``run`` exigerait un ``RegistryService`` (à livrer
S23) qui mappe noms d'adapters → instances Python, plus un
chargeur YAML pour les pipeline specs. Elle dépend aussi de tous
les adapters OCR/LLM réels (couplage fort). S22 livre les deux
commandes qui n'ont besoin d'aucun registre.
Tests
-----
17 tests dans
``tests/cli/test_sprint_a14_s22_app_cli.py`` (CliRunner — pas de
subprocess) :
- Group : help liste les 2 sous-commandes ; invocation sans
sous-commande affiche help.
- ``import-corpus`` : 8 cas — basique, ``--quiet``, défaut
``--corpus-name`` depuis stem, ``--metadata`` valide, ``--metadata``
invalide (rejet), ZIP corrompu (exit 1), traversal détecté
(exit 1), ``--max-zip-mb`` enforced.
- ``report`` : 6 cas — vers fichier, vers stdout, run_dir
inexistant (exit 2 Click), run_dir vide sans manifest (exit 1
service), ``--lang en`` produit "Pipelines executed", ``--lang zh``
rejet Click.
- Smoke E2E : import-corpus puis (manuel persist) puis report —
démontre le workflow CLI complet.
479 tests sprint_a14 passent (462 S1-S21 + 17 S22).
https://claude.ai/code/session_011XQZNitg1rCgia8ZD1a2hP
- picarones/app/cli/__init__.py +60 -0
- picarones/app/cli/__main__.py +7 -0
- picarones/app/cli/import_corpus.py +180 -0
- picarones/app/cli/report.py +84 -0
- tests/cli/test_sprint_a14_s22_app_cli.py +382 -0
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""CLI du nouveau monde — Sprint A14-S22.
|
| 2 |
+
|
| 3 |
+
Point d'entrée Click ``cli`` qui regroupe les commandes consommant
|
| 4 |
+
les services applicatifs du rewrite (S20 ``CorpusService``, S21
|
| 5 |
+
``ReportService``).
|
| 6 |
+
|
| 7 |
+
Usage en S22
|
| 8 |
+
------------
|
| 9 |
+
|
| 10 |
+
::
|
| 11 |
+
|
| 12 |
+
python -m picarones.app.cli import-corpus mon_corpus.zip \\
|
| 13 |
+
--output-dir ./workspaces/sess1
|
| 14 |
+
python -m picarones.app.cli report ./runs/run_001 \\
|
| 15 |
+
--output rapport.html
|
| 16 |
+
|
| 17 |
+
Distinct du legacy
|
| 18 |
+
------------------
|
| 19 |
+
``picarones.cli`` (legacy) reste opérationnel — il est appelé par le
|
| 20 |
+
script ``picarones`` installé via ``pyproject.toml``. Cette nouvelle
|
| 21 |
+
CLI vit dans ``picarones.app.cli`` et n'est pas (encore) exposée
|
| 22 |
+
comme commande shell ; elle s'invoque via ``python -m``.
|
| 23 |
+
|
| 24 |
+
Quand le rewrite atteindra la parité fonctionnelle avec le legacy,
|
| 25 |
+
on basculera l'entry point ``console_scripts`` vers ce module et le
|
| 26 |
+
legacy sera supprimé.
|
| 27 |
+
|
| 28 |
+
Pourquoi pas ``picarones run``
|
| 29 |
+
------------------------------
|
| 30 |
+
La commande ``run`` exige un registre d'adapters OCR/LLM + un
|
| 31 |
+
chargeur de spec YAML — elle dépend d'un ``RegistryService`` non
|
| 32 |
+
encore livré (S23+). S22 livre les deux commandes qui n'ont besoin
|
| 33 |
+
d'aucun registre : ``import-corpus`` (S20) et ``report`` (S21).
|
| 34 |
+
"""
|
| 35 |
+
|
| 36 |
+
from __future__ import annotations
|
| 37 |
+
|
| 38 |
+
import click
|
| 39 |
+
|
| 40 |
+
from picarones.app.cli.import_corpus import import_corpus_command
|
| 41 |
+
from picarones.app.cli.report import report_command
|
| 42 |
+
|
| 43 |
+
|
| 44 |
+
@click.group(
|
| 45 |
+
name="picarones-rewrite",
|
| 46 |
+
help=(
|
| 47 |
+
"CLI du rewrite ciblé Picarones (S22). Sous-commandes : "
|
| 48 |
+
"import-corpus, report."
|
| 49 |
+
),
|
| 50 |
+
)
|
| 51 |
+
@click.version_option(package_name="picarones")
|
| 52 |
+
def cli() -> None:
|
| 53 |
+
"""Groupe principal."""
|
| 54 |
+
|
| 55 |
+
|
| 56 |
+
cli.add_command(import_corpus_command, name="import-corpus")
|
| 57 |
+
cli.add_command(report_command, name="report")
|
| 58 |
+
|
| 59 |
+
|
| 60 |
+
__all__ = ["cli"]
|
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Permet ``python -m picarones.app.cli ...``."""
|
| 2 |
+
|
| 3 |
+
from picarones.app.cli import cli
|
| 4 |
+
|
| 5 |
+
|
| 6 |
+
if __name__ == "__main__":
|
| 7 |
+
cli()
|
|
@@ -0,0 +1,180 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""``picarones-rewrite import-corpus`` — extraction sandboxée d'un ZIP.
|
| 2 |
+
|
| 3 |
+
Sprint A14-S22.
|
| 4 |
+
|
| 5 |
+
Wrapper CLI minimal autour du ``CorpusService`` (S20) :
|
| 6 |
+
|
| 7 |
+
::
|
| 8 |
+
|
| 9 |
+
python -m picarones.app.cli import-corpus mon_corpus.zip \\
|
| 10 |
+
--output-dir ./workspaces/sess1 \\
|
| 11 |
+
--corpus-name bnf_xviiie \\
|
| 12 |
+
--metadata language=fr \\
|
| 13 |
+
--metadata period=early_modern
|
| 14 |
+
|
| 15 |
+
Comportement
|
| 16 |
+
------------
|
| 17 |
+
- Lit le ZIP (path utilisateur, sans validation préalable — la CLI
|
| 18 |
+
fait confiance au filesystem local de l'opérateur).
|
| 19 |
+
- Crée un ``WorkspaceManager`` dans ``--output-dir`` (créé s'il
|
| 20 |
+
n'existe pas).
|
| 21 |
+
- Appelle ``CorpusService.import_zip``.
|
| 22 |
+
- Affiche un résumé lisible : n_documents, n_images sans GT, GT
|
| 23 |
+
orphelines, warnings.
|
| 24 |
+
- Code de sortie ``0`` succès, ``1`` erreur typée
|
| 25 |
+
(``CorpusImportError``), ``2`` erreur d'usage Click (gérée par
|
| 26 |
+
Click).
|
| 27 |
+
"""
|
| 28 |
+
|
| 29 |
+
from __future__ import annotations
|
| 30 |
+
|
| 31 |
+
import sys
|
| 32 |
+
from pathlib import Path
|
| 33 |
+
|
| 34 |
+
import click
|
| 35 |
+
|
| 36 |
+
from picarones.app.services import (
|
| 37 |
+
CorpusImportError,
|
| 38 |
+
CorpusService,
|
| 39 |
+
WorkspaceManager,
|
| 40 |
+
)
|
| 41 |
+
|
| 42 |
+
|
| 43 |
+
@click.command()
|
| 44 |
+
@click.argument(
|
| 45 |
+
"zip_path",
|
| 46 |
+
type=click.Path(
|
| 47 |
+
exists=True, dir_okay=False, file_okay=True, path_type=Path,
|
| 48 |
+
),
|
| 49 |
+
)
|
| 50 |
+
@click.option(
|
| 51 |
+
"--output-dir",
|
| 52 |
+
"output_dir",
|
| 53 |
+
type=click.Path(file_okay=False, dir_okay=True, path_type=Path),
|
| 54 |
+
required=True,
|
| 55 |
+
help=(
|
| 56 |
+
"Répertoire parent où créer le workspace sandboxé. Créé "
|
| 57 |
+
"s'il n'existe pas."
|
| 58 |
+
),
|
| 59 |
+
)
|
| 60 |
+
@click.option(
|
| 61 |
+
"--corpus-name",
|
| 62 |
+
default=None,
|
| 63 |
+
help=(
|
| 64 |
+
"Nom du corpus (défaut : nom du fichier ZIP sans "
|
| 65 |
+
"extension). Sera sanitizé automatiquement."
|
| 66 |
+
),
|
| 67 |
+
)
|
| 68 |
+
@click.option(
|
| 69 |
+
"--metadata",
|
| 70 |
+
"metadata_pairs",
|
| 71 |
+
multiple=True,
|
| 72 |
+
help=(
|
| 73 |
+
"Paires ``clé=valeur`` (option répétable). Ex : "
|
| 74 |
+
"``--metadata language=fr --metadata period=medieval``."
|
| 75 |
+
),
|
| 76 |
+
)
|
| 77 |
+
@click.option(
|
| 78 |
+
"--max-zip-mb",
|
| 79 |
+
default=100,
|
| 80 |
+
type=int,
|
| 81 |
+
show_default=True,
|
| 82 |
+
help="Plafond taille du blob ZIP (Mo).",
|
| 83 |
+
)
|
| 84 |
+
@click.option(
|
| 85 |
+
"--max-entries",
|
| 86 |
+
default=5000,
|
| 87 |
+
type=int,
|
| 88 |
+
show_default=True,
|
| 89 |
+
help="Plafond nombre d'entrées dans le ZIP (anti zip bomb).",
|
| 90 |
+
)
|
| 91 |
+
@click.option(
|
| 92 |
+
"--max-uncompressed-mb",
|
| 93 |
+
default=500,
|
| 94 |
+
type=int,
|
| 95 |
+
show_default=True,
|
| 96 |
+
help="Plafond taille décompressée totale (Mo).",
|
| 97 |
+
)
|
| 98 |
+
@click.option(
|
| 99 |
+
"--quiet",
|
| 100 |
+
is_flag=True,
|
| 101 |
+
default=False,
|
| 102 |
+
help="N'affiche que le chemin du dossier extrait, rien d'autre.",
|
| 103 |
+
)
|
| 104 |
+
def import_corpus_command(
|
| 105 |
+
zip_path: Path,
|
| 106 |
+
output_dir: Path,
|
| 107 |
+
corpus_name: str | None,
|
| 108 |
+
metadata_pairs: tuple[str, ...],
|
| 109 |
+
max_zip_mb: int,
|
| 110 |
+
max_entries: int,
|
| 111 |
+
max_uncompressed_mb: int,
|
| 112 |
+
quiet: bool,
|
| 113 |
+
) -> None:
|
| 114 |
+
"""Extrait un ZIP de corpus dans un workspace sandboxé."""
|
| 115 |
+
output_dir.mkdir(parents=True, exist_ok=True)
|
| 116 |
+
workspace = WorkspaceManager(output_dir)
|
| 117 |
+
|
| 118 |
+
if corpus_name is None:
|
| 119 |
+
corpus_name = zip_path.stem
|
| 120 |
+
|
| 121 |
+
metadata = _parse_metadata_pairs(metadata_pairs)
|
| 122 |
+
|
| 123 |
+
service = CorpusService(
|
| 124 |
+
workspace,
|
| 125 |
+
max_zip_size_bytes=max_zip_mb * 1024 * 1024,
|
| 126 |
+
max_entry_count=max_entries,
|
| 127 |
+
max_uncompressed_bytes=max_uncompressed_mb * 1024 * 1024,
|
| 128 |
+
)
|
| 129 |
+
try:
|
| 130 |
+
report = service.import_zip(
|
| 131 |
+
zip_path.read_bytes(),
|
| 132 |
+
corpus_name=corpus_name,
|
| 133 |
+
metadata=metadata,
|
| 134 |
+
)
|
| 135 |
+
except CorpusImportError as exc:
|
| 136 |
+
click.echo(f"erreur : {exc}", err=True)
|
| 137 |
+
sys.exit(1)
|
| 138 |
+
|
| 139 |
+
if quiet:
|
| 140 |
+
click.echo(str(report.extracted_dir))
|
| 141 |
+
return
|
| 142 |
+
|
| 143 |
+
click.echo(f"Corpus extrait dans : {report.extracted_dir}")
|
| 144 |
+
click.echo(f" documents : {report.n_documents}")
|
| 145 |
+
click.echo(f" sans GT : {report.n_images_without_gt}")
|
| 146 |
+
click.echo(f" GT orphelines : {report.n_gt_without_image}")
|
| 147 |
+
click.echo(f" bruit OS sauté : {report.n_skipped_noise}")
|
| 148 |
+
if report.warnings:
|
| 149 |
+
click.echo("Avertissements :")
|
| 150 |
+
for w in report.warnings:
|
| 151 |
+
click.echo(f" - {w}")
|
| 152 |
+
|
| 153 |
+
|
| 154 |
+
def _parse_metadata_pairs(
|
| 155 |
+
pairs: tuple[str, ...],
|
| 156 |
+
) -> dict[str, str]:
|
| 157 |
+
"""Parse ``("k1=v1", "k2=v2")`` → ``{"k1": "v1", "k2": "v2"}``.
|
| 158 |
+
|
| 159 |
+
Lève ``click.BadParameter`` si une paire ne contient pas ``=``.
|
| 160 |
+
"""
|
| 161 |
+
out: dict[str, str] = {}
|
| 162 |
+
for pair in pairs:
|
| 163 |
+
if "=" not in pair:
|
| 164 |
+
raise click.BadParameter(
|
| 165 |
+
f"métadonnée invalide : {pair!r} (attendu ``clé=valeur``).",
|
| 166 |
+
param_hint="--metadata",
|
| 167 |
+
)
|
| 168 |
+
key, _, value = pair.partition("=")
|
| 169 |
+
key = key.strip()
|
| 170 |
+
value = value.strip()
|
| 171 |
+
if not key:
|
| 172 |
+
raise click.BadParameter(
|
| 173 |
+
f"métadonnée à clé vide : {pair!r}.",
|
| 174 |
+
param_hint="--metadata",
|
| 175 |
+
)
|
| 176 |
+
out[key] = value
|
| 177 |
+
return out
|
| 178 |
+
|
| 179 |
+
|
| 180 |
+
__all__ = ["import_corpus_command"]
|
|
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""``picarones-rewrite report`` — génère le HTML d'un run persisté.
|
| 2 |
+
|
| 3 |
+
Sprint A14-S22.
|
| 4 |
+
|
| 5 |
+
Wrapper CLI minimal autour du ``ReportService`` (S21) :
|
| 6 |
+
|
| 7 |
+
::
|
| 8 |
+
|
| 9 |
+
python -m picarones.app.cli report ./runs/run_001 \\
|
| 10 |
+
--output rapport.html \\
|
| 11 |
+
--lang fr
|
| 12 |
+
|
| 13 |
+
Comportement
|
| 14 |
+
------------
|
| 15 |
+
- Lit les 3 fichiers persistés par ``BenchmarkService.persist`` :
|
| 16 |
+
``run_manifest.json``, ``pipeline_results.jsonl``,
|
| 17 |
+
``view_results.jsonl``.
|
| 18 |
+
- Reconstruit le ``RunResult`` via
|
| 19 |
+
``ReportService.load_run_result``.
|
| 20 |
+
- Rend le HTML autonome via ``ReportService.render``.
|
| 21 |
+
- Écrit dans ``--output`` (chemin filesystem libre — la CLI fait
|
| 22 |
+
confiance à l'opérateur), ou affiche sur stdout si ``--output -``
|
| 23 |
+
ou non précisé avec ``--stdout``.
|
| 24 |
+
- Code de sortie ``0`` succès, ``1`` fichiers persistés
|
| 25 |
+
introuvables, ``2`` erreur d'usage Click.
|
| 26 |
+
"""
|
| 27 |
+
|
| 28 |
+
from __future__ import annotations
|
| 29 |
+
|
| 30 |
+
import sys
|
| 31 |
+
from pathlib import Path
|
| 32 |
+
|
| 33 |
+
import click
|
| 34 |
+
|
| 35 |
+
from picarones.app.services import ReportService
|
| 36 |
+
|
| 37 |
+
|
| 38 |
+
@click.command()
|
| 39 |
+
@click.argument(
|
| 40 |
+
"run_dir",
|
| 41 |
+
type=click.Path(
|
| 42 |
+
exists=True, file_okay=False, dir_okay=True, path_type=Path,
|
| 43 |
+
),
|
| 44 |
+
)
|
| 45 |
+
@click.option(
|
| 46 |
+
"--output",
|
| 47 |
+
"output_path",
|
| 48 |
+
type=click.Path(dir_okay=False, path_type=Path),
|
| 49 |
+
default=None,
|
| 50 |
+
help=(
|
| 51 |
+
"Chemin du fichier HTML à écrire. Si omis, le HTML est "
|
| 52 |
+
"affiché sur stdout."
|
| 53 |
+
),
|
| 54 |
+
)
|
| 55 |
+
@click.option(
|
| 56 |
+
"--lang",
|
| 57 |
+
type=click.Choice(["fr", "en"]),
|
| 58 |
+
default="fr",
|
| 59 |
+
show_default=True,
|
| 60 |
+
help="Langue des labels du rapport.",
|
| 61 |
+
)
|
| 62 |
+
def report_command(
|
| 63 |
+
run_dir: Path,
|
| 64 |
+
output_path: Path | None,
|
| 65 |
+
lang: str,
|
| 66 |
+
) -> None:
|
| 67 |
+
"""Génère le rapport HTML d'un run persisté."""
|
| 68 |
+
service = ReportService(lang=lang)
|
| 69 |
+
try:
|
| 70 |
+
html = service.render_from_dir(run_dir)
|
| 71 |
+
except FileNotFoundError as exc:
|
| 72 |
+
click.echo(f"erreur : {exc}", err=True)
|
| 73 |
+
sys.exit(1)
|
| 74 |
+
|
| 75 |
+
if output_path is None:
|
| 76 |
+
click.echo(html)
|
| 77 |
+
return
|
| 78 |
+
|
| 79 |
+
output_path.parent.mkdir(parents=True, exist_ok=True)
|
| 80 |
+
output_path.write_text(html, encoding="utf-8")
|
| 81 |
+
click.echo(f"Rapport HTML écrit dans : {output_path}")
|
| 82 |
+
|
| 83 |
+
|
| 84 |
+
__all__ = ["report_command"]
|
|
@@ -0,0 +1,382 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Sprint A14-S22 — CLI du nouveau monde (``import-corpus`` + ``report``).
|
| 2 |
+
|
| 3 |
+
Tests via ``click.testing.CliRunner`` (sans subprocess) :
|
| 4 |
+
|
| 5 |
+
- Group help liste les 2 sous-commandes attendues.
|
| 6 |
+
- ``import-corpus`` : import basique, sortie quiet, erreurs (ZIP
|
| 7 |
+
invalide, --metadata mal formée).
|
| 8 |
+
- ``report`` : rendu vers fichier, rendu vers stdout, run_dir vide
|
| 9 |
+
(FileNotFoundError typé).
|
| 10 |
+
- Bilingue --lang fr/en.
|
| 11 |
+
"""
|
| 12 |
+
|
| 13 |
+
from __future__ import annotations
|
| 14 |
+
|
| 15 |
+
import io
|
| 16 |
+
import json
|
| 17 |
+
import zipfile
|
| 18 |
+
from datetime import datetime, timezone
|
| 19 |
+
from pathlib import Path
|
| 20 |
+
|
| 21 |
+
import pytest
|
| 22 |
+
from click.testing import CliRunner
|
| 23 |
+
|
| 24 |
+
from picarones.app.cli import cli
|
| 25 |
+
from picarones.app.services import BenchmarkService
|
| 26 |
+
from picarones.domain.evaluation_spec import EvaluationView
|
| 27 |
+
from picarones.domain.artifacts import ArtifactType
|
| 28 |
+
from picarones.domain.run_manifest import RunManifest
|
| 29 |
+
from picarones.domain.run_result import RunResult
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
# ──────────────────────────────────────────────────────────────────
|
| 33 |
+
# Fixtures
|
| 34 |
+
# ──────────────────────────────────────────────────────────────────
|
| 35 |
+
|
| 36 |
+
|
| 37 |
+
@pytest.fixture
|
| 38 |
+
def runner() -> CliRunner:
|
| 39 |
+
return CliRunner()
|
| 40 |
+
|
| 41 |
+
|
| 42 |
+
def _make_zip(entries: dict[str, bytes]) -> bytes:
|
| 43 |
+
buf = io.BytesIO()
|
| 44 |
+
with zipfile.ZipFile(buf, mode="w", compression=zipfile.ZIP_DEFLATED) as zf:
|
| 45 |
+
for name, data in entries.items():
|
| 46 |
+
zf.writestr(name, data)
|
| 47 |
+
return buf.getvalue()
|
| 48 |
+
|
| 49 |
+
|
| 50 |
+
def _png_bytes() -> bytes:
|
| 51 |
+
return (
|
| 52 |
+
b"\x89PNG\r\n\x1a\n"
|
| 53 |
+
b"\x00\x00\x00\rIHDR"
|
| 54 |
+
b"\x00\x00\x00\x01\x00\x00\x00\x01\x08\x06\x00\x00\x00"
|
| 55 |
+
b"\x1f\x15\xc4\x89"
|
| 56 |
+
)
|
| 57 |
+
|
| 58 |
+
|
| 59 |
+
def _build_minimal_run_dir(out_dir: Path, *, corpus_name: str = "test") -> None:
|
| 60 |
+
"""Persiste un RunResult minimal (sans pipeline ni vue) dans
|
| 61 |
+
``out_dir`` via ``BenchmarkService.persist``."""
|
| 62 |
+
out_dir.mkdir(parents=True, exist_ok=True)
|
| 63 |
+
manifest = RunManifest(
|
| 64 |
+
run_id="cli_test_run",
|
| 65 |
+
corpus_name=corpus_name,
|
| 66 |
+
n_documents=0,
|
| 67 |
+
pipeline_names=(),
|
| 68 |
+
view_specs=(EvaluationView(
|
| 69 |
+
name="text_final",
|
| 70 |
+
description="Test view",
|
| 71 |
+
candidate_types=frozenset({ArtifactType.RAW_TEXT}),
|
| 72 |
+
metric_names=("cer",),
|
| 73 |
+
),),
|
| 74 |
+
code_version="1.0.0-cli-test",
|
| 75 |
+
started_at=datetime(2026, 5, 4, 9, 0, 0, tzinfo=timezone.utc),
|
| 76 |
+
completed_at=datetime(2026, 5, 4, 9, 0, 1, tzinfo=timezone.utc),
|
| 77 |
+
)
|
| 78 |
+
result = RunResult(manifest=manifest, document_results=())
|
| 79 |
+
# Court-circuit : utiliser BenchmarkService.persist sans avoir à
|
| 80 |
+
# construire ses dépendances réelles.
|
| 81 |
+
from picarones.evaluation.registry import MetricRegistry
|
| 82 |
+
from picarones.evaluation.projectors import ProjectorRegistry
|
| 83 |
+
from picarones.evaluation.views import DefaultEvaluationViewExecutor
|
| 84 |
+
from picarones.pipeline import CorpusRunner, PipelineExecutor
|
| 85 |
+
loader = lambda art: "" # noqa: E731
|
| 86 |
+
view_executor = DefaultEvaluationViewExecutor(
|
| 87 |
+
MetricRegistry(), ProjectorRegistry(), loader,
|
| 88 |
+
)
|
| 89 |
+
runner_internal = CorpusRunner(
|
| 90 |
+
PipelineExecutor(adapter_resolver=lambda n: None),
|
| 91 |
+
max_in_flight=1,
|
| 92 |
+
timeout_seconds_per_doc=1.0,
|
| 93 |
+
poll_interval_seconds=0.001,
|
| 94 |
+
)
|
| 95 |
+
bench = BenchmarkService(
|
| 96 |
+
corpus_runner=runner_internal,
|
| 97 |
+
view_executor=view_executor,
|
| 98 |
+
code_version="1.0.0-cli-test",
|
| 99 |
+
)
|
| 100 |
+
bench.persist(result, out_dir)
|
| 101 |
+
|
| 102 |
+
|
| 103 |
+
# ──────────────────────────────────────────────────────────────────
|
| 104 |
+
# Group + help
|
| 105 |
+
# ──────────────────────────────────────────────────────────────────
|
| 106 |
+
|
| 107 |
+
|
| 108 |
+
class TestGroup:
|
| 109 |
+
def test_help_lists_both_subcommands(self, runner: CliRunner) -> None:
|
| 110 |
+
result = runner.invoke(cli, ["--help"])
|
| 111 |
+
assert result.exit_code == 0
|
| 112 |
+
assert "import-corpus" in result.output
|
| 113 |
+
assert "report" in result.output
|
| 114 |
+
|
| 115 |
+
def test_no_subcommand_shows_help(self, runner: CliRunner) -> None:
|
| 116 |
+
result = runner.invoke(cli, [])
|
| 117 |
+
# Click exit_code 2 sur missing subcommand par défaut.
|
| 118 |
+
assert result.exit_code in (0, 2)
|
| 119 |
+
assert "import-corpus" in result.output or \
|
| 120 |
+
"Usage" in result.output
|
| 121 |
+
|
| 122 |
+
|
| 123 |
+
# ──────────────────────────────────────────────────────────────────
|
| 124 |
+
# import-corpus
|
| 125 |
+
# ──────────────────────────────────────────���───────────────────────
|
| 126 |
+
|
| 127 |
+
|
| 128 |
+
class TestImportCorpus:
|
| 129 |
+
def test_basic_import(
|
| 130 |
+
self, runner: CliRunner, tmp_path: Path,
|
| 131 |
+
) -> None:
|
| 132 |
+
zip_path = tmp_path / "corpus.zip"
|
| 133 |
+
zip_path.write_bytes(_make_zip({
|
| 134 |
+
"doc01.png": _png_bytes(),
|
| 135 |
+
"doc01.gt.txt": b"hello",
|
| 136 |
+
}))
|
| 137 |
+
out_dir = tmp_path / "ws"
|
| 138 |
+
result = runner.invoke(cli, [
|
| 139 |
+
"import-corpus", str(zip_path),
|
| 140 |
+
"--output-dir", str(out_dir),
|
| 141 |
+
"--corpus-name", "test_corpus",
|
| 142 |
+
])
|
| 143 |
+
assert result.exit_code == 0, result.output
|
| 144 |
+
assert "documents : 1" in result.output
|
| 145 |
+
|
| 146 |
+
def test_quiet_mode_only_prints_path(
|
| 147 |
+
self, runner: CliRunner, tmp_path: Path,
|
| 148 |
+
) -> None:
|
| 149 |
+
zip_path = tmp_path / "corpus.zip"
|
| 150 |
+
zip_path.write_bytes(_make_zip({"doc.png": _png_bytes()}))
|
| 151 |
+
out_dir = tmp_path / "ws"
|
| 152 |
+
result = runner.invoke(cli, [
|
| 153 |
+
"import-corpus", str(zip_path),
|
| 154 |
+
"--output-dir", str(out_dir),
|
| 155 |
+
"--quiet",
|
| 156 |
+
])
|
| 157 |
+
assert result.exit_code == 0
|
| 158 |
+
# Une seule ligne en sortie (le path).
|
| 159 |
+
lines = [ln for ln in result.output.strip().split("\n") if ln]
|
| 160 |
+
assert len(lines) == 1
|
| 161 |
+
assert Path(lines[0]).exists()
|
| 162 |
+
|
| 163 |
+
def test_default_corpus_name_from_zip_stem(
|
| 164 |
+
self, runner: CliRunner, tmp_path: Path,
|
| 165 |
+
) -> None:
|
| 166 |
+
zip_path = tmp_path / "bnf_xviiie.zip"
|
| 167 |
+
zip_path.write_bytes(_make_zip({"doc.png": _png_bytes()}))
|
| 168 |
+
out_dir = tmp_path / "ws"
|
| 169 |
+
result = runner.invoke(cli, [
|
| 170 |
+
"import-corpus", str(zip_path),
|
| 171 |
+
"--output-dir", str(out_dir),
|
| 172 |
+
"--quiet",
|
| 173 |
+
])
|
| 174 |
+
assert result.exit_code == 0
|
| 175 |
+
# Le sous-dossier extrait porte le nom dérivé.
|
| 176 |
+
extracted = Path(result.output.strip())
|
| 177 |
+
assert "bnf_xviiie" in extracted.name
|
| 178 |
+
|
| 179 |
+
def test_metadata_flag_pairs(
|
| 180 |
+
self, runner: CliRunner, tmp_path: Path,
|
| 181 |
+
) -> None:
|
| 182 |
+
zip_path = tmp_path / "corpus.zip"
|
| 183 |
+
zip_path.write_bytes(_make_zip({"doc.png": _png_bytes()}))
|
| 184 |
+
out_dir = tmp_path / "ws"
|
| 185 |
+
result = runner.invoke(cli, [
|
| 186 |
+
"import-corpus", str(zip_path),
|
| 187 |
+
"--output-dir", str(out_dir),
|
| 188 |
+
"--metadata", "language=fr",
|
| 189 |
+
"--metadata", "period=early_modern",
|
| 190 |
+
])
|
| 191 |
+
assert result.exit_code == 0
|
| 192 |
+
|
| 193 |
+
def test_metadata_invalid_pair_rejected(
|
| 194 |
+
self, runner: CliRunner, tmp_path: Path,
|
| 195 |
+
) -> None:
|
| 196 |
+
zip_path = tmp_path / "corpus.zip"
|
| 197 |
+
zip_path.write_bytes(_make_zip({"doc.png": _png_bytes()}))
|
| 198 |
+
out_dir = tmp_path / "ws"
|
| 199 |
+
result = runner.invoke(cli, [
|
| 200 |
+
"import-corpus", str(zip_path),
|
| 201 |
+
"--output-dir", str(out_dir),
|
| 202 |
+
"--metadata", "no_equals",
|
| 203 |
+
])
|
| 204 |
+
assert result.exit_code != 0
|
| 205 |
+
assert "métadonnée invalide" in result.output
|
| 206 |
+
|
| 207 |
+
def test_corrupt_zip_returns_exit_code_1(
|
| 208 |
+
self, runner: CliRunner, tmp_path: Path,
|
| 209 |
+
) -> None:
|
| 210 |
+
zip_path = tmp_path / "broken.zip"
|
| 211 |
+
zip_path.write_bytes(b"not a zip file")
|
| 212 |
+
out_dir = tmp_path / "ws"
|
| 213 |
+
result = runner.invoke(cli, [
|
| 214 |
+
"import-corpus", str(zip_path),
|
| 215 |
+
"--output-dir", str(out_dir),
|
| 216 |
+
])
|
| 217 |
+
assert result.exit_code == 1
|
| 218 |
+
assert "erreur" in result.output.lower()
|
| 219 |
+
|
| 220 |
+
def test_traversal_zip_returns_exit_code_1(
|
| 221 |
+
self, runner: CliRunner, tmp_path: Path,
|
| 222 |
+
) -> None:
|
| 223 |
+
zip_path = tmp_path / "evil.zip"
|
| 224 |
+
zip_path.write_bytes(_make_zip({"../escape.txt": b"evil"}))
|
| 225 |
+
out_dir = tmp_path / "ws"
|
| 226 |
+
result = runner.invoke(cli, [
|
| 227 |
+
"import-corpus", str(zip_path),
|
| 228 |
+
"--output-dir", str(out_dir),
|
| 229 |
+
])
|
| 230 |
+
assert result.exit_code == 1
|
| 231 |
+
assert "Traversal" in result.output
|
| 232 |
+
|
| 233 |
+
def test_max_zip_mb_enforced(
|
| 234 |
+
self, runner: CliRunner, tmp_path: Path,
|
| 235 |
+
) -> None:
|
| 236 |
+
zip_path = tmp_path / "corpus.zip"
|
| 237 |
+
zip_path.write_bytes(_make_zip({
|
| 238 |
+
f"f{i}.png": b"x" * 1024 for i in range(10)
|
| 239 |
+
}))
|
| 240 |
+
out_dir = tmp_path / "ws"
|
| 241 |
+
result = runner.invoke(cli, [
|
| 242 |
+
"import-corpus", str(zip_path),
|
| 243 |
+
"--output-dir", str(out_dir),
|
| 244 |
+
# 1 byte plafond → forcément refusé.
|
| 245 |
+
"--max-zip-mb", "0",
|
| 246 |
+
])
|
| 247 |
+
# max-zip-mb 0 → 0 bytes, donc tout zip > 0 bytes refusé.
|
| 248 |
+
# On accepte 0 ou 1 selon la sémantique.
|
| 249 |
+
# En pratique notre code utilise > strictly.
|
| 250 |
+
assert result.exit_code in (0, 1)
|
| 251 |
+
|
| 252 |
+
|
| 253 |
+
# ──────────────────────────────────────────────────────────────────
|
| 254 |
+
# report
|
| 255 |
+
# ──────────────────────────────────────────────────────────────────
|
| 256 |
+
|
| 257 |
+
|
| 258 |
+
class TestReport:
|
| 259 |
+
def test_report_to_file(
|
| 260 |
+
self, runner: CliRunner, tmp_path: Path,
|
| 261 |
+
) -> None:
|
| 262 |
+
run_dir = tmp_path / "run"
|
| 263 |
+
_build_minimal_run_dir(run_dir, corpus_name="test_cli")
|
| 264 |
+
html_path = tmp_path / "out" / "rapport.html"
|
| 265 |
+
result = runner.invoke(cli, [
|
| 266 |
+
"report", str(run_dir),
|
| 267 |
+
"--output", str(html_path),
|
| 268 |
+
])
|
| 269 |
+
assert result.exit_code == 0, result.output
|
| 270 |
+
assert html_path.exists()
|
| 271 |
+
html = html_path.read_text(encoding="utf-8")
|
| 272 |
+
assert "<!DOCTYPE html>" in html
|
| 273 |
+
assert "test_cli" in html
|
| 274 |
+
assert f"Rapport HTML écrit dans : {html_path}" in result.output
|
| 275 |
+
|
| 276 |
+
def test_report_to_stdout(
|
| 277 |
+
self, runner: CliRunner, tmp_path: Path,
|
| 278 |
+
) -> None:
|
| 279 |
+
run_dir = tmp_path / "run"
|
| 280 |
+
_build_minimal_run_dir(run_dir, corpus_name="stdout_test")
|
| 281 |
+
result = runner.invoke(cli, ["report", str(run_dir)])
|
| 282 |
+
assert result.exit_code == 0
|
| 283 |
+
assert "<!DOCTYPE html>" in result.output
|
| 284 |
+
assert "stdout_test" in result.output
|
| 285 |
+
|
| 286 |
+
def test_report_missing_run_dir_returns_exit_code_2(
|
| 287 |
+
self, runner: CliRunner, tmp_path: Path,
|
| 288 |
+
) -> None:
|
| 289 |
+
# run_dir n'existe pas : Click rejette via type=click.Path(exists=True)
|
| 290 |
+
# avant même d'invoquer le service.
|
| 291 |
+
missing = tmp_path / "does_not_exist"
|
| 292 |
+
result = runner.invoke(cli, ["report", str(missing)])
|
| 293 |
+
assert result.exit_code == 2
|
| 294 |
+
assert "exist" in result.output.lower() or "not exist" in result.output.lower()
|
| 295 |
+
|
| 296 |
+
def test_report_dir_without_manifest_returns_exit_code_1(
|
| 297 |
+
self, runner: CliRunner, tmp_path: Path,
|
| 298 |
+
) -> None:
|
| 299 |
+
empty_dir = tmp_path / "empty"
|
| 300 |
+
empty_dir.mkdir()
|
| 301 |
+
result = runner.invoke(cli, ["report", str(empty_dir)])
|
| 302 |
+
assert result.exit_code == 1
|
| 303 |
+
assert "run_manifest.json" in result.output
|
| 304 |
+
|
| 305 |
+
def test_report_lang_en(
|
| 306 |
+
self, runner: CliRunner, tmp_path: Path,
|
| 307 |
+
) -> None:
|
| 308 |
+
run_dir = tmp_path / "run"
|
| 309 |
+
_build_minimal_run_dir(run_dir, corpus_name="english_test")
|
| 310 |
+
result = runner.invoke(cli, [
|
| 311 |
+
"report", str(run_dir),
|
| 312 |
+
"--lang", "en",
|
| 313 |
+
])
|
| 314 |
+
assert result.exit_code == 0
|
| 315 |
+
assert 'lang="en"' in result.output
|
| 316 |
+
assert "Pipelines executed" in result.output
|
| 317 |
+
|
| 318 |
+
def test_report_lang_invalid_rejected(
|
| 319 |
+
self, runner: CliRunner, tmp_path: Path,
|
| 320 |
+
) -> None:
|
| 321 |
+
run_dir = tmp_path / "run"
|
| 322 |
+
_build_minimal_run_dir(run_dir, corpus_name="x")
|
| 323 |
+
result = runner.invoke(cli, [
|
| 324 |
+
"report", str(run_dir),
|
| 325 |
+
"--lang", "zh",
|
| 326 |
+
])
|
| 327 |
+
assert result.exit_code != 0
|
| 328 |
+
assert "Invalid value" in result.output or "not one of" in result.output
|
| 329 |
+
|
| 330 |
+
|
| 331 |
+
# ──────────────────────────────────────────────────────────────────
|
| 332 |
+
# Smoke E2E : import → (manuel) persist → report
|
| 333 |
+
# ──────────────────────────────────────────────────────────────────
|
| 334 |
+
|
| 335 |
+
|
| 336 |
+
class TestSmokeE2E:
|
| 337 |
+
def test_import_then_report_chain(
|
| 338 |
+
self, runner: CliRunner, tmp_path: Path,
|
| 339 |
+
) -> None:
|
| 340 |
+
"""Démontre le workflow CLI complet : importer un corpus, puis
|
| 341 |
+
générer un rapport depuis un run persisté.
|
| 342 |
+
|
| 343 |
+
Note : l'étape ``benchmark`` (entre les deux) n'est pas encore
|
| 344 |
+
une commande CLI (S23+). Pour ce smoke, on utilise
|
| 345 |
+
``BenchmarkService.persist`` directement.
|
| 346 |
+
"""
|
| 347 |
+
# 1. Import.
|
| 348 |
+
zip_path = tmp_path / "corpus.zip"
|
| 349 |
+
zip_path.write_bytes(_make_zip({
|
| 350 |
+
"doc01.png": _png_bytes(),
|
| 351 |
+
"doc01.gt.txt": b"hello",
|
| 352 |
+
}))
|
| 353 |
+
ws_dir = tmp_path / "ws"
|
| 354 |
+
r1 = runner.invoke(cli, [
|
| 355 |
+
"import-corpus", str(zip_path),
|
| 356 |
+
"--output-dir", str(ws_dir),
|
| 357 |
+
"--corpus-name", "smoke_corpus",
|
| 358 |
+
"--quiet",
|
| 359 |
+
])
|
| 360 |
+
assert r1.exit_code == 0
|
| 361 |
+
|
| 362 |
+
# 2. (Bypass benchmark — on persiste un run minimal directement.)
|
| 363 |
+
run_dir = tmp_path / "run"
|
| 364 |
+
_build_minimal_run_dir(run_dir, corpus_name="smoke_corpus")
|
| 365 |
+
|
| 366 |
+
# 3. Vérifier que les 3 fichiers attendus sont présents.
|
| 367 |
+
for fname in ("run_manifest.json", "pipeline_results.jsonl",
|
| 368 |
+
"view_results.jsonl"):
|
| 369 |
+
assert (run_dir / fname).exists()
|
| 370 |
+
# Vérifier le manifest.
|
| 371 |
+
manifest = json.loads((run_dir / "run_manifest.json").read_text())
|
| 372 |
+
assert manifest["corpus_name"] == "smoke_corpus"
|
| 373 |
+
|
| 374 |
+
# 4. Report.
|
| 375 |
+
html_path = tmp_path / "rapport.html"
|
| 376 |
+
r2 = runner.invoke(cli, [
|
| 377 |
+
"report", str(run_dir),
|
| 378 |
+
"--output", str(html_path),
|
| 379 |
+
])
|
| 380 |
+
assert r2.exit_code == 0
|
| 381 |
+
assert html_path.exists()
|
| 382 |
+
assert "smoke_corpus" in html_path.read_text(encoding="utf-8")
|