Приводит статусы доски Plane к смыслу стадий конвейера, сохраняя инвариант «статус — индикация, а не управление». Меняется только слой B (отображение: src/plane_sync.py + точки выставления статуса в stage_engine.py/webhooks/plane.py/reconciler.py); слой A — машина стадий src/stages.py::STAGE_TRANSITIONS — остаётся байт-в-байт неизменным (AC-21). - 6 новых логических ключей статуса (to_analyse, analysis, code_review, awaiting_deploy, deploying, monitoring) + сеттеры и диспетчер set_issue_stage_state. - Project-relative alias-fallback (BR-12): новый ключ деградирует на базовый UUID того же проекта → нулевая регрессия для enduro-trails. - Самодеплой (ORCH-036) индицирует фазы: Awaiting Deploy / Deploying; terminal-sync для self-hosting → Monitoring after Deploy, для прочих → терминальный Done. - Post-deploy монитор (ORCH-021): HEALTHY → Done, DEGRADED → Blocked (только индикация; self-hosting ALERT_ONLY, прод не трогается, BR-5). - Reconciler: триггер старта/резюма на To Analyse; Guard 2 учитывает новые активные ожидания без расширения skip-set на алиасах. - never-raise контракт сеттеров и резолвера состояний сохранён. - Раскатка — созданием статусов в Plane оператором, без kill-switch. Инварианты не менялись: STAGE_TRANSITIONS, QG_CHECKS (12 чеков), check_deploy_status, exit-код-контракт хука, merge-gate, схема БД. ADR: docs/work-items/ORCH-066/06-adr/ADR-001-plane-status-model.md Тесты: test_plane_status_model, test_plane_to_analyse_resume, test_plane_status_failclosed + TC в существующих наборах. 774 passed. Refs: ORCH-066 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
165 lines
6.9 KiB
Python
165 lines
6.9 KiB
Python
"""ORCH-036 TC-17: a SUCCESS prod deploy preserves the terminal-sync contract (AC-10).
|
|
|
|
When the finalizer (Phase C) reads exit 0 -> ``deploy_status: SUCCESS`` and drives
|
|
``advance_stage(finished_agent="deployer")``, the EXISTING deploy->done transition
|
|
must still fire unchanged: stage becomes ``done``, ``set_issue_done`` is called, no
|
|
agent is launched, and the merge-lease is released (terminal-sync, ORCH-43/БАГ-8
|
|
contract). ORCH-036 only changes HOW the verdict is produced, never the contract.
|
|
"""
|
|
|
|
import os
|
|
import tempfile
|
|
|
|
import pytest
|
|
|
|
_test_db = os.path.join(tempfile.gettempdir(), "test_orch_deploy_terminal.db")
|
|
os.environ["ORCH_DB_PATH"] = _test_db
|
|
os.environ["ORCH_REPOS_DIR"] = tempfile.gettempdir()
|
|
os.environ.setdefault("ORCH_GITEA_TOKEN", "test-token")
|
|
os.environ.setdefault("ORCH_PLANE_API_TOKEN", "test-token")
|
|
|
|
from unittest.mock import MagicMock # noqa: E402
|
|
|
|
import src.db as _db # noqa: E402
|
|
from src.db import init_db, get_db # noqa: E402
|
|
from src import stage_engine # noqa: E402
|
|
from src import self_deploy # noqa: E402
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def fresh_db(monkeypatch, tmp_path):
|
|
monkeypatch.setattr(_db.settings, "db_path", _test_db)
|
|
if os.path.exists(_test_db):
|
|
os.unlink(_test_db)
|
|
init_db()
|
|
monkeypatch.setattr(self_deploy.settings, "repos_dir", str(tmp_path))
|
|
monkeypatch.setattr(self_deploy.settings, "host_repos_dir", str(tmp_path))
|
|
monkeypatch.setattr(stage_engine.self_deploy, "write_deploy_log", MagicMock(return_value=True))
|
|
yield
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def silence_side_effects(monkeypatch):
|
|
for name in (
|
|
"notify_stage_change", "notify_qg_failure", "notify_approve_requested",
|
|
"send_telegram", "plane_notify_stage", "plane_notify_qg", "plane_add_comment",
|
|
"set_issue_in_review", "set_issue_needs_input", "set_issue_in_progress",
|
|
"set_issue_blocked", "set_issue_done",
|
|
# ORCH-066 status setters.
|
|
"set_issue_analysis", "set_issue_awaiting_deploy", "set_issue_deploying",
|
|
"set_issue_monitoring",
|
|
):
|
|
monkeypatch.setattr(stage_engine, name, MagicMock())
|
|
|
|
|
|
def _make_task(stage, repo="orchestrator", branch="feature/ORCH-036-x", wi="ORCH-036"):
|
|
conn = get_db()
|
|
cur = conn.execute(
|
|
"INSERT INTO tasks (plane_id, work_item_id, repo, branch, stage) "
|
|
"VALUES (?, ?, ?, ?, ?)",
|
|
(f"plane-{wi}", wi, repo, branch, stage),
|
|
)
|
|
task_id = cur.lastrowid
|
|
conn.commit()
|
|
conn.close()
|
|
return task_id
|
|
|
|
|
|
def _stage(task_id):
|
|
conn = get_db()
|
|
row = conn.execute("SELECT stage FROM tasks WHERE id=?", (task_id,)).fetchone()
|
|
conn.close()
|
|
return row[0]
|
|
|
|
|
|
def _jobs():
|
|
conn = get_db()
|
|
rows = conn.execute("SELECT agent FROM jobs ORDER BY id").fetchall()
|
|
conn.close()
|
|
return [r[0] for r in rows]
|
|
|
|
|
|
def _pass(*a, **k):
|
|
return (True, "ok")
|
|
|
|
|
|
def test_tc17_success_deploy_syncs_terminal_done(monkeypatch):
|
|
# Hook reported exit 0 -> the host wrapper wrote result=0.
|
|
self_deploy.write_marker("orchestrator", "ORCH-036", self_deploy.RESULT, "0")
|
|
monkeypatch.setattr(
|
|
stage_engine, "QG_CHECKS",
|
|
{**stage_engine.QG_CHECKS, "check_deploy_status": _pass},
|
|
)
|
|
# Spy the merge-lease release to confirm the terminal-sync still frees it.
|
|
release = MagicMock()
|
|
monkeypatch.setattr(stage_engine.merge_gate, "release_merge_lease", release)
|
|
# ORCH-021 arms an orthogonal post-deploy-monitor reserved job at deploy->done
|
|
# for the self-hosting repo; disable it here so this test stays focused on the
|
|
# ORCH-036 terminal-sync contract (no PIPELINE agent launched leaving deploy).
|
|
monkeypatch.setattr(stage_engine.post_deploy.settings, "post_deploy_monitor_enabled", False)
|
|
|
|
task_id = _make_task("deploy")
|
|
stage_engine.run_deploy_finalizer(
|
|
{"task_id": task_id, "repo": "orchestrator", "id": 1, "agent": "deploy-finalizer"}
|
|
)
|
|
|
|
assert _stage(task_id) == "done"
|
|
assert stage_engine.set_issue_done.called
|
|
# The merge-lease is released on the deploy->done terminal-sync.
|
|
release.assert_called_once_with("orchestrator", "feature/ORCH-036-x")
|
|
# No agent is launched leaving deploy (terminal).
|
|
assert _jobs() == []
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# ORCH-066 TC-08 (AC-8): self-hosting deploy->done -> Monitoring after Deploy,
|
|
# NOT terminal Done. The post-deploy monitor finalises.
|
|
# ---------------------------------------------------------------------------
|
|
def test_tc08_self_deploy_done_sets_monitoring_not_done(monkeypatch):
|
|
self_deploy.write_marker("orchestrator", "ORCH-036", self_deploy.RESULT, "0")
|
|
monkeypatch.setattr(
|
|
stage_engine, "QG_CHECKS",
|
|
{**stage_engine.QG_CHECKS, "check_deploy_status": _pass},
|
|
)
|
|
monkeypatch.setattr(stage_engine.merge_gate, "release_merge_lease", MagicMock())
|
|
# post_deploy applies for the self-hosting repo with the monitor enabled.
|
|
monkeypatch.setattr(stage_engine.post_deploy.settings, "post_deploy_monitor_enabled", True)
|
|
monkeypatch.setattr(stage_engine.post_deploy.settings, "post_deploy_repos", "")
|
|
# arm_monitor is orthogonal; stub it so this test stays on the status contract.
|
|
monkeypatch.setattr(stage_engine.post_deploy, "arm_monitor", MagicMock(return_value=True))
|
|
|
|
task_id = _make_task("deploy")
|
|
stage_engine.run_deploy_finalizer(
|
|
{"task_id": task_id, "repo": "orchestrator", "id": 1, "agent": "deploy-finalizer"}
|
|
)
|
|
|
|
assert _stage(task_id) == "done"
|
|
# Self-hosting: the issue enters the Monitoring window, NOT terminal Done yet.
|
|
stage_engine.set_issue_monitoring.assert_called_once_with("ORCH-036")
|
|
stage_engine.set_issue_done.assert_not_called()
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# ORCH-066 TC-09 (AC-9): non-self repo deploy->done -> terminal Done (no regress).
|
|
# ---------------------------------------------------------------------------
|
|
def test_tc09_non_self_deploy_done_sets_done(monkeypatch):
|
|
self_deploy.write_marker("enduro-trails", "ET-042", self_deploy.RESULT, "0")
|
|
monkeypatch.setattr(
|
|
stage_engine, "QG_CHECKS",
|
|
{**stage_engine.QG_CHECKS, "check_deploy_status": _pass},
|
|
)
|
|
monkeypatch.setattr(stage_engine.merge_gate, "release_merge_lease", MagicMock())
|
|
# Monitor enabled, but the empty CSV means it applies ONLY to the self repo;
|
|
# a non-self repo therefore takes the unchanged terminal-Done path.
|
|
monkeypatch.setattr(stage_engine.post_deploy.settings, "post_deploy_monitor_enabled", True)
|
|
monkeypatch.setattr(stage_engine.post_deploy.settings, "post_deploy_repos", "")
|
|
|
|
task_id = _make_task("deploy", repo="enduro-trails", branch="feature/ET-042-x", wi="ET-042")
|
|
stage_engine.run_deploy_finalizer(
|
|
{"task_id": task_id, "repo": "enduro-trails", "id": 1, "agent": "deploy-finalizer"}
|
|
)
|
|
|
|
assert _stage(task_id) == "done"
|
|
stage_engine.set_issue_done.assert_called_once_with("ET-042")
|
|
stage_engine.set_issue_monitoring.assert_not_called()
|