#!/usr/bin/env python3
"""Verify published aggregate rows for desk log KB-SW-FILL-20260822.

This script checks the first-party CSV only. It does not reconstruct the
9,800-row extract, and it is not a third-party reproduction.
"""

from __future__ import annotations

import csv
import pathlib
import sys

EXPECTED = [
    {
        "retrieval_state": "wiki_only",
        "notes_retrieved": "18",
        "reports_retrieved": "10",
        "exceptions_retrieved": "19",
        "sql_artifacts": "1",
        "memo_artifacts": "0",
        "chart_artifacts": "0",
        "csv_artifacts": "0",
        "ops_pack_cited": "no",
    },
    {
        "retrieval_state": "bound_two_page_ops_pack",
        "notes_retrieved": "16",
        "reports_retrieved": "8",
        "exceptions_retrieved": "18",
        "sql_artifacts": "1",
        "memo_artifacts": "1",
        "chart_artifacts": "2",
        "csv_artifacts": "1",
        "ops_pack_cited": "yes",
    },
]


def main() -> int:
    csv_path = pathlib.Path(__file__).with_name(
        "aggregate-KB-SW-FILL-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 KB-SW-FILL-20260822.")
    return 0


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