mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
Bug:
ContentActions.evidence() hard-coded files_changed=[] and diffed
against HEAD~1 instead of the branch's parent. QA's _build_qa_claim_
evidence (and doc/_impl mirrors) sourced files_changed from
work_session.files_modified, which the gateway commit() never
populates (no add_files_modified plumbing). Result: QA / docs / PM
reviewers saw an empty change list on real PRs and only the latest
commit's delta — flagged in smoke-9 when PR #20 showed the README
change on GitHub but evidence() reported empty.
Fix:
Added GitService.list_changed_files (git diff --name-only against
parent branch). evidence(), _build_qa_claim_evidence,
_claim_doc_evidence, and _build_i_am_done_ok all source files_changed
from this — git is the authoritative source. evidence() also drops
the HEAD~1 base so the diff is the full PR.
Wired EvidenceRepo into ContentActionsDeps so evidence() returns
journal_highlights too, matching the QA/doc shape.
370 lines
12 KiB
Python
370 lines
12 KiB
Python
"""Gate Set D: content-tool ownership guards in ContentActions.
|
|
|
|
When a caller passes a ``task_id`` to commit / say / dm / note / evidence,
|
|
the gateway must verify ``task.assigned_to == caller_agent_id`` before
|
|
allowing the side effect.
|
|
|
|
Pre-gateway equivalent: agents could only act on tasks they owned because
|
|
the MCP handlers resolved task from session context. With the gateway
|
|
exposing the task_id parameter, the ownership check must be explicit.
|
|
|
|
Exception: ``say`` and ``dm`` without a task_id (channel-only / off-task
|
|
A2A) are exempt — used for channel announcements.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from unittest.mock import AsyncMock, MagicMock
|
|
from uuid import uuid4
|
|
|
|
import pytest
|
|
from roboco.services.gateway.content_actions import ContentActions, ContentActionsDeps
|
|
|
|
|
|
def _make_deps(**overrides: AsyncMock) -> ContentActionsDeps:
|
|
if "task" in overrides:
|
|
task = overrides["task"]
|
|
else:
|
|
task = AsyncMock()
|
|
task.get_active_task_for_agent.return_value = None
|
|
|
|
# commit() now checks caller role; default to developer.
|
|
|
|
task.agent_for.return_value = MagicMock(role="developer")
|
|
|
|
if "git" in overrides:
|
|
git = overrides["git"]
|
|
else:
|
|
git = AsyncMock()
|
|
git.commit.return_value = {"sha": "abc12345"}
|
|
git.diff.return_value = ""
|
|
|
|
messaging = overrides.get("messaging", AsyncMock())
|
|
a2a = overrides.get("a2a", AsyncMock())
|
|
journal = overrides.get("journal", AsyncMock())
|
|
workspace = overrides.get("workspace", AsyncMock())
|
|
notifications = overrides.get("notifications", AsyncMock())
|
|
if "evidence_repo" in overrides:
|
|
evidence_repo = overrides["evidence_repo"]
|
|
else:
|
|
evidence_repo = AsyncMock()
|
|
evidence_repo.journal_highlights_for_task.return_value = []
|
|
return ContentActionsDeps(
|
|
task=task,
|
|
git=git,
|
|
messaging=messaging,
|
|
a2a=a2a,
|
|
journal=journal,
|
|
workspace=workspace,
|
|
notifications=notifications,
|
|
evidence_repo=evidence_repo,
|
|
)
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# commit — uses get_active_task_for_agent which is already a self-scoped query.
|
|
# But if a caller had explicit task_id semantics, we'd guard them. The current
|
|
# commit verb uses active task; tests below verify it cannot reach a task that
|
|
# isn't theirs (active task query handles this naturally).
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_commit_active_task_returned_must_be_caller_owned() -> None:
|
|
"""get_active_task_for_agent already self-scopes; verify call signature."""
|
|
agent_id = uuid4()
|
|
task_id = uuid4()
|
|
task_obj = MagicMock(
|
|
id=task_id,
|
|
status="in_progress",
|
|
assigned_to=agent_id,
|
|
branch_name="feature/backend/abc",
|
|
)
|
|
task_svc = AsyncMock()
|
|
task_svc.get_active_task_for_agent.return_value = task_obj
|
|
git_svc = AsyncMock()
|
|
git_svc.commit.return_value = {"sha": "deadbeef1234"}
|
|
|
|
deps = _make_deps(task=task_svc, git=git_svc)
|
|
ca = ContentActions(deps)
|
|
|
|
env = await ca.commit(
|
|
agent_id=agent_id,
|
|
message="feat(api): add /healthz endpoint",
|
|
)
|
|
assert env.error is None
|
|
task_svc.get_active_task_for_agent.assert_awaited_once_with(agent_id)
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# note — explicit task_id ownership
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_note_with_task_id_blocks_when_not_assignee() -> None:
|
|
"""note(task_id=X) where X is owned by someone else is rejected."""
|
|
agent_id = uuid4()
|
|
other_id = uuid4()
|
|
task_id = uuid4()
|
|
task_obj = MagicMock(id=task_id, status="in_progress", assigned_to=other_id)
|
|
task_svc = AsyncMock()
|
|
task_svc.get.return_value = task_obj
|
|
journal_svc = AsyncMock()
|
|
deps = _make_deps(task=task_svc, journal=journal_svc)
|
|
ca = ContentActions(deps)
|
|
|
|
env = await ca.note(
|
|
agent_id=agent_id,
|
|
text="I am putting a note on someone else's task",
|
|
scope="reflect",
|
|
task_id=task_id,
|
|
)
|
|
body = env.as_dict()
|
|
assert body["error"] == "not_authorized"
|
|
assert str(task_id) in body["message"] or "assignee" in body["message"]
|
|
journal_svc.write_entry.assert_not_awaited()
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_note_with_task_id_allows_when_assignee() -> None:
|
|
"""note(task_id=X) where X is owned by caller succeeds."""
|
|
agent_id = uuid4()
|
|
task_id = uuid4()
|
|
task_obj = MagicMock(id=task_id, status="in_progress", assigned_to=agent_id)
|
|
task_svc = AsyncMock()
|
|
task_svc.get.return_value = task_obj
|
|
task_svc.get_active_task_for_agent.return_value = None
|
|
journal_svc = AsyncMock()
|
|
deps = _make_deps(task=task_svc, journal=journal_svc)
|
|
ca = ContentActions(deps)
|
|
|
|
# Uses scope='note' (no structured-field requirement) — the test
|
|
# exercises the ownership gate, not the journal-shape gate (which is
|
|
# covered separately in test_content_actions.py).
|
|
env = await ca.note(
|
|
agent_id=agent_id,
|
|
text="Working on my own task",
|
|
scope="note",
|
|
task_id=task_id,
|
|
)
|
|
assert env.error is None
|
|
journal_svc.write_entry.assert_awaited_once()
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_note_without_task_id_skips_ownership_check() -> None:
|
|
"""note without task_id is fine (might be a general entry)."""
|
|
agent_id = uuid4()
|
|
task_svc = AsyncMock()
|
|
task_svc.get_active_task_for_agent.return_value = None
|
|
journal_svc = AsyncMock()
|
|
deps = _make_deps(task=task_svc, journal=journal_svc)
|
|
ca = ContentActions(deps)
|
|
|
|
env = await ca.note(
|
|
agent_id=agent_id,
|
|
text="A general note with enough length",
|
|
scope="note",
|
|
)
|
|
assert env.error is None
|
|
journal_svc.write_entry.assert_awaited_once()
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# say — explicit task_id ownership (only when task_id provided)
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_say_with_task_id_blocks_when_not_assignee() -> None:
|
|
"""say(task_id=X) where X is owned by someone else is rejected."""
|
|
agent_id = uuid4()
|
|
other_id = uuid4()
|
|
task_id = uuid4()
|
|
task_obj = MagicMock(id=task_id, status="in_progress", assigned_to=other_id)
|
|
task_svc = AsyncMock()
|
|
task_svc.get.return_value = task_obj
|
|
messaging_svc = AsyncMock()
|
|
deps = _make_deps(task=task_svc, messaging=messaging_svc)
|
|
ca = ContentActions(deps)
|
|
|
|
env = await ca.say(
|
|
agent_id=agent_id,
|
|
channel="backend-cell",
|
|
text="Posting on someone else's task",
|
|
task_id=task_id,
|
|
)
|
|
body = env.as_dict()
|
|
assert body["error"] == "not_authorized"
|
|
messaging_svc.post_to_channel.assert_not_awaited()
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_say_without_task_id_is_exempt() -> None:
|
|
"""say() with NO task_id and no active task: channel announcement, allowed."""
|
|
agent_id = uuid4()
|
|
task_svc = AsyncMock()
|
|
task_svc.get_active_task_for_agent.return_value = None
|
|
messaging_svc = AsyncMock()
|
|
deps = _make_deps(task=task_svc, messaging=messaging_svc)
|
|
ca = ContentActions(deps)
|
|
|
|
env = await ca.say(
|
|
agent_id=agent_id, channel="all-hands", text="General announcement"
|
|
)
|
|
assert env.error is None
|
|
messaging_svc.post_to_channel.assert_awaited_once()
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_say_with_explicit_task_id_owned_by_caller_succeeds() -> None:
|
|
"""say(task_id=X) when caller owns X: allowed."""
|
|
agent_id = uuid4()
|
|
task_id = uuid4()
|
|
task_obj = MagicMock(id=task_id, status="in_progress", assigned_to=agent_id)
|
|
task_svc = AsyncMock()
|
|
task_svc.get.return_value = task_obj
|
|
messaging_svc = AsyncMock()
|
|
deps = _make_deps(task=task_svc, messaging=messaging_svc)
|
|
ca = ContentActions(deps)
|
|
|
|
env = await ca.say(
|
|
agent_id=agent_id,
|
|
channel="backend-cell",
|
|
text="Working on my task",
|
|
task_id=task_id,
|
|
)
|
|
assert env.error is None
|
|
messaging_svc.post_to_channel.assert_awaited_once()
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# dm — explicit task_id ownership
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_dm_with_task_id_blocks_when_not_assignee() -> None:
|
|
"""dm(task_id=X) where X is owned by someone else is rejected."""
|
|
agent_id = uuid4()
|
|
other_id = uuid4()
|
|
task_id = uuid4()
|
|
task_obj = MagicMock(id=task_id, status="in_progress", assigned_to=other_id)
|
|
task_svc = AsyncMock()
|
|
task_svc.get.return_value = task_obj
|
|
a2a_svc = AsyncMock()
|
|
deps = _make_deps(task=task_svc, a2a=a2a_svc)
|
|
ca = ContentActions(deps)
|
|
|
|
env = await ca.dm(
|
|
agent_id=agent_id,
|
|
recipient="be-qa-1",
|
|
text="DM about someone else's task",
|
|
task_id=task_id,
|
|
)
|
|
body = env.as_dict()
|
|
assert body["error"] == "not_authorized"
|
|
a2a_svc.send.assert_not_awaited()
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_dm_with_task_id_owned_by_caller_succeeds() -> None:
|
|
agent_id = uuid4()
|
|
task_id = uuid4()
|
|
task_obj = MagicMock(id=task_id, status="in_progress", assigned_to=agent_id)
|
|
task_svc = AsyncMock()
|
|
task_svc.get.return_value = task_obj
|
|
a2a_svc = AsyncMock()
|
|
deps = _make_deps(task=task_svc, a2a=a2a_svc)
|
|
ca = ContentActions(deps)
|
|
|
|
env = await ca.dm(
|
|
agent_id=agent_id,
|
|
recipient="be-qa-1",
|
|
text="DM about my own task",
|
|
task_id=task_id,
|
|
)
|
|
assert env.error is None
|
|
a2a_svc.send.assert_awaited_once()
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# evidence — explicit task_id ownership
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_evidence_blocks_when_not_assignee() -> None:
|
|
"""evidence(task_id=X) where X is owned by someone else is rejected.
|
|
|
|
Exception: QA/documenter agents legitimately review tasks they don't
|
|
own. We allow the read when assigned_to is None (post-handoff state)
|
|
or matches the caller. The strict gate is for posting/writing only.
|
|
|
|
For this test we use a task with another developer as assignee — the
|
|
inspect call is denied because there's no role-based exemption logic
|
|
yet at the gateway layer for content-tools.
|
|
"""
|
|
agent_id = uuid4()
|
|
other_id = uuid4()
|
|
task_id = uuid4()
|
|
task_obj = MagicMock(
|
|
id=task_id,
|
|
status="in_progress",
|
|
assigned_to=other_id,
|
|
branch_name="feature/backend/abc",
|
|
work_session_id=uuid4(),
|
|
commits=["sha1"],
|
|
pr_number=8,
|
|
pr_url="x",
|
|
dev_notes="",
|
|
acceptance_criteria_status=[],
|
|
)
|
|
task_svc = AsyncMock()
|
|
task_svc.get.return_value = task_obj
|
|
git_svc = AsyncMock()
|
|
git_svc.diff.return_value = ""
|
|
workspace_svc = AsyncMock()
|
|
deps = _make_deps(task=task_svc, git=git_svc, workspace=workspace_svc)
|
|
ca = ContentActions(deps)
|
|
|
|
env = await ca.evidence(agent_id=agent_id, task_id=task_id)
|
|
body = env.as_dict()
|
|
assert body["error"] == "not_authorized"
|
|
workspace_svc.fetch_branch_for_inspection.assert_not_awaited()
|
|
git_svc.diff.assert_not_awaited()
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_evidence_unassigned_task_allows_inspection() -> None:
|
|
"""A task with assigned_to=None (between handoffs) may be inspected.
|
|
|
|
This handles the QA-after-dev-submit case where assigned_to is briefly
|
|
None until reassigned. Strict ownership only applies to write-side.
|
|
"""
|
|
agent_id = uuid4()
|
|
task_id = uuid4()
|
|
task_obj = MagicMock(
|
|
id=task_id,
|
|
status="awaiting_qa",
|
|
assigned_to=None,
|
|
branch_name="feature/backend/abc",
|
|
work_session_id=uuid4(),
|
|
commits=["sha1"],
|
|
pr_number=8,
|
|
pr_url="x",
|
|
dev_notes="",
|
|
acceptance_criteria_status=[],
|
|
)
|
|
task_svc = AsyncMock()
|
|
task_svc.get.return_value = task_obj
|
|
git_svc = AsyncMock()
|
|
git_svc.diff.return_value = "diff content"
|
|
workspace_svc = AsyncMock()
|
|
deps = _make_deps(task=task_svc, git=git_svc, workspace=workspace_svc)
|
|
ca = ContentActions(deps)
|
|
|
|
env = await ca.evidence(agent_id=agent_id, task_id=task_id)
|
|
assert env.error is None
|