#!/usr/bin/env python3
"""Verify published aggregate rows for desk log IDE-WEB-TRAIL-20260822.

This script checks the first-party CSV only. It does not reconstruct the
shared-trail run, and it is not a third-party reproduction.
"""

from __future__ import annotations

import csv
import pathlib
import sys

EXPECTED = [
    {
        "state": "ide_terminal_only",
        "confident_sentence": "1",
        "bind_present": "0",
        "artifacts_count": "0",
        "reviewer_downloaded": "no",
    },
    {
        "state": "first_party_task_review",
        "confident_sentence": "0",
        "bind_present": "1",
        "artifacts_count": "3",
        "reviewer_downloaded": "yes",
    },
]


def main() -> int:
    csv_path = pathlib.Path(__file__).with_name(
        "aggregate-IDE-WEB-TRAIL-20260822.csv"
    )
    with csv_path.open(newline="", encoding="utf-8") as handle:
        rows = list(csv.DictReader(handle))
    if rows != EXPECTED:
        print("FAIL: published aggregate rows do not match the desk log.", file=sys.stderr)
        return 1
    print("OK: published aggregate rows match desk log IDE-WEB-TRAIL-20260822.")
    return 0


if __name__ == "__main__":
    raise SystemExit(main())
