mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-31 19:16:29 +00:00
The live comment poller previously got its review status payloads from two sources: (1) REVIEW_STATUSES env var, frozen at comment-live job start from needs.*.outputs.review_status, and (2) a single ci-timings artifact fetched at the end. This meant status details (error messages, action_required items, etc.) only appeared in the comment after all jobs finished, even though job pass/fail was visible in real-time. Now every status-producing workflow_call uploads a small review-status artifact (review-status-<name>) as soon as it completes. The poller enumerates all review-status-* artifacts across the orchestrator run and all sub-workflow runs every cycle, downloads each, and merges them into the comment. Statuses appear as soon as each job finishes, not just at the end. Changes: - live_comment.py: replace _fetch_artifact_statuses (single artifact via gh CLI) with fetch_all_review_statuses (enumerate all review-status-* artifacts via API across all runs, download + parse each). Remove review_statuses_json parameter and --review-statuses- file CLI arg. Remove subprocess import (no longer shells out to gh). - ci.yml: remove REVIEW_STATUSES env var, inline Python merger, and --review-statuses-file arg from the comment-live step. Rename ci-timings-review-status artifact to review-status-ci-timings. - 8 workflow_call files: add a write review-status.json + upload artifact step after each review_status output is produced. - test_live_comment.py: add tests for _parse_status_file (with/without prefix, empty, invalid, nonexistent, non-list) and _merge_statuses.
259 lines
9.2 KiB
Python
259 lines
9.2 KiB
Python
"""Tests for scripts/ci/live_comment.py — classify_jobs() + artifact helpers.
|
|
|
|
The poller's core logic is a pure function: take raw GitHub API job dicts
|
|
and split them into (completed, pending). Artifact parsing helpers are also
|
|
pure and tested here. The API wrapper + polling loop are tested via E2E
|
|
in CI, not here.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import importlib.util
|
|
import json
|
|
import sys
|
|
import tempfile
|
|
from pathlib import Path
|
|
|
|
_PATH = Path(__file__).resolve().parents[2] / "scripts" / "ci" / "live_comment.py"
|
|
_spec = importlib.util.spec_from_file_location("live_comment", _PATH)
|
|
if _spec is None or _spec.loader is None:
|
|
raise ImportError("Failed to load live_comment.py")
|
|
_mod = importlib.util.module_from_spec(_spec)
|
|
sys.modules["live_comment"] = _mod
|
|
_spec.loader.exec_module(_mod)
|
|
|
|
|
|
def _job(name: str, status: str, conclusion: str | None = None, workflow: str = "") -> dict:
|
|
"""Build a raw API job dict."""
|
|
j = {"name": name, "status": status, "conclusion": conclusion}
|
|
if workflow:
|
|
j["_workflow_name"] = workflow
|
|
return j
|
|
|
|
|
|
def test_classify_empty():
|
|
completed, pending, job_urls = _mod.classify_jobs([])
|
|
assert completed == {}
|
|
assert pending == []
|
|
assert job_urls == {}
|
|
|
|
|
|
def test_classify_success():
|
|
jobs = [_job("Python tests", "completed", "success")]
|
|
completed, pending, job_urls = _mod.classify_jobs(jobs)
|
|
assert completed == {"Python tests": "success"}
|
|
assert pending == []
|
|
|
|
|
|
def test_classify_failure():
|
|
jobs = [_job("Python tests", "completed", "failure")]
|
|
completed, pending, job_urls = _mod.classify_jobs(jobs)
|
|
assert completed == {"Python tests": "failure"}
|
|
assert pending == []
|
|
|
|
|
|
def test_classify_skipped():
|
|
jobs = [_job("Python tests", "completed", "skipped")]
|
|
completed, pending, job_urls = _mod.classify_jobs(jobs)
|
|
assert completed == {"Python tests": "skipped"}
|
|
assert pending == []
|
|
|
|
|
|
def test_classify_in_progress():
|
|
jobs = [_job("Python tests", "in_progress", None)]
|
|
completed, pending, job_urls = _mod.classify_jobs(jobs)
|
|
assert completed == {}
|
|
assert pending == ["Python tests"]
|
|
|
|
|
|
def test_classify_queued():
|
|
jobs = [_job("Python tests", "queued", None)]
|
|
completed, pending, job_urls = _mod.classify_jobs(jobs)
|
|
assert completed == {}
|
|
assert pending == ["Python tests"]
|
|
|
|
|
|
def test_classify_waiting():
|
|
jobs = [_job("Python tests", "waiting", None)]
|
|
completed, pending, job_urls = _mod.classify_jobs(jobs)
|
|
assert completed == {}
|
|
assert pending == ["Python tests"]
|
|
|
|
|
|
def test_classify_mixed():
|
|
jobs = [
|
|
_job("Python tests", "completed", "success"),
|
|
_job("Python lints", "completed", "failure"),
|
|
_job("JS & TS checks", "in_progress", None),
|
|
_job("Desktop E2E", "queued", None),
|
|
]
|
|
completed, pending, job_urls = _mod.classify_jobs(jobs)
|
|
assert completed == {"Python tests": "success", "Python lints": "failure"}
|
|
assert set(pending) == {"JS & TS checks", "Desktop E2E"}
|
|
|
|
|
|
def test_classify_infra_jobs_excluded():
|
|
"""Infra jobs (detect, all-checks-pass, comment-live) are never shown."""
|
|
jobs = [
|
|
_job("detect", "completed", "success"),
|
|
_job("Detect affected areas", "completed", "success"),
|
|
_job("all-checks-pass", "completed", "success"),
|
|
_job("All required checks pass", "completed", "success"),
|
|
_job("comment-live", "in_progress", None),
|
|
_job("CI review comment (live)", "in_progress", None),
|
|
_job("Python tests", "completed", "success"),
|
|
]
|
|
completed, pending, job_urls = _mod.classify_jobs(jobs)
|
|
assert completed == {"Python tests": "success"}
|
|
assert pending == []
|
|
|
|
|
|
def test_classify_sub_workflow_jobs_prefixed():
|
|
"""Sub-workflow jobs get 'Workflow / job' display names."""
|
|
jobs = [
|
|
_job("test", "completed", "success", workflow="Tests"),
|
|
_job("check", "in_progress", None, workflow="JS Tests"),
|
|
]
|
|
completed, pending, job_urls = _mod.classify_jobs(jobs)
|
|
assert "Tests / test" in completed
|
|
assert completed["Tests / test"] == "success"
|
|
assert "JS Tests / check" in pending
|
|
|
|
|
|
def test_classify_captures_html_url():
|
|
"""The poller captures html_url per job for per-job log links."""
|
|
jobs = [
|
|
{**_job("Python tests", "completed", "failure"),
|
|
"html_url": "https://github.com/repo/actions/runs/1/job/2"},
|
|
_job("Python lints", "completed", "success"),
|
|
]
|
|
completed, pending, job_urls = _mod.classify_jobs(jobs)
|
|
assert job_urls["Python tests"] == "https://github.com/repo/actions/runs/1/job/2"
|
|
# Jobs without html_url are simply absent from the dict
|
|
assert "Python lints" not in job_urls
|
|
|
|
|
|
def test_classify_cancelled_treated_as_skipped():
|
|
jobs = [_job("Python tests", "completed", "cancelled")]
|
|
completed, pending, job_urls = _mod.classify_jobs(jobs)
|
|
assert completed == {"Python tests": "skipped"}
|
|
|
|
|
|
def test_classify_timed_out_treated_as_failure():
|
|
jobs = [_job("Python tests", "completed", "timed_out")]
|
|
completed, pending, job_urls = _mod.classify_jobs(jobs)
|
|
assert completed == {"Python tests": "failure"}
|
|
|
|
|
|
def test_classify_neutral_treated_as_skipped():
|
|
jobs = [_job("Python tests", "completed", "neutral")]
|
|
completed, pending, job_urls = _mod.classify_jobs(jobs)
|
|
assert completed == {"Python tests": "skipped"}
|
|
|
|
|
|
def test_classify_action_required_treated_as_skipped():
|
|
jobs = [_job("Python tests", "completed", "action_required")]
|
|
completed, pending, job_urls = _mod.classify_jobs(jobs)
|
|
assert completed == {"Python tests": "skipped"}
|
|
|
|
|
|
def test_classify_unknown_status_skipped():
|
|
"""Unknown status values are silently ignored, not crashed on."""
|
|
jobs = [_job("weird-job", "unknown_status", None)]
|
|
completed, pending, job_urls = _mod.classify_jobs(jobs)
|
|
assert completed == {}
|
|
assert pending == []
|
|
|
|
|
|
def test_commit_info_uses_present_tense_while_jobs_are_pending():
|
|
info = "<sub>running on [abc1234](https://commit-url) — fix: thing</sub>"
|
|
assert _mod._commit_info_for_state(info, ["Python tests"]) == info
|
|
|
|
|
|
def test_commit_info_uses_past_tense_after_jobs_complete():
|
|
info = "<sub>running on [abc1234](https://commit-url) — fix: thing</sub>"
|
|
assert _mod._commit_info_for_state(info, []) == (
|
|
"<sub>ran on [abc1234](https://commit-url) — fix: thing</sub>"
|
|
)
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Artifact parsing helpers
|
|
# ---------------------------------------------------------------------------
|
|
|
|
def test_parse_status_file_with_prefix():
|
|
"""GITHUB_OUTPUT format: review_status=<json>"""
|
|
with tempfile.NamedTemporaryFile(mode="w", suffix=".json", delete=False) as f:
|
|
f.write('review_status=[{"source":"test","results":[]}]')
|
|
f.flush()
|
|
statuses = _mod._parse_status_file(Path(f.name))
|
|
assert len(statuses) == 1
|
|
assert statuses[0]["source"] == "test"
|
|
|
|
|
|
def test_parse_status_file_without_prefix():
|
|
"""Raw JSON (no review_status= prefix) is also accepted."""
|
|
with tempfile.NamedTemporaryFile(mode="w", suffix=".json", delete=False) as f:
|
|
f.write('[{"source":"raw","results":[]}]')
|
|
f.flush()
|
|
statuses = _mod._parse_status_file(Path(f.name))
|
|
assert len(statuses) == 1
|
|
assert statuses[0]["source"] == "raw"
|
|
|
|
|
|
def test_parse_status_file_empty_array():
|
|
with tempfile.NamedTemporaryFile(mode="w", suffix=".json", delete=False) as f:
|
|
f.write('review_status=[]')
|
|
f.flush()
|
|
statuses = _mod._parse_status_file(Path(f.name))
|
|
assert statuses == []
|
|
|
|
|
|
def test_parse_status_file_invalid_json():
|
|
with tempfile.NamedTemporaryFile(mode="w", suffix=".json", delete=False) as f:
|
|
f.write('review_status=not json')
|
|
f.flush()
|
|
statuses = _mod._parse_status_file(Path(f.name))
|
|
assert statuses == []
|
|
|
|
|
|
def test_parse_status_file_nonexistent():
|
|
assert _mod._parse_status_file(Path("/nonexistent/file.json")) == []
|
|
|
|
|
|
def test_parse_status_file_not_a_list():
|
|
with tempfile.NamedTemporaryFile(mode="w", suffix=".json", delete=False) as f:
|
|
f.write('review_status={"not":"a list"}')
|
|
f.flush()
|
|
statuses = _mod._parse_status_file(Path(f.name))
|
|
assert statuses == []
|
|
|
|
|
|
def test_merge_statuses_empty():
|
|
assert _mod._merge_statuses([]) == ""
|
|
|
|
|
|
def test_merge_statuses_single():
|
|
statuses = [{"source": "a", "results": []}]
|
|
result = _mod._merge_statuses(statuses)
|
|
assert json.loads(result) == statuses
|
|
|
|
|
|
def test_merge_statuses_multiple():
|
|
statuses = [
|
|
{"source": "a", "results": []},
|
|
{"source": "b", "results": [{"kind": "warning"}]},
|
|
]
|
|
result = _mod._merge_statuses(statuses)
|
|
assert json.loads(result) == statuses
|
|
|
|
|
|
def test_review_status_artifact_prefix():
|
|
"""The prefix is used to filter artifacts from the API."""
|
|
assert _mod._REVIEW_STATUS_ARTIFACT_PREFIX == "review-status-"
|
|
# Artifacts with this prefix should be picked up
|
|
assert "review-status-ci-timings".startswith(_mod._REVIEW_STATUS_ARTIFACT_PREFIX)
|
|
assert "review-status-review-labels".startswith(_mod._REVIEW_STATUS_ARTIFACT_PREFIX)
|
|
# Artifacts without it should not
|
|
assert not "ci-timings-report".startswith(_mod._REVIEW_STATUS_ARTIFACT_PREFIX)
|
|
assert not "playwright-report".startswith(_mod._REVIEW_STATUS_ARTIFACT_PREFIX)
|