[F109] playbook curation status guards: approve/reject draft-only, archive approved-only

This commit is contained in:
Renn F
2026-06-28 22:21:32 +02:00
parent 27b48dd64e
commit f779fe7453
8 changed files with 284 additions and 21 deletions
+43
View File
@@ -11,6 +11,7 @@ from unittest.mock import AsyncMock, MagicMock
from uuid import uuid4
import pytest
from roboco.services.base import ConflictError
from roboco.services.gateway.content_actions import ContentActions, ContentActionsDeps
from roboco.services.gateway.role_config import get_role_config
@@ -140,3 +141,45 @@ async def test_reject_playbook_archives_for_auditor(
# F057: de-index is the post-commit step (commit gates it).
actions.task.session.commit.assert_awaited_once()
svc.unindex_playbook.assert_awaited_once_with(archived)
@pytest.mark.asyncio
async def test_archive_playbook_retires_approved_for_auditor(
monkeypatch: pytest.MonkeyPatch,
) -> None:
"""archive_playbook is the distinct APPROVED->archived retire path (F109):
it calls ``svc.archive`` (NOT ``svc.reject``), commits, then de-indexes."""
archived = MagicMock()
archived.id = uuid4()
archived.status = "archived"
svc = MagicMock()
svc.archive = AsyncMock(return_value=archived)
svc.reject = AsyncMock()
svc.unindex_playbook = AsyncMock()
monkeypatch.setattr("roboco.services.playbook.get_playbook_service", lambda _s: svc)
actions = _actions("auditor")
env = await actions.archive_playbook(agent_id=uuid4(), playbook_id=uuid4())
assert env.status == "playbook_archived"
svc.archive.assert_awaited_once()
svc.reject.assert_not_awaited()
actions.task.session.commit.assert_awaited_once()
svc.unindex_playbook.assert_awaited_once_with(archived)
@pytest.mark.asyncio
async def test_approve_playbook_invalid_state_envelope(
monkeypatch: pytest.MonkeyPatch,
) -> None:
"""A status-precondition ConflictError from the service becomes a clean
invalid_state envelope (not a 500) — the agent gets a remediate hint to
re-fetch the playbook's current status before re-trying (F109)."""
svc = MagicMock()
svc.approve = AsyncMock(
side_effect=ConflictError("not draft", resource_type="playbook")
)
monkeypatch.setattr("roboco.services.playbook.get_playbook_service", lambda _s: svc)
env = await _actions("auditor").approve_playbook(
agent_id=uuid4(), playbook_id=uuid4()
)
assert env.error == "invalid_state"
assert env.remediate # the agent is told how to recover