Files

172 lines
6.3 KiB
Python
Raw Permalink Normal View History

2026-06-26 01:43:08 +02:00
"""Playbook curation routes — Auditor/CEO list + approve/reject; others 403."""
from __future__ import annotations
from http import HTTPStatus
from typing import TYPE_CHECKING
from uuid import UUID, uuid4
import pytest
import pytest_asyncio
from fastapi import FastAPI
from httpx import ASGITransport, AsyncClient
from roboco.api.deps import get_agent_context, get_db
from roboco.api.routes.playbooks import router as playbooks_router
from roboco.db.tables import PlaybookTable
2026-06-26 01:43:08 +02:00
from roboco.models import AgentRole
from roboco.models.permissions import AgentContext
from roboco.models.playbook import PlaybookCreate
from roboco.services.playbook import PlaybookService
from sqlalchemy import select as _select
2026-06-26 01:43:08 +02:00
if TYPE_CHECKING:
from collections.abc import AsyncIterator
from sqlalchemy.ext.asyncio import AsyncSession
def _build_app(db_session: AsyncSession, role: AgentRole, agent_id: UUID) -> FastAPI:
app = FastAPI()
app.include_router(playbooks_router, prefix="/api/playbooks")
async def _override_db() -> AsyncIterator[AsyncSession]:
yield db_session
async def _override_agent() -> AgentContext:
return AgentContext(agent_id=agent_id, role=role, team=None)
app.dependency_overrides[get_db] = _override_db
app.dependency_overrides[get_agent_context] = _override_agent
return app
async def _seed_draft(db_session: AsyncSession, title: str = "Retry flaky pg") -> UUID:
pb = await PlaybookService(db_session).draft(
PlaybookCreate(
title=title,
problem="connection resets intermittently",
procedure="1. retry with backoff",
tags=["backend"],
),
created_by=uuid4(),
)
return pb.id
@pytest_asyncio.fixture
async def auditor_client(db_session: AsyncSession) -> AsyncIterator[AsyncClient]:
app = _build_app(db_session, AgentRole.AUDITOR, uuid4())
transport = ASGITransport(app=app)
async with AsyncClient(transport=transport, base_url="http://test") as client:
yield client
app.dependency_overrides.clear()
@pytest.mark.asyncio
async def test_list_drafts_as_auditor(
db_session: AsyncSession, auditor_client: AsyncClient
) -> None:
await _seed_draft(db_session, title="Draft to list")
resp = await auditor_client.get("/api/playbooks", params={"status": "draft"})
assert resp.status_code == HTTPStatus.OK
titles = [p["title"] for p in resp.json()]
assert "Draft to list" in titles
@pytest.mark.asyncio
async def test_approve_as_auditor_flips_to_approved(
db_session: AsyncSession, auditor_client: AsyncClient
) -> None:
pid = await _seed_draft(db_session, title="Approve me")
resp = await auditor_client.post(f"/api/playbooks/{pid}/approve")
assert resp.status_code == HTTPStatus.OK
assert resp.json()["status"] == "approved"
@pytest.mark.asyncio
async def test_reject_as_auditor_archives(
db_session: AsyncSession, auditor_client: AsyncClient
) -> None:
pid = await _seed_draft(db_session, title="Reject me")
resp = await auditor_client.post(
f"/api/playbooks/{pid}/reject", json={"reason": "duplicate of an existing one"}
)
assert resp.status_code == HTTPStatus.OK
assert resp.json()["status"] == "archived"
@pytest.mark.asyncio
async def test_approve_missing_is_404(auditor_client: AsyncClient) -> None:
resp = await auditor_client.post(f"/api/playbooks/{uuid4()}/approve")
assert resp.status_code == HTTPStatus.NOT_FOUND
@pytest.mark.asyncio
async def test_non_curator_is_forbidden(db_session: AsyncSession) -> None:
pid = await _seed_draft(db_session, title="Guarded")
app = _build_app(db_session, AgentRole.DEVELOPER, uuid4())
transport = ASGITransport(app=app)
async with AsyncClient(transport=transport, base_url="http://test") as client:
get_resp = await client.get("/api/playbooks")
approve_resp = await client.post(f"/api/playbooks/{pid}/approve")
assert get_resp.status_code == HTTPStatus.FORBIDDEN
assert approve_resp.status_code == HTTPStatus.FORBIDDEN
app.dependency_overrides.clear()
2026-06-29 05:38:21 +02:00
# --- F109: curation status-precondition guards at the route layer ------------- #
# approve/reject only act on a draft; archive only retires an approved playbook.
# A violation is a 409 Conflict (the curation is already finished), not a 200
# that silently no-ops or a 500 from an uncaught ConflictError.
@pytest.mark.asyncio
async def test_approve_already_approved_is_409(
db_session: AsyncSession, auditor_client: AsyncClient
) -> None:
pid = await _seed_draft(db_session, title="Once only")
first = await auditor_client.post(f"/api/playbooks/{pid}/approve")
assert first.status_code == HTTPStatus.OK
# M23: an APPROVED-but-unindexed playbook is re-approvable (the retry
# path); the 409 only fires once the row is durably indexed. Simulate a
# successful post-commit index so the second approve hits the guard.
row = (
await db_session.execute(_select(PlaybookTable).where(PlaybookTable.id == pid))
).scalar_one()
row.indexed_ok = True
await db_session.flush()
2026-06-29 05:38:21 +02:00
second = await auditor_client.post(f"/api/playbooks/{pid}/approve")
assert second.status_code == HTTPStatus.CONFLICT
@pytest.mark.asyncio
async def test_reject_approved_is_409(
db_session: AsyncSession, auditor_client: AsyncClient
) -> None:
pid = await _seed_draft(db_session, title="Published route")
await auditor_client.post(f"/api/playbooks/{pid}/approve")
resp = await auditor_client.post(
f"/api/playbooks/{pid}/reject", json={"reason": "changed my mind"}
)
assert resp.status_code == HTTPStatus.CONFLICT
@pytest.mark.asyncio
async def test_archive_approved_succeeds(
db_session: AsyncSession, auditor_client: AsyncClient
) -> None:
pid = await _seed_draft(db_session, title="Retire route")
await auditor_client.post(f"/api/playbooks/{pid}/approve")
resp = await auditor_client.post(f"/api/playbooks/{pid}/archive")
assert resp.status_code == HTTPStatus.OK
assert resp.json()["status"] == "archived"
@pytest.mark.asyncio
async def test_archive_draft_is_409(
db_session: AsyncSession, auditor_client: AsyncClient
) -> None:
pid = await _seed_draft(db_session, title="Not yet approved")
resp = await auditor_client.post(f"/api/playbooks/{pid}/archive")
assert resp.status_code == HTTPStatus.CONFLICT