mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
* feat(a2a): deliver latest incoming message preview into the claim briefing
list_unread_a2a now carries last_message_preview (the latest message from the
OTHER agent, never the agent's own reply), fetched via a correlated subquery in
the same query — no N+1 on the per-verb briefing path.
* feat(a2a): read_a2a verb delivers unread message bodies to the agent
A2AService.get_unread_messages returns the caller's unread INCOMING messages
(never its own sends), marking exactly those rows read atomically so a message
arriving mid-call is preserved. Wired as the read_a2a content verb (route +
do_server tool + granted to every delivery role) — the content-bearing read the
A2A inbox lacked (read_messages only zeroed the counter).
* docs(rag): document read_a2a as the A2A content-read path
* fix(task): backlog activation no longer requires a discussion session
Removes the SessionTaskTable gate in activate() (and its dangling log field),
deletes _inherit_parent_session + its create() call, and drops the now-unused
SessionTaskTable import. Coordination rides task state; the session subsystem is
being retired. Tests updated to the new (no-session) behavior.
* fix(orchestrator): drop session sweep from _run_sweep
Removes the messaging import + sweep_timed_out_sessions call. That import sat
outside the try/except, so once messaging.py is deleted it would have killed the
entire sweep cascade (budget kill-switch, token rollups, retention, image prune,
superseded-PR reconcile). Notification sweep + all maintenance sweeps unchanged.
* release-manager --no-tags read-clone fix
* test: update evidence_repo unit test for a2a last_message_preview
* refactor(gateway): drop session propagation on delegate
Removes propagate_sessions_to_subtask from delegate(), the ChoreographerDeps
messaging field + property, and the ChoreographerDeps messaging arg in deps.py
(ContentActions messaging + import stay until the verbs are removed). Deletes the
propagation test; strips the now-invalid messaging kwarg from ChoreographerDeps
test builders.
* refactor(gateway): remove say/open_session/link_session/channels verbs
Removes the four channel/session verbs across content_actions (impls +
ContentActionsDeps.messaging), do_server (tools + registry), role_config (grants
+ _CHANNEL_DISCOVERY), do.py (routes), schemas/v1/do.py (request models), and
deps.py (MessagingService import + construction). Regenerates the prompt verb
tables. dm/notify/read_messages/read_a2a stay. Tests deleted/updated accordingly.
* uv.lock Upgrade
* refactor: remove conversation RAG indexing; Secretary announces via notification
Drops the CONVERSATIONS index (index_conversation, ConversationsIndexPlugin,
IndexType.CONVERSATIONS enum, IndexConversationParams, mentor.py type-label, the
messaging index hook) and its chunk-table manifest entries. The Secretary's
ANNOUNCE/RELAY_MESSAGE now fan out a BROADCAST notification to every agent's
inbox (NotificationService.broadcast) instead of posting to a dead channel.
* fix(panel): label RAG health error lines by subsystem
A red llm_error (e.g. the glm-5.2:cloud weekly-limit 429) rendered under
the 'Embedding: ok' header with no label, reading as an embedding failure.
Prefix each error line with LLM / Embedding / Vector store.
* refactor: remove channel/message reads from metrics, dashboard, git, events
MetricsService drops get_communication_volume + the MessageTable
message-count in get_agent_metrics (and the now-dead messages_sent_week
field). DashboardService drops get_channel_feeds/_compute_channel_status
and the message read in get_recent_activity (task activity kept);
get_auditor_metrics no longer reports communication_volume.
GitService's two primary-session-id helpers always return None now
(callers already treat None as "no primary session"). events/handlers.py
drops the SESSION_CLOSED/SESSION_TIMEOUT subscriptions + the
handle_session_boundary handler.
Forced follow-on: api/routes/dashboard.py + api/schemas/dashboard.py
dropped the now-dangling live_feeds/ChannelFeed surface and the
/metrics/communication route, which wrapped the removed service calls
directly (mypy would otherwise fail on the missing attributes).
* refactor: delete MessagingService + channel seeding
Edited db/__init__.py and services/__init__.py first (drop the unconditional
Channel/Group/Message/Session table + MessagingService re-exports), then
deleted services/messaging.py, then trimmed db/seed.py to only create_agents
(create_channels/create_channel_memberships/create_initial_messages gone).
Forced expansion: api/routes/{channels,groups,sessions,messages}.py import
roboco.services.messaging directly (not through the package __init__), as
does api/routes/tasks.py (the session-links embed on GET /tasks/{id} and the
GET /{id}/sessions route). Deleting messaging.py without addressing these
breaks `import roboco.api.app` immediately, since app.py eagerly imports all
route modules at startup. Since the 4 CRUD route files are 100%
MessagingService-backed with zero independent logic (and are wholesale
deletes in the plan's later API-routes task anyway), deleted them now +
unmounted from app.py/routes/__init__.py; tasks.py got the same surgical
trim its later task already specified (drop session-links embed +
TaskSessionLinkResponse/TaskResponse.sessions). This pulls a slice of that
later work forward — the routes/schemas for channels/groups/sessions/messages
still need their own pass, but their messaging-coupled parts are gone.
Verified with a full-suite collection sweep (12010 tests collected, zero
import errors) beyond the directly touched test dirs, given the expanded
blast radius.
* refactor: remove channel/session/message models, tables, and channel policy
Models: deleted channel.py/group.py/session.py/messaging.py wholesale
(zero external consumers besides the models/__init__.py re-export).
message.py surgically trimmed: removed MessageCreate (dead) and MessageEdit
(never instantiated; ExtractedMessage.edit_history retyped to
list[dict[str, Any]] to match how it's actually persisted — confirmed
ExtractedMessage was never written to any DB table, so MessageTable's
removal carries no functional risk to the kept extraction pipeline).
base.py: removed SessionStatus + ChannelType, kept MessageType. Also
removed the confirmed-dead channels_read/channels_write fields from
models/agent.py:AgentPermissions and models/dashboard.py:ChannelFeedData.
db/tables.py: deleted ChannelTable/GroupTable/SessionTable/SessionTaskTable/
MessageTable, TaskTable.session_links, and JournalEntryTable.session_id —
cascaded through models/journal.py, services/journal.py, and
api/schemas+routes/journals.py (22 plumbing sites).
foundation/policy/communications.py: removed the ChannelSpec/CHANNELS
catalog + TEAM_SCOPED_ROLES/_CELL_*/_AUDITOR_ONLY helpers, kept the
notification policy (Priority/parse_priority/NOTIFY_SENDER_ROLES/
ACK_REQUIRED_BY_TYPE). enforcement/channel_access.py deleted (confirmed
fully dead in production). agents_config.py: removed CHANNEL_ACCESS
(kept A2A_ALLOWED_PAIRS). seeds/initial_data.py: removed
DEFAULT_CHANNELS/CHANNEL_MEMBERSHIPS/AUDITOR_SILENT_ACCESS + the
never-consumed INITIAL_MESSAGES. config.py: removed
session_idle_timeout_seconds (zero consumers). exceptions.py: removed
dead ChannelError/ChannelAccessDeniedError/SessionClosedError.
Forced expansion beyond the original file list — ChannelType cascaded
into a live, mounted surface the plan didn't trace: agents_config.
CHANNEL_ACCESS -> services/permissions.py's channel-RBAC methods (not
models/permissions.py, which turned out to have no channel code at all)
-> two real endpoints in api/routes/stream.py (GET /permissions,
GET /permissions/channel/{name}) and two dependency factories in
api/deps.py. Removed the channel methods + fields, deleted the
channel-specific stream.py endpoint, deleted require_channel_read/write.
Also deleted api/schemas/{channels,sessions}.py (hard dependency on the
removed enums; already fully dead after the Task 10 route deletions) and
api/schemas/messages.py (a TYPE_CHECKING-only import of the deleted
MessageTable; likewise already fully dead) + its dedicated test file.
Test updates: test_permissions.py -14 channel tests (matches the planned
count exactly), test_communications.py / test_communications_consumers.py
split to keep only notification-policy coverage, test_exceptions.py -9,
test_deps.py -4, plus the journal/stream/foundation-smoke fallout. Also
fixed a pre-existing (Task 7) broken assertion in
test_foundation_phase3_smoke.py that inspected a `say()` method already
removed from ContentActions.
Verified: full-suite collection (11961 tests, zero import errors) and a
complete test run (11567 passed, 394 skipped, 0 failed) in addition to
the targeted suites.
* migration: drop channels/groups/sessions/session_tasks/messages + enum types
alembic/versions/060_drop_messaging.py: drop_column journal_entries.
session_id (sidesteps hardcoding the FK constraint name — verified
empirically against a live migrated DB that it's actually
fk_journal_entries_session_id_sessions, but drop_column doesn't care
either way); drop_table in FK order (messages -> session_tasks ->
sessions -> groups -> channels); DROP TABLE IF EXISTS chunks_conversations
(runtime-provisioned, not alembic-managed, would otherwise orphan); DROP
TYPE IF EXISTS for messagetype/sessionstatus/sessionscope/channeltype
(messagetype's Python enum stays for ExtractedMessage, but the DB type
had zero live columns left once MessageTable was dropped in the prior
commit). downgrade() raises NotImplementedError — one-way removal.
Pruned scripts/reset_runtime_state.sql + .sh: removed the DELETE/COUNT
lines for messages/session_tasks/sessions/groups/channels and the
groups.active_session_id reset block.
Verified end-to-end against a scratch Postgres DB: full migration chain
001->060 applies cleanly, alembic heads shows a single head, all 6 dropped
tables + 4 enum types + the journal_entries.session_id column are
confirmed gone, journal_entries keeps only its journal_id/task_id FKs,
downgrade correctly raises NotImplementedError without corrupting DB
state, and the pruned reset_runtime_state.sql runs clean (no errors)
against a fully-migrated DB.
* refactor(api): remove channel/session/message routes + WS streams
Most of this task's file list was already forced through in earlier
commits (routes/{channels,groups,sessions,messages}.py + app.py/__init__.py
unmounting in the MessagingService-deletion commit; tasks.py's
session-links embed + GET /{id}/sessions + schemas/tasks.py's
TaskResponse.sessions in that same commit; deps.py's require_channel_read/
write + schemas/{channels,sessions}.py in the models/tables commit). This
closes out what was left:
- api/websocket.py: deleted the channel_stream + session_stream routes,
ConnectionManager's channel_connections/session_connections dicts,
connect_channel/connect_session, broadcast_to_channel/broadcast_to_session,
get_channel_subscriber_count, and their cleanup lines in disconnect().
Agent streams, notification streams, and the operator system stream are
untouched.
- api/websocket_bridge.py: deleted _handle_session_event +
_handle_message_event and their SESSION_CREATED/SESSION_CLOSED/
SESSION_TIMEOUT/MESSAGE_SENT subscriptions. The A2A live-view, rate-limit,
usage, agent-lifecycle, and notification bridges are untouched.
- api/schemas/websocket.py: removed NewMessageBroadcast, WSMessageNew,
WSMessageEdit, WSMessageDelete, WSSessionClosed — kept the WSMessage base
class (still subclassed by the kept WSAgentStream/WSNotification) plus
those two.
- api/schemas/groups.py: deleted (already fully orphaned since routes/
groups.py was removed; its GroupResponse/GroupDetailResponse had zero
consumers).
Updated the 5 websocket test files accordingly (removed the channel/
session-specific tests + fixed imports); test_websocket_bridge.py's
registration-coverage test dropped the SESSION_*/MESSAGE_SENT assertions.
Verified: full-suite collection (11943 tests, zero import errors) and a
complete test run (11549 passed, 394 skipped, 0 failed).
* docs: retire channels/sessions/messages from agent-facing docs + CLAUDE.md
Rewrites docs/rag (RAG-indexed) + docs/map + CLAUDE.md to reflect A2A (dm +
read_a2a) as primary agent comms; deletes the channel docs, splits messaging-tools
+ messaging-notification (renamed notification.md), swaps the WS worked example to
A2A_MESSAGE_SENT. _complete_map.md still needs regeneration (generated file).
* refactor(panel): remove Communications surface (channels/sessions)
Deletes the /communications routes, message components, task-detail Sessions tab,
use-channels + channel/session WS hooks, and the channels/sessions/messages/groups
api clients; prunes the Channel/Session/Message/Group types + mock data. (Auditor
live-feeds + dashboard.ts dead-route cleanup is a follow-up.)
* refactor(panel): drop auditor channel-feed + dead communication-metric route
* docs(map): regenerate _complete_map from updated slices
* fix(a2a): reduce get_unread_messages complexity below xenon C + stale comments
Extract the per-conversation unread-counter recompute into _reset_unread_counter
(the CI quality gate flagged get_unread_messages as rank C). Also drop the deleted
open_session from a content_actions comment and reword an evidence_repo docstring
that cited the removed messaging._notify_mentions.
---------
Co-authored-by: Renn F <rennf93@users.noreply.github.com>
1119 lines
36 KiB
Python
1119 lines
36 KiB
Python
"""TaskService coverage — activate, branch creation, work session, indexing.
|
|
|
|
Focuses on lifecycle methods that interact with branches, work sessions,
|
|
and the proactive-context background hook.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import asyncio
|
|
import contextlib
|
|
import uuid
|
|
from typing import TYPE_CHECKING, Any, cast
|
|
from unittest.mock import AsyncMock, MagicMock
|
|
from uuid import uuid4
|
|
|
|
import pytest
|
|
import pytest_asyncio
|
|
from roboco.db.tables import (
|
|
AgentTable,
|
|
ProjectTable,
|
|
WorkSessionTable,
|
|
)
|
|
from roboco.exceptions import TaskLifecycleError
|
|
from roboco.models import AgentRole, AgentStatus, Team
|
|
from roboco.models.base import (
|
|
Complexity,
|
|
SubstituteReason,
|
|
TaskNature,
|
|
TaskStatus,
|
|
TaskType,
|
|
)
|
|
from roboco.models.permissions import AgentContext
|
|
from roboco.models.task import TaskCreateRequest
|
|
from roboco.models.work_session import WorkSessionCreate, WorkSessionStatus
|
|
from roboco.services.task import (
|
|
SoftBlockInfo,
|
|
SoftBlockInput,
|
|
TaskService,
|
|
)
|
|
from roboco.services.work_session import WorkSessionService
|
|
|
|
if TYPE_CHECKING:
|
|
from collections.abc import AsyncIterator
|
|
|
|
from sqlalchemy.ext.asyncio import AsyncSession
|
|
|
|
|
|
@pytest_asyncio.fixture
|
|
async def task_setup(
|
|
db_session: AsyncSession,
|
|
) -> AsyncIterator[dict]:
|
|
agent = AgentTable(
|
|
id=uuid4(),
|
|
name="Dev",
|
|
slug=f"be-dev-{uuid4().hex[:8]}",
|
|
role=AgentRole.DEVELOPER,
|
|
team=Team.BACKEND,
|
|
status=AgentStatus.ACTIVE,
|
|
model_config={},
|
|
system_prompt="dev",
|
|
capabilities=[],
|
|
permissions={},
|
|
metrics={},
|
|
)
|
|
db_session.add(agent)
|
|
await db_session.flush()
|
|
project = ProjectTable(
|
|
id=uuid4(),
|
|
name="P",
|
|
slug=f"p-{uuid4().hex[:8]}",
|
|
git_url="https://example.com/r.git",
|
|
default_branch="main",
|
|
assigned_cell=Team.BACKEND,
|
|
created_by=agent.id,
|
|
)
|
|
db_session.add(project)
|
|
await db_session.flush()
|
|
yield {
|
|
"svc": TaskService(db_session),
|
|
"agent_id": agent.id,
|
|
"project_id": project.id,
|
|
"project_slug": project.slug,
|
|
"db": db_session,
|
|
}
|
|
|
|
|
|
def _req(setup: dict, **overrides: Any) -> TaskCreateRequest:
|
|
return TaskCreateRequest(
|
|
title=overrides.pop("title", "t"),
|
|
description=overrides.pop("description", "d"),
|
|
acceptance_criteria=overrides.pop("acceptance_criteria", ["ac"]),
|
|
team=overrides.pop("team", Team.BACKEND),
|
|
created_by=setup["agent_id"],
|
|
project_id=setup["project_id"],
|
|
task_type=overrides.pop("task_type", TaskType.CODE),
|
|
nature=overrides.pop("nature", TaskNature.TECHNICAL),
|
|
estimated_complexity=overrides.pop("estimated_complexity", Complexity.MEDIUM),
|
|
**overrides,
|
|
)
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# activate
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_activate_raises_when_task_missing(task_setup: dict) -> None:
|
|
svc = task_setup["svc"]
|
|
with pytest.raises(ValueError, match="not found"):
|
|
await svc.activate(uuid4(), agent_role="cell_pm")
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_activate_raises_when_not_in_backlog(task_setup: dict) -> None:
|
|
svc = task_setup["svc"]
|
|
task = await svc.create(_req(task_setup)) # PENDING
|
|
with pytest.raises(ValueError, match="not in BACKLOG"):
|
|
await svc.activate(task.id, agent_role="cell_pm")
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# _inject_proactive_context
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_inject_proactive_context_skips_when_claim_rolled_back(
|
|
task_setup: dict, monkeypatch: pytest.MonkeyPatch
|
|
) -> None:
|
|
"""When fresh re-read shows task gone or unassigned, skip without error."""
|
|
svc = task_setup["svc"]
|
|
task = await svc.create(_req(task_setup))
|
|
|
|
# Force the inner fresh-read to return a task whose assigned_to is None.
|
|
# The simplest path is to NOT reassign after create. The task fixture has
|
|
# assigned_to = None from create_request defaults.
|
|
assert task.assigned_to is None
|
|
|
|
@asynccontextmanager_async # Helper below
|
|
async def _factory() -> None:
|
|
return None
|
|
|
|
# Build a fake session_factory whose context returns the test session
|
|
db = task_setup["db"]
|
|
|
|
class _SessionFactory:
|
|
def __call__(self) -> _Ctx:
|
|
return _Ctx(db)
|
|
|
|
class _Ctx:
|
|
def __init__(self, session: Any) -> None:
|
|
self._session = session
|
|
|
|
async def __aenter__(self) -> Any:
|
|
return self._session
|
|
|
|
async def __aexit__(self, exc_type: Any, exc: Any, _tb: Any) -> None:
|
|
return None
|
|
|
|
factory_instance = _SessionFactory()
|
|
monkeypatch.setattr("roboco.db.base.get_session_factory", lambda: factory_instance)
|
|
# Now the fresh-read returns the task with assigned_to == None,
|
|
# mismatching agent_id passed in
|
|
await svc._inject_proactive_context(task, task_setup["agent_id"])
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_inject_proactive_context_swallows_errors(
|
|
task_setup: dict, monkeypatch: pytest.MonkeyPatch
|
|
) -> None:
|
|
"""Errors in proactive service should be logged + swallowed."""
|
|
svc = task_setup["svc"]
|
|
task = await svc.create(_req(task_setup))
|
|
|
|
# Make get_session_factory raise to force the except branch
|
|
def _fail_factory() -> Any:
|
|
raise RuntimeError("factory broken")
|
|
|
|
monkeypatch.setattr("roboco.db.base.get_session_factory", _fail_factory)
|
|
# Should not raise
|
|
await svc._inject_proactive_context(task, task_setup["agent_id"])
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_inject_proactive_context_writes_when_context_nonempty(
|
|
task_setup: dict, db_session: AsyncSession, monkeypatch: pytest.MonkeyPatch
|
|
) -> None:
|
|
"""Full happy path — fresh re-read sees the assignment, proactive returns
|
|
non-empty context, write is performed.
|
|
"""
|
|
svc = task_setup["svc"]
|
|
task = await svc.create(_req(task_setup))
|
|
task.assigned_to = task_setup["agent_id"]
|
|
await db_session.flush()
|
|
|
|
class _Ctx:
|
|
def __init__(self, session: Any) -> None:
|
|
self._session = session
|
|
|
|
async def __aenter__(self) -> Any:
|
|
return self._session
|
|
|
|
async def __aexit__(self, exc_type: Any, exc: Any, _tb: Any) -> None:
|
|
return None
|
|
|
|
class _Factory:
|
|
def __init__(self, session: Any) -> None:
|
|
self._session = session
|
|
|
|
def __call__(self) -> _Ctx:
|
|
return _Ctx(self._session)
|
|
|
|
factory = _Factory(db_session)
|
|
monkeypatch.setattr("roboco.db.base.get_session_factory", lambda: factory)
|
|
|
|
fake_context = MagicMock()
|
|
fake_context.is_empty = MagicMock(return_value=False)
|
|
fake_context.to_dict = MagicMock(return_value={"k": "v"})
|
|
fake_context.similar_tasks = []
|
|
fake_context.relevant_learnings = []
|
|
fake_context.code_patterns = []
|
|
|
|
fake_proactive = MagicMock()
|
|
fake_proactive.on_task_claimed = AsyncMock(return_value=fake_context)
|
|
|
|
async def _get_proactive() -> Any:
|
|
return fake_proactive
|
|
|
|
monkeypatch.setattr(
|
|
"roboco.services.proactive.get_proactive_service", _get_proactive
|
|
)
|
|
# Patch session.commit so it doesn't really commit
|
|
original_commit = db_session.commit
|
|
|
|
async def _no_commit() -> None:
|
|
await db_session.flush()
|
|
|
|
monkeypatch.setattr(db_session, "commit", _no_commit)
|
|
try:
|
|
await svc._inject_proactive_context(task, task_setup["agent_id"])
|
|
finally:
|
|
monkeypatch.setattr(db_session, "commit", original_commit)
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# _create_work_session_if_needed
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_create_work_session_skips_for_qa(
|
|
task_setup: dict, db_session: AsyncSession
|
|
) -> None:
|
|
svc = task_setup["svc"]
|
|
task = await svc.create(_req(task_setup))
|
|
task.branch_name = "feature/backend/x"
|
|
await db_session.flush()
|
|
out = await svc._create_work_session_if_needed(task, task_setup["agent_id"], "qa")
|
|
assert out is None
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_create_work_session_skips_when_no_branch(
|
|
task_setup: dict, db_session: AsyncSession
|
|
) -> None:
|
|
svc = task_setup["svc"]
|
|
task = await svc.create(_req(task_setup))
|
|
# No branch
|
|
await db_session.flush()
|
|
out = await svc._create_work_session_if_needed(
|
|
task, task_setup["agent_id"], "developer"
|
|
)
|
|
assert out is None
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_create_work_session_creates_new(
|
|
task_setup: dict, db_session: AsyncSession
|
|
) -> None:
|
|
svc = task_setup["svc"]
|
|
task = await svc.create(_req(task_setup))
|
|
task.branch_name = "feature/backend/abc"
|
|
await db_session.flush()
|
|
out = await svc._create_work_session_if_needed(
|
|
task, task_setup["agent_id"], "developer"
|
|
)
|
|
assert out is not None
|
|
assert out.branch_name == "feature/backend/abc"
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_create_work_session_returns_existing_session(
|
|
task_setup: dict, db_session: AsyncSession
|
|
) -> None:
|
|
"""When a WorkSession already exists, returns None (no double-create)."""
|
|
svc = task_setup["svc"]
|
|
task = await svc.create(_req(task_setup))
|
|
task.branch_name = "feature/backend/abc"
|
|
await db_session.flush()
|
|
existing = WorkSessionTable(
|
|
id=uuid4(),
|
|
project_id=task_setup["project_id"],
|
|
task_id=task.id,
|
|
agent_id=task_setup["agent_id"],
|
|
branch_name="feature/backend/abc",
|
|
base_branch="main",
|
|
target_branch="main",
|
|
status=WorkSessionStatus.ACTIVE,
|
|
)
|
|
db_session.add(existing)
|
|
await db_session.flush()
|
|
out = await svc._create_work_session_if_needed(
|
|
task, task_setup["agent_id"], "developer"
|
|
)
|
|
assert out is None
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_create_work_session_uses_parent_branch(
|
|
task_setup: dict, db_session: AsyncSession
|
|
) -> None:
|
|
"""Subtask's work session targets parent branch, not project default."""
|
|
svc = task_setup["svc"]
|
|
parent = await svc.create(_req(task_setup))
|
|
parent.branch_name = "feature/backend/PARENT"
|
|
await db_session.flush()
|
|
child = await svc.create(_req(task_setup, parent_task_id=parent.id))
|
|
child.branch_name = "feature/backend/PARENT--CHILD"
|
|
await db_session.flush()
|
|
out = await svc._create_work_session_if_needed(
|
|
child, task_setup["agent_id"], "developer"
|
|
)
|
|
assert out is not None
|
|
assert out.target_branch == "feature/backend/PARENT"
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_create_work_session_no_project_returns_none(
|
|
task_setup: dict, db_session: AsyncSession, monkeypatch: pytest.MonkeyPatch
|
|
) -> None:
|
|
"""When project lookup yields None, returns None (logs warning)."""
|
|
svc = task_setup["svc"]
|
|
task = await svc.create(_req(task_setup))
|
|
task.branch_name = "feature/backend/x"
|
|
await db_session.flush()
|
|
|
|
# Patch session.execute to return scalar_one_or_none=None for ProjectTable
|
|
fake_result = MagicMock()
|
|
fake_result.scalar_one_or_none.return_value = None
|
|
|
|
real_execute = db_session.execute
|
|
|
|
async def _exec_stub(stmt: Any, *a: Any, **kw: Any) -> Any:
|
|
compiled = str(stmt)
|
|
if "FROM projects" in compiled:
|
|
return fake_result
|
|
return await real_execute(stmt, *a, **kw)
|
|
|
|
monkeypatch.setattr(db_session, "execute", _exec_stub)
|
|
out = await svc._create_work_session_if_needed(
|
|
task, task_setup["agent_id"], "developer"
|
|
)
|
|
assert out is None
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_create_work_session_delegates_to_service_create(
|
|
task_setup: dict, db_session: AsyncSession, monkeypatch: pytest.MonkeyPatch
|
|
) -> None:
|
|
"""The claim path must create the WorkSession via ``WorkSessionService.create``
|
|
(single source of truth) rather than constructing a ``WorkSessionTable``
|
|
directly, so service-layer validation (existing-active check, supersede
|
|
invariant) is not bypassed."""
|
|
svc = task_setup["svc"]
|
|
task = await svc.create(_req(task_setup))
|
|
task.branch_name = "feature/backend/delegate"
|
|
await db_session.flush()
|
|
|
|
captured: dict[str, Any] = {}
|
|
original_create = WorkSessionService.create
|
|
|
|
async def _spy_create(_self: Any, data: WorkSessionCreate) -> Any:
|
|
# Record the WorkSessionCreate the claim path handed to the service,
|
|
# then run the real create so the row persists (the FK on
|
|
# tasks.work_session_id requires a real work_sessions row).
|
|
captured["data"] = data
|
|
return await original_create(_self, data)
|
|
|
|
monkeypatch.setattr(WorkSessionService, "create", _spy_create)
|
|
|
|
out = await svc._create_work_session_if_needed(
|
|
task, task_setup["agent_id"], "developer"
|
|
)
|
|
|
|
assert out is not None
|
|
assert "data" in captured
|
|
sent = captured["data"]
|
|
assert isinstance(sent, WorkSessionCreate)
|
|
assert sent.project_id == task_setup["project_id"]
|
|
assert sent.task_id == task.id
|
|
assert sent.agent_id == task_setup["agent_id"]
|
|
assert sent.branch_name == "feature/backend/delegate"
|
|
# Root task targets the project default branch.
|
|
assert sent.target_branch == sent.base_branch
|
|
# The claim path links the session back onto the task.
|
|
assert task.work_session_id == out.id
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# unclaim_for_reaper / unclaim_for_agent — work-session abandon paths
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_unclaim_for_reaper_abandons_work_session(
|
|
task_setup: dict,
|
|
db_session: AsyncSession,
|
|
monkeypatch: pytest.MonkeyPatch,
|
|
) -> None:
|
|
svc = task_setup["svc"]
|
|
task = await svc.create(_req(task_setup))
|
|
task.status = TaskStatus.CLAIMED
|
|
task.assigned_to = task_setup["agent_id"]
|
|
ws = WorkSessionTable(
|
|
id=uuid4(),
|
|
project_id=task_setup["project_id"],
|
|
task_id=task.id,
|
|
agent_id=task_setup["agent_id"],
|
|
branch_name="feature/backend/x",
|
|
base_branch="main",
|
|
target_branch="main",
|
|
status=WorkSessionStatus.ACTIVE,
|
|
)
|
|
db_session.add(ws)
|
|
await db_session.flush()
|
|
task.work_session_id = ws.id
|
|
await db_session.flush()
|
|
|
|
fake_ws_svc = MagicMock()
|
|
fake_ws_svc.abandon = AsyncMock()
|
|
|
|
monkeypatch.setattr(
|
|
"roboco.services.work_session.WorkSessionService",
|
|
lambda _s: fake_ws_svc,
|
|
)
|
|
await svc.unclaim_for_reaper(task.id)
|
|
fake_ws_svc.abandon.assert_awaited_once()
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_unclaim_for_agent_abandons_work_session(
|
|
task_setup: dict,
|
|
db_session: AsyncSession,
|
|
monkeypatch: pytest.MonkeyPatch,
|
|
) -> None:
|
|
svc = task_setup["svc"]
|
|
task = await svc.create(_req(task_setup))
|
|
task.status = TaskStatus.CLAIMED
|
|
task.assigned_to = task_setup["agent_id"]
|
|
ws = WorkSessionTable(
|
|
id=uuid4(),
|
|
project_id=task_setup["project_id"],
|
|
task_id=task.id,
|
|
agent_id=task_setup["agent_id"],
|
|
branch_name="feature/backend/x",
|
|
base_branch="main",
|
|
target_branch="main",
|
|
status=WorkSessionStatus.ACTIVE,
|
|
)
|
|
db_session.add(ws)
|
|
await db_session.flush()
|
|
task.work_session_id = ws.id
|
|
await db_session.flush()
|
|
|
|
fake_ws_svc = MagicMock()
|
|
fake_ws_svc.abandon = AsyncMock()
|
|
|
|
monkeypatch.setattr(
|
|
"roboco.services.work_session.WorkSessionService",
|
|
lambda _s: fake_ws_svc,
|
|
)
|
|
out = await svc.unclaim_for_agent(task.id, agent_id=task_setup["agent_id"])
|
|
assert out is not None
|
|
fake_ws_svc.abandon.assert_awaited_once()
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Lifecycle event indexing — soft_block / unblock / pause / resume
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_soft_block_spawns_blocker_index(
|
|
task_setup: dict,
|
|
db_session: AsyncSession,
|
|
monkeypatch: pytest.MonkeyPatch,
|
|
) -> None:
|
|
"""soft_block fires _index_blocker_background as a bg task."""
|
|
svc = task_setup["svc"]
|
|
task = await svc.create(_req(task_setup))
|
|
task.status = TaskStatus.IN_PROGRESS
|
|
task.assigned_to = task_setup["agent_id"]
|
|
await db_session.flush()
|
|
|
|
fake_optimal = MagicMock()
|
|
fake_optimal.index_error = AsyncMock()
|
|
|
|
async def _get_optimal() -> Any:
|
|
return fake_optimal
|
|
|
|
monkeypatch.setattr("roboco.services.optimal.get_optimal_service", _get_optimal)
|
|
out = await svc.soft_block(
|
|
task.id,
|
|
SoftBlockInfo(reason="r", blocker_type="ext", what_needed="w"),
|
|
)
|
|
assert out is not None
|
|
# Wait for background task by yielding control
|
|
# Allow background tasks to settle
|
|
await asyncio.sleep(0.05)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_pause_spawns_lifecycle_index(
|
|
task_setup: dict,
|
|
db_session: AsyncSession,
|
|
monkeypatch: pytest.MonkeyPatch,
|
|
) -> None:
|
|
svc = task_setup["svc"]
|
|
task = await svc.create(_req(task_setup))
|
|
task.status = TaskStatus.IN_PROGRESS
|
|
await db_session.flush()
|
|
fake_optimal = MagicMock()
|
|
fake_optimal.index_journal_entry = AsyncMock()
|
|
|
|
async def _get_optimal() -> Any:
|
|
return fake_optimal
|
|
|
|
monkeypatch.setattr("roboco.services.optimal.get_optimal_service", _get_optimal)
|
|
out = await svc.pause(task.id)
|
|
assert out is not None
|
|
await asyncio.sleep(0.05)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_resume_spawns_lifecycle_index(
|
|
task_setup: dict,
|
|
db_session: AsyncSession,
|
|
monkeypatch: pytest.MonkeyPatch,
|
|
) -> None:
|
|
svc = task_setup["svc"]
|
|
task = await svc.create(_req(task_setup))
|
|
task.status = TaskStatus.PAUSED
|
|
await db_session.flush()
|
|
fake_optimal = MagicMock()
|
|
fake_optimal.index_journal_entry = AsyncMock()
|
|
|
|
async def _get_optimal() -> Any:
|
|
return fake_optimal
|
|
|
|
monkeypatch.setattr("roboco.services.optimal.get_optimal_service", _get_optimal)
|
|
out = await svc.resume(task.id)
|
|
assert out is not None
|
|
await asyncio.sleep(0.05)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_unblock_spawns_lifecycle_index(
|
|
task_setup: dict,
|
|
db_session: AsyncSession,
|
|
monkeypatch: pytest.MonkeyPatch,
|
|
) -> None:
|
|
svc = task_setup["svc"]
|
|
task = await svc.create(_req(task_setup))
|
|
task.status = TaskStatus.BLOCKED
|
|
await db_session.flush()
|
|
fake_optimal = MagicMock()
|
|
fake_optimal.index_journal_entry = AsyncMock()
|
|
|
|
async def _get_optimal() -> Any:
|
|
return fake_optimal
|
|
|
|
monkeypatch.setattr("roboco.services.optimal.get_optimal_service", _get_optimal)
|
|
out = await svc.unblock(task.id)
|
|
assert out is not None
|
|
await asyncio.sleep(0.05)
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# block: blocker reverse-link not duplicated
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_block_does_not_duplicate_reverse_link(
|
|
task_setup: dict, db_session: AsyncSession
|
|
) -> None:
|
|
svc = task_setup["svc"]
|
|
task = await svc.create(_req(task_setup))
|
|
task.status = TaskStatus.IN_PROGRESS
|
|
task.assigned_to = task_setup["agent_id"]
|
|
await db_session.flush()
|
|
blocker = await svc.create(_req(task_setup))
|
|
# Pre-set reverse link
|
|
blocker.blocker_ids = [task.id]
|
|
await db_session.flush()
|
|
blocked = await svc.block(task.id, blocker_task_id=blocker.id)
|
|
assert blocked is not None
|
|
assert blocker.blocker_ids.count(task.id) == 1
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# submit_for_qa happy path
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_submit_for_qa_clears_assignment_and_records_dev(
|
|
task_setup: dict, db_session: AsyncSession
|
|
) -> None:
|
|
svc = task_setup["svc"]
|
|
task = await svc.create(_req(task_setup))
|
|
task.status = TaskStatus.VERIFYING
|
|
task.assigned_to = task_setup["agent_id"]
|
|
task.claimed_by = task_setup["agent_id"]
|
|
await db_session.flush()
|
|
out = await svc.submit_for_qa(task.id, agent_role="developer")
|
|
assert out is not None
|
|
assert out.status == TaskStatus.AWAITING_QA
|
|
assert out.assigned_to is None
|
|
assert (out.orchestration_markers or {}).get("original_developer")
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# fail_qa — full path with original developer, including bg indexing
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_fail_qa_with_indexing_runs(
|
|
task_setup: dict,
|
|
db_session: AsyncSession,
|
|
monkeypatch: pytest.MonkeyPatch,
|
|
) -> None:
|
|
svc = task_setup["svc"]
|
|
dev_id = task_setup["agent_id"]
|
|
task = await svc.create(_req(task_setup))
|
|
task.status = TaskStatus.AWAITING_QA
|
|
task.orchestration_markers = {"original_developer": str(dev_id)}
|
|
await db_session.flush()
|
|
fake_optimal = MagicMock()
|
|
fake_optimal.record_review = AsyncMock()
|
|
fake_optimal.index_error = AsyncMock()
|
|
|
|
async def _get_optimal() -> Any:
|
|
return fake_optimal
|
|
|
|
monkeypatch.setattr("roboco.services.optimal.get_optimal_service", _get_optimal)
|
|
failed = await svc.fail_qa(task.id, notes="needs work")
|
|
assert failed is not None
|
|
await asyncio.sleep(0.1)
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# pass_qa — full path with bg indexing
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_pass_qa_with_indexing_runs(
|
|
task_setup: dict,
|
|
db_session: AsyncSession,
|
|
monkeypatch: pytest.MonkeyPatch,
|
|
) -> None:
|
|
svc = task_setup["svc"]
|
|
task = await svc.create(_req(task_setup))
|
|
task.status = TaskStatus.AWAITING_QA
|
|
task.pr_number = 1
|
|
task.pr_url = "u"
|
|
await db_session.flush()
|
|
fake_optimal = MagicMock()
|
|
fake_optimal.record_review = AsyncMock()
|
|
|
|
async def _get_optimal() -> Any:
|
|
return fake_optimal
|
|
|
|
monkeypatch.setattr("roboco.services.optimal.get_optimal_service", _get_optimal)
|
|
passed = await svc.pass_qa(task.id, notes="all good", agent_role="qa")
|
|
assert passed is not None
|
|
await asyncio.sleep(0.1)
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# cancel — full cascade with branch deletion + work session abandon
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_cancel_with_branch_and_work_session(
|
|
task_setup: dict,
|
|
db_session: AsyncSession,
|
|
monkeypatch: pytest.MonkeyPatch,
|
|
) -> None:
|
|
svc = task_setup["svc"]
|
|
task = await svc.create(_req(task_setup))
|
|
task.branch_name = "feature/backend/x"
|
|
await db_session.flush()
|
|
ws = WorkSessionTable(
|
|
id=uuid4(),
|
|
project_id=task_setup["project_id"],
|
|
task_id=task.id,
|
|
agent_id=task_setup["agent_id"],
|
|
branch_name="feature/backend/x",
|
|
base_branch="main",
|
|
target_branch="main",
|
|
status=WorkSessionStatus.ACTIVE,
|
|
)
|
|
db_session.add(ws)
|
|
await db_session.flush()
|
|
task.work_session_id = ws.id
|
|
await db_session.flush()
|
|
|
|
fake_ws = MagicMock()
|
|
fake_ws.abandon = AsyncMock()
|
|
monkeypatch.setattr(
|
|
"roboco.services.work_session.get_work_session_service",
|
|
lambda _s: fake_ws,
|
|
)
|
|
fake_git = MagicMock()
|
|
fake_git.delete_task_branch = AsyncMock()
|
|
monkeypatch.setattr("roboco.services.git.get_git_service", lambda _s: fake_git)
|
|
out = await svc.cancel(task.id, agent_role="cell_pm")
|
|
assert out is not None
|
|
fake_ws.abandon.assert_awaited()
|
|
fake_git.delete_task_branch.assert_awaited()
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_cancel_descendants_cascades_for_authorized_pm(
|
|
task_setup: dict, db_session: AsyncSession
|
|
) -> None:
|
|
"""A `cell_pm` cancel cascades through descendants in any PM-cancelable
|
|
non-terminal state.
|
|
|
|
The canonical spec (`roboco.foundation.policy.lifecycle`) authorizes
|
|
cancel from every non-terminal source for {CELL_PM, MAIN_PM, CEO}
|
|
EXCEPT `awaiting_ceo_approval`, which is CEO-only (a PM cancelling a
|
|
task the CEO is reviewing would bypass the human CEO gate). So a PM
|
|
cancel sweeps the whole subtree of PM-cancelable descendants — here a
|
|
child parked in `in_progress`. A descendant in `awaiting_ceo_approval`
|
|
is the refuse case, covered by
|
|
`test_cancel_refuses_when_descendant_role_forbidden`.
|
|
"""
|
|
svc = task_setup["svc"]
|
|
parent = await svc.create(_req(task_setup))
|
|
child = await svc.create(_req(task_setup, parent_task_id=parent.id))
|
|
child.status = TaskStatus.IN_PROGRESS
|
|
await db_session.flush()
|
|
out = await svc.cancel(parent.id, agent_role="cell_pm")
|
|
assert out is not None
|
|
refreshed_child = await svc.get(child.id)
|
|
assert refreshed_child is not None
|
|
# Child cascades to cancelled along with the parent.
|
|
assert refreshed_child.status == TaskStatus.CANCELLED
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_cancel_refuses_when_descendant_role_forbidden(
|
|
task_setup: dict, db_session: AsyncSession, monkeypatch: pytest.MonkeyPatch
|
|
) -> None:
|
|
"""#103: a non-terminal descendant the caller's role can't cancel refuses
|
|
the whole cancel — never silently skips the descendant and leaves an
|
|
orphaned subtree under a cancelled parent.
|
|
|
|
The current spec gates every cancel edge to {cell_pm, main_pm, ceo}
|
|
uniformly, so a PM cancel won't naturally hit a role-forbidden
|
|
descendant. Simulate the future-regression shape (a per-edge role gate
|
|
that re-excludes a state) by stubbing ``_validate_and_set_status`` to
|
|
raise ``TaskLifecycleError`` for the descendant only — the parent's
|
|
cancel stays valid. The broad ``except Exception`` swallow used to
|
|
skip the descendant and cancel the parent anyway (orphan); it must
|
|
now refuse.
|
|
"""
|
|
svc = task_setup["svc"]
|
|
parent = await svc.create(_req(task_setup))
|
|
child = await svc.create(_req(task_setup, parent_task_id=parent.id))
|
|
await db_session.flush()
|
|
|
|
real_validate = svc._validate_and_set_status
|
|
|
|
def stub_validate(task: Any, new_status: Any, agent_role: Any) -> Any:
|
|
if task.id == child.id:
|
|
raise TaskLifecycleError(
|
|
current_status=task.status.value,
|
|
target_status=new_status.value,
|
|
message="simulated per-edge role gate excludes this descendant",
|
|
)
|
|
return real_validate(task, new_status, agent_role)
|
|
|
|
monkeypatch.setattr(svc, "_validate_and_set_status", stub_validate)
|
|
|
|
with pytest.raises(TaskLifecycleError, match="orphaned subtree"):
|
|
await svc.cancel(parent.id, agent_role="cell_pm")
|
|
|
|
refreshed_parent = await svc.get(parent.id)
|
|
assert refreshed_parent is not None
|
|
assert refreshed_parent.status != TaskStatus.CANCELLED
|
|
refreshed_child = await svc.get(child.id)
|
|
assert refreshed_child is not None
|
|
assert refreshed_child.status != TaskStatus.CANCELLED
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Helper: simple async context manager
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def asynccontextmanager_async(func: Any) -> Any:
|
|
"""Stub decorator — actual implementation lives in std lib."""
|
|
return contextlib.asynccontextmanager(func)
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# soft_block_task_for_agent notification path
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_soft_block_task_for_agent_full_flow(
|
|
task_setup: dict,
|
|
db_session: AsyncSession,
|
|
monkeypatch: pytest.MonkeyPatch,
|
|
) -> None:
|
|
|
|
svc = task_setup["svc"]
|
|
task = await svc.create(_req(task_setup))
|
|
task.assigned_to = task_setup["agent_id"]
|
|
task.status = TaskStatus.IN_PROGRESS
|
|
await db_session.flush()
|
|
agent_ctx = AgentContext(
|
|
agent_id=task_setup["agent_id"],
|
|
role=AgentRole.DEVELOPER,
|
|
team=Team.BACKEND,
|
|
slug="x",
|
|
)
|
|
fake_delivery = MagicMock()
|
|
fake_delivery.notify_pm_of_block = AsyncMock()
|
|
monkeypatch.setattr(
|
|
"roboco.services.notification_delivery.get_notification_delivery_service",
|
|
lambda _s: fake_delivery,
|
|
)
|
|
|
|
# Bypass the explicit commit() on session
|
|
async def _no_commit() -> None:
|
|
await db_session.flush()
|
|
|
|
monkeypatch.setattr(db_session, "commit", _no_commit)
|
|
|
|
req = SoftBlockInput(
|
|
blocker_type="external",
|
|
reason="r",
|
|
what_needed="w",
|
|
resolver_type_raw="agent",
|
|
)
|
|
out = await svc.soft_block_task_for_agent(task.id, agent_ctx, req)
|
|
assert out is not None
|
|
fake_delivery.notify_pm_of_block.assert_awaited_once()
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# docs_complete_for_task — notification path
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_docs_complete_for_task_invokes_notification(
|
|
task_setup: dict, db_session: AsyncSession, monkeypatch: pytest.MonkeyPatch
|
|
) -> None:
|
|
|
|
svc = task_setup["svc"]
|
|
doc = AgentTable(
|
|
id=uuid4(),
|
|
name="Doc",
|
|
slug=f"be-doc-{uuid4().hex[:8]}",
|
|
role=AgentRole.DOCUMENTER,
|
|
team=Team.BACKEND,
|
|
status=AgentStatus.ACTIVE,
|
|
model_config={},
|
|
system_prompt="d",
|
|
capabilities=[],
|
|
permissions={},
|
|
metrics={},
|
|
)
|
|
db_session.add(doc)
|
|
await db_session.flush()
|
|
task = await svc.create(_req(task_setup))
|
|
task.status = TaskStatus.AWAITING_DOCUMENTATION
|
|
task.assigned_to = doc.id
|
|
task.pr_number = 1
|
|
task.pr_url = "u"
|
|
task.pr_created = True
|
|
await db_session.flush()
|
|
agent_ctx = AgentContext(
|
|
agent_id=cast("uuid.UUID", doc.id),
|
|
role=AgentRole.DOCUMENTER,
|
|
team=Team.BACKEND,
|
|
slug=doc.slug,
|
|
)
|
|
fake_delivery = MagicMock()
|
|
fake_delivery.notify_pm_of_docs_complete = AsyncMock()
|
|
monkeypatch.setattr(
|
|
"roboco.services.notification_delivery.get_notification_delivery_service",
|
|
lambda _s: fake_delivery,
|
|
)
|
|
|
|
async def _no_commit() -> None:
|
|
await db_session.flush()
|
|
|
|
monkeypatch.setattr(db_session, "commit", _no_commit)
|
|
out = await svc.docs_complete_for_task(
|
|
task.id,
|
|
agent_ctx,
|
|
"Substantial notes about what was documented and where in detail.",
|
|
)
|
|
assert out is not None
|
|
fake_delivery.notify_pm_of_docs_complete.assert_awaited_once()
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# escalate_to_ceo_for_agent — notification path
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_escalate_to_ceo_for_agent_invokes_notification(
|
|
task_setup: dict, db_session: AsyncSession, monkeypatch: pytest.MonkeyPatch
|
|
) -> None:
|
|
|
|
svc = task_setup["svc"]
|
|
pm = AgentTable(
|
|
id=uuid4(),
|
|
name="PM",
|
|
slug=f"main-pm-{uuid4().hex[:8]}",
|
|
role=AgentRole.MAIN_PM,
|
|
team=Team.MAIN_PM,
|
|
status=AgentStatus.ACTIVE,
|
|
model_config={},
|
|
system_prompt="pm",
|
|
capabilities=[],
|
|
permissions={},
|
|
metrics={},
|
|
)
|
|
db_session.add(pm)
|
|
await db_session.flush()
|
|
task = await svc.create(_req(task_setup))
|
|
task.status = TaskStatus.AWAITING_PM_REVIEW
|
|
task.pr_number = 1
|
|
task.pr_url = "u"
|
|
task.pr_created = True
|
|
task.docs_complete = True
|
|
await db_session.flush()
|
|
agent_ctx = AgentContext(
|
|
agent_id=cast("uuid.UUID", pm.id),
|
|
role=AgentRole.MAIN_PM,
|
|
team=Team.MAIN_PM,
|
|
slug=pm.slug,
|
|
)
|
|
|
|
class _P:
|
|
def can_perform_task_action(self, *a: Any, **kw: Any) -> bool:
|
|
del a, kw
|
|
return True
|
|
|
|
fake_delivery = MagicMock()
|
|
fake_delivery.notify_ceo_of_escalation = AsyncMock()
|
|
monkeypatch.setattr(
|
|
"roboco.services.notification_delivery.get_notification_delivery_service",
|
|
lambda _s: fake_delivery,
|
|
)
|
|
|
|
async def _no_commit() -> None:
|
|
await db_session.flush()
|
|
|
|
monkeypatch.setattr(db_session, "commit", _no_commit)
|
|
out = await svc.escalate_to_ceo_for_agent(
|
|
task.id,
|
|
agent_ctx,
|
|
_P(),
|
|
"Substantial reasons for CEO review: scope, risk, breaking change",
|
|
)
|
|
assert out is not None
|
|
fake_delivery.notify_ceo_of_escalation.assert_awaited_once()
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# claim_task_for_agent commits
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_claim_task_for_agent_commits_and_returns(
|
|
task_setup: dict, db_session: AsyncSession, monkeypatch: pytest.MonkeyPatch
|
|
) -> None:
|
|
|
|
svc = task_setup["svc"]
|
|
task = await svc.create(_req(task_setup))
|
|
task.branch_name = "feature/backend/x"
|
|
await db_session.flush()
|
|
agent_ctx = AgentContext(
|
|
agent_id=task_setup["agent_id"],
|
|
role=AgentRole.DEVELOPER,
|
|
team=Team.BACKEND,
|
|
slug="x",
|
|
)
|
|
|
|
class _P:
|
|
def can_perform_task_action(self, *a: Any, **kw: Any) -> bool:
|
|
del a, kw
|
|
return True
|
|
|
|
async def _no_commit() -> None:
|
|
await db_session.flush()
|
|
|
|
monkeypatch.setattr(db_session, "commit", _no_commit)
|
|
out = await svc.claim_task_for_agent(task.id, agent_ctx, _P(), None)
|
|
assert out.id == task.id
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# complete_task_for_agent commits
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_complete_task_for_agent_commits(
|
|
task_setup: dict, db_session: AsyncSession, monkeypatch: pytest.MonkeyPatch
|
|
) -> None:
|
|
|
|
svc = task_setup["svc"]
|
|
pm = AgentTable(
|
|
id=uuid4(),
|
|
name="PM",
|
|
slug=f"be-pm-{uuid4().hex[:8]}",
|
|
role=AgentRole.CELL_PM,
|
|
team=Team.BACKEND,
|
|
status=AgentStatus.ACTIVE,
|
|
model_config={},
|
|
system_prompt="pm",
|
|
capabilities=[],
|
|
permissions={},
|
|
metrics={},
|
|
)
|
|
db_session.add(pm)
|
|
await db_session.flush()
|
|
task = await svc.create(_req(task_setup))
|
|
task.status = TaskStatus.IN_PROGRESS
|
|
task.assigned_to = pm.id
|
|
await db_session.flush()
|
|
agent_ctx = AgentContext(
|
|
agent_id=cast("uuid.UUID", pm.id),
|
|
role=AgentRole.CELL_PM,
|
|
team=Team.BACKEND,
|
|
slug=pm.slug,
|
|
)
|
|
|
|
class _P:
|
|
def can_perform_task_action(self, *a: Any, **kw: Any) -> bool:
|
|
del a, kw
|
|
return True
|
|
|
|
async def _no_commit() -> None:
|
|
await db_session.flush()
|
|
|
|
monkeypatch.setattr(db_session, "commit", _no_commit)
|
|
out = await svc.complete_task_for_agent(task.id, agent_ctx, _P())
|
|
assert out.status == TaskStatus.COMPLETED
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# substitute_task_for_agent — runs full update + commit
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_substitute_task_for_agent_runs_update(
|
|
task_setup: dict, db_session: AsyncSession, monkeypatch: pytest.MonkeyPatch
|
|
) -> None:
|
|
|
|
svc = task_setup["svc"]
|
|
task = await svc.create(_req(task_setup))
|
|
task.assigned_to = task_setup["agent_id"]
|
|
await db_session.flush()
|
|
agent_ctx = AgentContext(
|
|
agent_id=task_setup["agent_id"],
|
|
role=AgentRole.DEVELOPER,
|
|
team=Team.BACKEND,
|
|
slug="x",
|
|
)
|
|
|
|
monkeypatch.setattr("roboco.agents_config.get_pm_for_agent", lambda _s: None)
|
|
monkeypatch.setattr("roboco.agents_config.get_pm_for_team", lambda _t: None)
|
|
|
|
async def _no_commit() -> None:
|
|
await db_session.flush()
|
|
|
|
monkeypatch.setattr(db_session, "commit", _no_commit)
|
|
out = await svc.substitute_task_for_agent(
|
|
task.id,
|
|
agent_ctx,
|
|
SubstituteReason.MAX_RETRIES.value,
|
|
"needs different agent",
|
|
)
|
|
assert out is not None
|
|
# A transient substitute-out must NOT orphan the task: it stays with the
|
|
# same agent (re-dispatchable, resumes from the briefing) — never
|
|
# pending+unassigned.
|
|
assert out.status == TaskStatus.PENDING
|
|
assert out.assigned_to == task_setup["agent_id"]
|