core/tests/test_teaching_coverage_cli.py
Shay 3fd317290b feat(adr-0174-phase5a): retire inert GSM8K scoring-path reader
The recognizer/candidate-graph path is the single canonical reader.
Retires the flag-gated incremental-reader dispatch that admitted 0/50 on
train_sample and only added a dead fall-through:

- remove _try_comprehension_reader, _try_reader_for_question, _tokenize_sentence
  and both dispatch blocks from generate/math_candidate_graph.py
- delete generate/comprehension/lifecycle_runtime_adapter.py (402 LOC,
  used only by the question-reader dispatch)
- drop the comprehension_reader_questions config flag and the parse_and_solve
  / _score_one_candidate_graph config threading
- remove the --use-reader runner plumbing + flag-ON/OFF delta report from
  the train_sample runner; refresh report.json (drops stale use_reader field
  and a stale refusal-reason; verdicts unchanged at 3/47/0)
- remove the now-dead use_reader field from teaching/coverage.py
  CoverageReport + the core teaching coverage CLI flag
- delete tests/test_reader_coexistence.py (flag-ON/OFF premise dissolved);
  fix 3 ADR-0174 build_report calls and 2 subprocess invocations

lifecycle.py and audit.py are KEPT — they are load-bearing for the ADR-0172
math-contemplation teaching corridor (audit_problem -> teaching/math_*),
which a pre-deletion trace surfaced. The parent ADR's plan to delete
lifecycle.py was wrong; only its GSM8K scoring dispatch was inert.

Net -1,038 LOC (code + tests). Behavior-preserving:
- train_sample 3/47/0, byte-identical verdicts to pre-5a baseline
- determinism holds; smoke/packs/runtime/cognition/teaching lanes green
- contemplation corridor + lifecycle/audit tests pass

Pre-existing (NOT introduced here; reproduce on base with changes stashed):
5 out-of-curated-lane stale committed-artifact / stale-assertion failures
(test_math_evidence_e2e, test_adr_0126_runner_wiring, G3/coverage_probe
report-match, test_refusal_taxonomy_lane rebuild).
2026-05-28 13:38:44 -07:00

208 lines
7.5 KiB
Python

"""Brief D — coverage report aggregator tests."""
from __future__ import annotations
import json
from pathlib import Path
import pytest
from teaching.coverage import (
CoverageCounts,
_classify_refusal,
build_coverage_report,
)
def _write_report(path: Path, *, correct: int, refused: int, wrong: int, per_case: list[dict]) -> None:
path.write_text(
json.dumps({
"counts": {"correct": correct, "refused": refused, "wrong": wrong},
"per_case": per_case,
}),
encoding="utf-8",
)
def test_classify_recognizer_empty_injection():
r = ("candidate_graph: recognizer matched but produced no injection "
"for statement: 'X.' (category=multiplicative_aggregation)")
assert _classify_refusal(r) == "recognizer_empty_injection(multiplicative_aggregation)"
def test_classify_no_admissible_question():
assert _classify_refusal("candidate_graph: no admissible candidate for question: 'X?'") == "no_admissible_question"
def test_classify_no_admissible_statement():
assert _classify_refusal("candidate_graph: no admissible candidate for statement: 'X.'") == "no_admissible_statement"
def test_classify_unknown_falls_back_to_other():
assert _classify_refusal("some new failure mode") == "other"
def test_classify_empty_returns_other():
assert _classify_refusal("") == "other"
def test_build_coverage_report_basic(tmp_path: Path):
report_path = tmp_path / "report.json"
_write_report(
report_path,
correct=2,
refused=3,
wrong=0,
per_case=[
{"case_id": "x-0001", "verdict": "correct"},
{"case_id": "x-0002", "verdict": "correct"},
{"case_id": "x-0003", "verdict": "refused", "reason": "candidate_graph: recognizer matched but produced no injection for statement: 'A.' (category=currency_amount)"},
{"case_id": "x-0004", "verdict": "refused", "reason": "candidate_graph: recognizer matched but produced no injection for statement: 'B.' (category=currency_amount)"},
{"case_id": "x-0005", "verdict": "refused", "reason": "candidate_graph: no admissible candidate for question: 'How?'"},
],
)
r = build_coverage_report(
report_path, lane="t", split="s", version="v1",
)
assert r.counts == CoverageCounts(correct=2, refused=3, wrong=0)
assert r.counts.total() == 5
assert dict(r.refusal_taxonomy) == {
"recognizer_empty_injection(currency_amount)": 2,
"no_admissible_question": 1,
}
assert r.case_0050_verdict is None
def test_case_0050_verdict_captured(tmp_path: Path):
report_path = tmp_path / "report.json"
_write_report(
report_path,
correct=0,
refused=1,
wrong=0,
per_case=[
{"case_id": "gsm8k-train-sample-v1-0050", "verdict": "refused", "reason": "x"},
],
)
r = build_coverage_report(
report_path, lane="gsm8k_math", split="train_sample", version="v1",
)
assert r.case_0050_verdict == "refused"
def test_delta_computation(tmp_path: Path):
report_path = tmp_path / "report.json"
baseline_path = tmp_path / "baseline.json"
_write_report(report_path, correct=4, refused=46, wrong=0, per_case=[])
_write_report(baseline_path, correct=3, refused=47, wrong=0, per_case=[])
r = build_coverage_report(
report_path,
lane="t", split="s", version="v1",
baseline_path=baseline_path,
)
assert r.delta == {"correct": 1, "refused": -1, "wrong": 0}
def test_no_baseline_means_empty_delta(tmp_path: Path):
report_path = tmp_path / "report.json"
_write_report(report_path, correct=3, refused=47, wrong=0, per_case=[])
r = build_coverage_report(
report_path,
lane="t", split="s", version="v1",
baseline_path=None,
)
assert r.delta == {}
def test_missing_report_raises(tmp_path: Path):
with pytest.raises(FileNotFoundError):
build_coverage_report(
tmp_path / "nope.json",
lane="t", split="s", version="v1",
)
def test_as_dict_round_trip(tmp_path: Path):
report_path = tmp_path / "report.json"
_write_report(report_path, correct=1, refused=1, wrong=0, per_case=[
{"case_id": "x-0001", "verdict": "correct"},
{"case_id": "x-0002", "verdict": "refused", "reason": "candidate_graph: recognizer matched but produced no injection for statement: 'X.' (category=discrete_count_statement)"},
])
r = build_coverage_report(report_path, lane="t", split="s", version="v1")
d = r.as_dict()
assert d["counts"]["total"] == 2
assert "recognizer_empty_injection(discrete_count_statement)" in d["refusal_taxonomy"]
def test_taxonomy_sorted_by_count_desc(tmp_path: Path):
report_path = tmp_path / "report.json"
_write_report(report_path, correct=0, refused=4, wrong=0, per_case=[
{"case_id": f"x-{i:04d}", "verdict": "refused", "reason": "candidate_graph: no admissible candidate for question: '?'" if i < 1 else "candidate_graph: recognizer matched but produced no injection for statement: 'X.' (category=multiplicative_aggregation)"}
for i in range(4)
])
r = build_coverage_report(report_path, lane="t", split="s", version="v1")
keys = list(r.refusal_taxonomy.keys())
assert keys[0] == "recognizer_empty_injection(multiplicative_aggregation)" # 3 > 1
assert keys[1] == "no_admissible_question"
def test_wrong_zero_invariant_visible_via_as_dict(tmp_path: Path):
report_path = tmp_path / "report.json"
_write_report(report_path, correct=0, refused=0, wrong=2, per_case=[])
r = build_coverage_report(report_path, lane="t", split="s", version="v1")
assert r.as_dict()["counts"]["wrong"] == 2
# ---------------------------------------------------------------------------
# Sourcery review follow-ups (PR #410 round 1)
# ---------------------------------------------------------------------------
def test_classify_refusal_is_case_insensitive():
"""Mixed-case reason text classifies into the same bucket."""
mixed = (
"Candidate_Graph: Recognizer Matched But Produced No Injection "
"for statement: 'X.' (category=currency_amount)"
)
assert _classify_refusal(mixed) == "recognizer_empty_injection(currency_amount)"
def test_classify_docstring_matches_implementation_buckets():
"""The docstring's bucket list matches the values _classify_refusal returns."""
expected_buckets = {
"recognizer_empty_injection",
"no_admissible_question",
"no_admissible_statement",
"unexpected_question_count",
"other",
}
doc = _classify_refusal.__doc__ or ""
for bucket in expected_buckets:
assert bucket in doc, f"docstring missing bucket: {bucket}"
def test_fetch_committed_baseline_uses_system_temp(tmp_path, monkeypatch):
"""The baseline temp file lives in tempfile.gettempdir(), not .git/."""
import tempfile as _tempfile
from teaching.coverage import fetch_committed_baseline
class _FakeCompleted:
def __init__(self, stdout: str) -> None:
self.stdout = stdout
import subprocess as _sp
fake_baseline = '{"counts": {"correct": 1, "refused": 1, "wrong": 0}}'
def _fake_run(*_args, **_kwargs):
return _FakeCompleted(fake_baseline)
monkeypatch.setattr(_sp, "run", _fake_run)
out = fetch_committed_baseline("evals/x/report.json", tmp_path)
assert out is not None
sys_temp = Path(_tempfile.gettempdir()).resolve()
assert str(out.resolve()).startswith(str(sys_temp)), (
f"baseline temp must be under {sys_temp}, got {out!r}"
)
out.unlink(missing_ok=True)