test_governance_gates_large_roadmap.py
python
sha256:0e9549ec7b463911bc08b7d586dc320b1ac9b1f5c943ee7e3865dcc6cb0f6f83
chore(governance): sync handover+roadmap to 84db8c8 (drift:…
Human
1 day ago
| 1 | """Stress tests for governance gate scan on large roadmap tables.""" |
| 2 | |
| 3 | from __future__ import annotations |
| 4 | |
| 5 | from pathlib import Path |
| 6 | |
| 7 | from adapters.config import load_config |
| 8 | from tests.support import FIXTURES |
| 9 | from tools.governance_gates import scan_governance_gates |
| 10 | |
| 11 | |
| 12 | def test_large_roadmap_scan_bounded(tmp_path: Path) -> None: |
| 13 | config = load_config(FIXTURES / "config-governance-gates.yaml") |
| 14 | docs = tmp_path / "docs" |
| 15 | docs.mkdir(parents=True) |
| 16 | rows = ["| Phase | Model | Status | Deliverable |", "| --- | --- | --- | --- |"] |
| 17 | for index in range(500): |
| 18 | rows.append( |
| 19 | f"| **K{index} slice** | Auto | **DONE** | shipped slice {index} |" |
| 20 | ) |
| 21 | rows.append("| **Active Auto** | Auto | **WIP** | `docs/archive/phases/PHASE-ACTIVE.md` pending |") |
| 22 | (docs / "ROADMAP.md").write_text("\n".join(rows) + "\n", encoding="utf-8") |
| 23 | (docs / "OVERSEER-HANDOVER.md").write_text( |
| 24 | "| **ID** | **Active Auto** |\n", |
| 25 | encoding="utf-8", |
| 26 | ) |
| 27 | (docs / "PHASE-ACTIVE.md").write_text("not frozen\n", encoding="utf-8") |
| 28 | |
| 29 | result = scan_governance_gates(config, tmp_path) |
| 30 | assert any(gate.phase_id == "Active Auto" for gate in result.pending) |
File History
1 commit
sha256:6abcf1fa82a7a621ccbc945f19acdba5bc0db54569599404a1452fb4a096a199
fix(ISR): default require_independent_second_reviewer to require
Human
minor
⚠
1 day ago