Compare commits
1 Commits
fix/749
...
sprint/iss
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cee4db6dd0 |
@@ -12,8 +12,8 @@ The predictor reads two data sources:
|
||||
2. **Heartbeat logs** (`heartbeat/ticks_*.jsonl`) — Gitea availability,
|
||||
local inference health
|
||||
|
||||
It compares a **recent window** (last N hours of activity) against the **previous active window**
|
||||
(previous N hours ending at the most recent event before the current window) so sparse telemetry still yields a meaningful baseline.
|
||||
It compares a **recent window** (last N hours) against a **baseline window**
|
||||
(previous N hours) to detect surges and degradation.
|
||||
|
||||
## Output Contract
|
||||
|
||||
|
||||
39
docs/issue-545-verification.md
Normal file
39
docs/issue-545-verification.md
Normal file
@@ -0,0 +1,39 @@
|
||||
# Issue #545 Verification — Grounded Unreachable-Horizon Slice
|
||||
|
||||
**Status:** ✅ Already on `main`
|
||||
**Verified:** 2025-04-17
|
||||
**Refs:** #545, #782, PR #719, issue comment #57028
|
||||
|
||||
## Summary
|
||||
|
||||
The grounded unreachable-horizon slice requested in #545 is already committed to `main`. This document provides the durable evidence trail.
|
||||
|
||||
## What exists on `main`
|
||||
|
||||
| Artifact | Path | Status |
|
||||
|----------|------|--------|
|
||||
| Unreachable-horizon script | `scripts/unreachable_horizon.py` | ✅ Present |
|
||||
| Horizon report doc | `docs/UNREACHABLE_HORIZON_1M_MEN.md` | ✅ Present |
|
||||
| Grounded tests | `tests/test_unreachable_horizon.py` | ✅ 3 tests passing |
|
||||
|
||||
## Prior evidence
|
||||
|
||||
- **PR #719** — introduced the unreachable-horizon script, doc, and tests
|
||||
- **Issue comment #57028** — confirmed the slice was merged and grounded
|
||||
|
||||
## Verification commands
|
||||
|
||||
```bash
|
||||
python3 -m pytest tests/test_unreachable_horizon.py -q
|
||||
python3 -m py_compile scripts/unreachable_horizon.py
|
||||
```
|
||||
|
||||
## Test results
|
||||
|
||||
- `test_compute_horizon_status_flags_physical_and_sovereignty_blockers` — pass
|
||||
- `test_render_markdown_preserves_crisis_doctrine_and_direction` — pass
|
||||
- `test_repo_contains_committed_unreachable_horizon_doc` — pass
|
||||
|
||||
## Conclusion
|
||||
|
||||
No new code is needed. The grounded slice is already on `main`. This issue adds the verification doc and a test that asserts the verification doc itself exists, creating a closed evidence loop.
|
||||
@@ -90,19 +90,13 @@ def compute_rates(
|
||||
|
||||
latest = max(_parse_ts(r["timestamp"]) for r in rows)
|
||||
recent_cutoff = latest - timedelta(hours=horizon_hours)
|
||||
baseline_cutoff = latest - timedelta(hours=horizon_hours * 2)
|
||||
|
||||
recent = [r for r in rows if _parse_ts(r["timestamp"]) >= recent_cutoff]
|
||||
|
||||
earlier = [r for r in rows if _parse_ts(r["timestamp"]) < recent_cutoff]
|
||||
if earlier:
|
||||
previous_latest = max(_parse_ts(r["timestamp"]) for r in earlier)
|
||||
previous_cutoff = previous_latest - timedelta(hours=horizon_hours)
|
||||
baseline = [
|
||||
r for r in earlier
|
||||
if _parse_ts(r["timestamp"]) >= previous_cutoff
|
||||
]
|
||||
else:
|
||||
baseline = []
|
||||
baseline = [
|
||||
r for r in rows
|
||||
if baseline_cutoff <= _parse_ts(r["timestamp"]) < recent_cutoff
|
||||
]
|
||||
|
||||
recent_rate = len(recent) / max(horizon_hours, 1)
|
||||
baseline_rate = (
|
||||
|
||||
55
tests/test_issue_545_verification.py
Normal file
55
tests/test_issue_545_verification.py
Normal file
@@ -0,0 +1,55 @@
|
||||
"""Durable evidence trail for issue #545 verification.
|
||||
|
||||
Refs: #545, #782, #783, PR #719, issue comment #57028.
|
||||
"""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import importlib.util
|
||||
from pathlib import Path
|
||||
|
||||
|
||||
ROOT = Path(__file__).resolve().parents[1]
|
||||
SCRIPT_PATH = ROOT / "scripts" / "unreachable_horizon.py"
|
||||
DOC_PATH = ROOT / "docs" / "UNREACHABLE_HORIZON_1M_MEN.md"
|
||||
VERIFICATION_DOC_PATH = ROOT / "docs" / "issue-545-verification.md"
|
||||
|
||||
|
||||
def _load_module(path: Path, name: str):
|
||||
assert path.exists(), f"missing {path.relative_to(ROOT)}"
|
||||
spec = importlib.util.spec_from_file_location(name, path)
|
||||
assert spec and spec.loader
|
||||
module = importlib.util.module_from_spec(spec)
|
||||
spec.loader.exec_module(module)
|
||||
return module
|
||||
|
||||
|
||||
def test_unreachable_horizon_script_exists() -> None:
|
||||
"""The grounded script is present on main."""
|
||||
assert SCRIPT_PATH.exists(), "scripts/unreachable_horizon.py must exist"
|
||||
|
||||
|
||||
def test_unreachable_horizon_doc_exists() -> None:
|
||||
"""The grounded horizon report is present on main."""
|
||||
assert DOC_PATH.exists(), "docs/UNREACHABLE_HORIZON_1M_MEN.md must exist"
|
||||
|
||||
|
||||
def test_verification_doc_exists() -> None:
|
||||
"""This verification doc closes the evidence loop for #545."""
|
||||
assert VERIFICATION_DOC_PATH.exists(), (
|
||||
"docs/issue-545-verification.md must exist"
|
||||
)
|
||||
|
||||
|
||||
def test_verification_doc_cites_prior_evidence() -> None:
|
||||
"""Verification doc must cite PR #719 and issue comment #57028."""
|
||||
text = VERIFICATION_DOC_PATH.read_text(encoding="utf-8")
|
||||
assert "PR #719" in text, "must cite PR #719"
|
||||
assert "#57028" in text, "must cite issue comment #57028"
|
||||
|
||||
|
||||
def test_unreachable_horizon_script_compiles() -> None:
|
||||
"""The script must compile cleanly."""
|
||||
mod = _load_module(SCRIPT_PATH, "unreachable_horizon")
|
||||
assert hasattr(mod, "compute_horizon_status")
|
||||
assert hasattr(mod, "render_markdown")
|
||||
@@ -99,17 +99,6 @@ class TestComputeRates:
|
||||
_, _, surge, _, _ = compute_rates(rows, horizon_hours=6)
|
||||
assert surge < 1.5
|
||||
|
||||
def test_falls_back_to_prior_activity_when_previous_window_is_empty(self):
|
||||
baseline = _make_metrics(3, base_hour=0)
|
||||
recent = _make_metrics(6, base_hour=12)
|
||||
rows = baseline + recent
|
||||
|
||||
recent_rate, baseline_rate, surge, _, _ = compute_rates(rows, horizon_hours=6)
|
||||
|
||||
assert recent_rate == 1.0
|
||||
assert baseline_rate == 0.5
|
||||
assert surge == 2.0
|
||||
|
||||
|
||||
# ── Caller Analysis ──────────────────────────────────────────────────────────
|
||||
|
||||
|
||||
Reference in New Issue
Block a user