mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
* fix(panel): cap dialog height and pin footer so actions stay reachable
Shared DialogContent now caps at max-h-[85vh] with overflow-y-auto, and the
footer is sticky to the bottom. Long content (e.g. a pasted change-request
note) no longer pushes the submit/cancel buttons past the viewport — the body
scrolls while the actions stay visible. No-op on dialogs that already fit.
* feat(notifications): suppress duplicate same-purpose notifications at send
A notification is not created when an unacknowledged one with the same purpose
— same sender, same type, same task, overlapping recipients — already exists.
Body text is not compared, so rewording cannot defeat it; a different type,
task, sender, or an already-acked recipient all still send through. Stops
agents that loop re-issuing the same signal from piling up unread that
soft-blocks the recipient's idle path.
* fix(gateway): stop board/PM lifecycle verbs from 500-crashing
Two unguarded crashes that wedged the org in respawn/escalate loops:
- escalate_to_ceo dereferenced None.status when the verb runner declined the
escalation (task not in awaiting_pm_review — e.g. a board agent escalating a
blocked task). It now returns a clean invalid_state. The message/remediate
build moved to a helper so the function stays within the complexity gate.
- The coordination-root git ops (pr_target, pr_merge, PR update, branch-token
resolve) called UUID(str(task.project_id)) directly, which raised on a
coordination/integration task (project_id is None — 'badly formed hexadecimal
UUID string'). They now resolve through _project_for_task, which falls back to
the product's repo for project-less roots.
* refactor(intake): split out _block_to_chunk per-block classifier
Extract the per-block classification from _blocks_to_chunks so each function
stays within the xenon cyclomatic-complexity gate (was rank C). Behaviour is
unchanged — verified by the existing intake_driver tests.
* feat(gateway): make the i_am_idle unread soft-block satisfiable
The soft-block on unread A2A / @mentions had no clearing path, so once those
briefing fields populated an agent could never idle — a whole-org deadlock.
Keep the guard (it is correct) and add the missing clear paths:
- New read_messages content verb (schema -> route -> handler ->
a2a.mark_all_read -> MCP tool -> role do_tools): bulk-zeroes the caller's
unread A2A and stamps read_at. The idle hint now points to it.
- list_unread_mentions returns UNACKED MENTION-type notifications (each @mention
already raises one via messaging._notify_mentions) instead of raw,
unconditional mentions, so they clear via the existing notify_ack. No schema
migration needed.
The soft-block is now satisfiable: A2A via read_messages, mentions and
notifications via notify_ack.
* fix(tests): repair notification-dedup db.scalar mocks + prompter agent seeding
The notification send-dedup added a db.scalar() purpose-lookup to
_create_notification; the two hand-rolled _FakeDb test stubs (test_notification,
test_a2a_priority_tristate) had no scalar() method → AttributeError. Add
scalar() returning None (no duplicate) so creation proceeds.
Separately, the prompter '& Start' route tests assign the draft to a fixed
product-owner / main-pm AGENT_UUID but only seeded system + CEO, so the
assigned_to FK failed in isolation (and main-pm flaked in the full suite). Seed
both via idempotent merge() in _seed_project_and_ceo.
* fix(git): gitignore .pnpm-store + flag GH001 push rejection as permanent
A dev once committed the ~115 MB pnpm store → GitHub GH001 (>100 MB) pre-receive
reject → open_pr retry-loop. Two root fixes:
- Add .pnpm-store/ to .gitignore — an ignored dir can't be staged by any git add.
- push() restates a GH001 / file-size rejection as an unmistakable PERMANENT
error pointing at i_am_blocked, so the agent stops blind-retrying a push that
can never succeed (it otherwise mis-reads the raw output as a transient timeout).
The per-verb retry cap (open_pr: 5) already bounded the burn; this ends it.
* fix(gateway): accept a PM decision note as satisfying the complete/submit_up reflect gate
A cell/main PM that wrote a fresh decision but no separate reflect note bounced
on the reflect tracing-gate indefinitely (re-confirmed live: cell PMs looped on
cell_pm_complete -> journal:reflect until reaped, burning tokens — worse because
each respawn resets the per-verb retry cap). For a PM closing/submitting a task
the decision note already documents the close; the separate reflect is the
redundant artifact weak-model PMs forget. Accept a fresh decision as satisfying
reflect for complete + submit_up — the gate still requires a decision +
substantive notes, so the close stays documented.
NOTE (enforcement tradeoff, flagged for CEO review): this intentionally relaxes
the PM complete/submit_up gate. It does NOT touch the developer i_am_done gate.
* feat(gateway): refuse i_am_idle when a PM still owns a task awaiting its review
A cell/main PM once tried to 'send work back' by DMing the developer and going
idle — but a DM changes no task state, so the task stayed awaiting_pm_review and
the orchestrator just re-dispatched the PM in a loop. i_am_idle now refuses (like
the pending-assignment guard) when a PM owns an awaiting_pm_review task, with a
clear remediation: complete() to finish, or reassign()/delegate() to route it
back. PM-only; devs/QA/doc unaffected. Pairs with the reflect-gate relaxation so
the PM can actually complete instead of looping.
* feat(gateway): push a prior-work handoff digest into task-scoped briefings
A freshly spawned or respawned agent previously started cold on every
lifecycle hand-off: the prior worker's PR, commits, acceptance status and
journal highlights lived in task evidence but were pull-on-demand, so each
new role agent re-explored the codebase from scratch — wasted tokens and
fragile context loss across respawns.
build_task_handoff() composes a compact, DB-only digest (no git diff) and
_briefing_for() now attaches it to context_briefing whenever the caller
already holds the task row. The digest is built only from a passed-in task,
so there are zero extra fetches: every resumption entry point (give_me_work
and pm_give_me_work, i_will_work_on, i_will_plan, triage/triage_all,
i_am_done, submit_up, escalate_up, complete) threads the loaded task, while
id-only correction/rejection paths cleanly omit it.
Every field is type-guarded so a partial row never leaks a non-serialisable
value into the envelope.
* docs(prompts): tell agents to resume from the briefing handoff before re-exploring
The base prompt described the success envelope but never told agents to act
on context_briefing, so a respawned or hand-off agent would re-scan the
whole repo and re-derive the plan even when the briefing already carried the
prior worker's PR, commits, acceptance status and journal highlights.
Adds a 'Resume from your briefing' section that walks each task_handoff
field and instructs the agent to continue from it — and to read the unread
A2A / mention / notification lists, which are messages addressed to them.
Pairs with the gateway change that now pushes task_handoff into every
task-scoped briefing.
* feat(tasks): remember cleared dependencies so the unblock briefing can surface them
When an upstream dependency completed, _unblock_dependents removed its id from
the dependent's dependency_ids to let it be claimed — destroying the only
record of which upstream task had just landed. The revived dependent then
re-discovered that work from cold.
Adds tasks.completed_dependency_ids (Alembic 026, uuid[] default '{}'):
_unblock_dependents now appends the cleared id there instead of only dropping
it, and the briefing handoff digest surfaces it so the agent picking the task
back up knows its blocker cleared because that upstream work shipped. The base
prompt documents the field.
Migration round-trip verified against postgres (upgrade adds the column,
downgrade drops it).
* docs(prompts): instruct PMs to split oversized tasks into per-concern subtasks
A subtask carrying a long acceptance list or spanning multiple layers/files
drove repeated QA failures and a PM revision loop — QA can't pass a partial,
and the dev keeps re-touching unrelated parts. Nothing in the PM prompts told
them to decompose by size/concern.
cell_pm gets a 'Sizing' rule: one subtask = one focused concern with ~2-4
criteria and its own dev->QA pass; decompose anything larger before
delegating, sequencing with dependencies. main_pm gets a matching reminder to
scope each cell's slice to that cell's layer rather than handing a cell a
cross-layer monolith that just pushes the problem down a level.
* fix(gateway): mirror the task= kwarg on ChoreographerHelpers helper signatures
The handoff-digest change added a keyword-only task= parameter to
_briefing_for and _build_tracing_gap in _impl, but the ChoreographerHelpers
base that the role mixins inherit still declared the old signatures, so the
composed Choreographer had two incompatible base definitions (mypy [misc]).
Sync the base declarations to match.
* fix(tasks): keep the owner on a substitute-out so the task isn't orphaned
build_substitute_update unconditionally nulled assigned_to, so any
substitute that routes to PENDING (max_retries, low_context, out_of_scope_*)
— the path a verb hitting repeated 500s or its retry limit takes — left the
task pending AND unassigned. The dispatcher only respawns a pending task when
it has an owner, so the task went dormant: no agent ever picked it back up.
Keep the task with its current owner instead. A substitute-out is almost
always a transient stall, so the task re-dispatches to the SAME agent, which
resumes from the briefing handoff. Only the task_complete -> PM-review handoff
changes owner (unchanged).
* feat(a2a): suppress duplicate unread A2A messages at send
A respawned or retrying agent could re-emit the same DM, stacking identical
copies on the recipient's inbox and re-bumping the unread count — noise that
the recipient then has to clear. The notification path already dedups; A2A did
not.
send_chat_message now suppresses a send when an identical message from the
same sender is still unread in the conversation, keyed on (conversation,
sender, message_kind, content). Genuinely different messages are never
collapsed (verified: distinct content still produces distinct rows), so this
avoids the earlier per-pair over-suppression. No migration.
* fix(panel): default the notifications view to Unread, not All
Landing on the All tab buried new notifications under everything already
seen — the most-reported annoyance. The Unread tab is the actionable view, so
make it the default; the All/Pending tabs are one click away.
* fix(panel): show clone progress during intake prep instead of a frozen pill
The first clone of a repo can take a few minutes, during which the intake
form showed only a static 'Preparing the agent…' button — indistinguishable
from a hang. Add a progress region while preparing: an elapsed timer, a
saturating progress bar (approaches but never reaches 100% until the agent
actually answers), and staged copy (spinning up → cloning → first-clone-takes-
a-while → reading the codebase) so the wait reads as work, not a freeze.
* feat(docs): index workspace-authored docs that never reached the RAG store
Docs written through roboco_docs_write land at /app/docs on the orchestrator
and index fine. But a documenter can also write docs with Edit/Write directly
in its own clone (README, CHANGELOG, workspace markdown); those resolve to a
/app/docs path that doesn't exist on the orchestrator, so the indexer reads
nothing and the docs never become searchable — a cross-container miss with no
shared mount to bridge it.
On docs completion, capture each listed doc's committed content out of the
branch (new GitService.read_file_at_branch, via git show) and write it
server-side under /app/docs before indexing, so workspace-authored docs reach
RAG too. Docs already present server-side are skipped; absolute paths and
unreadable/uncommitted files are passed over best-effort.
* feat(prompter): survive a browser reload by reconnecting to the live intake chat
The intake chat lived entirely in React state, so a page reload wiped it and
dropped the human back to the scope form — even though the agent container
outlives the page. Now the chat persists a small TTL'd slice (session id,
messages, scope, draft) to localStorage and, on mount, reconnects: it asks the
new GET /live/{id}/status whether the session is still running and, if so,
restores the history and reopens the SSE stream; if dead or expired it clears
and shows the form. A full reload doesn't run React effect cleanup, so the
navigate-away reap never fires on refresh and the session stays up.
Backend adds the status endpoint + PrompterLiveRegistry.is_alive; localStorage
is cleared on confirm, start-another, and SPA navigate-away.
* chore: remove internal session-bookkeeping refs from code comments (part 1)
Strip leaked task/finding numbers, Wave/Phase/cluster/audit labels from
docstrings and comments across services, foundation policy, runtime, mcp,
api schemas, and agent_sdk — they mean nothing to a repo reader and expose
process internals. Wording preserved; only the labels dropped. Done by hand,
one comment at a time (no scripted rewrite). _impl.py follows separately.
* chore: remove internal session-bookkeeping refs from code comments (part 2)
Finishes the manual scrub: the choreographer _impl.py docstrings/comments plus
the remaining dogfood-run ('smoke-N') labels across runtime, mcp, foundation,
api schemas, services, and agent factories. Reworded to describe the bug or
behaviour in plain words; every label dropped. The repo source is now free of
task/finding numbers, Wave/Phase/cluster/audit/smoke labels. By hand, one
comment at a time.
---------
Co-authored-by: Renn F <rennf93@users.noreply.github.com>
1110 lines
34 KiB
Python
1110 lines
34 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
|
|
from typing import TYPE_CHECKING, Any
|
|
from unittest.mock import AsyncMock, MagicMock
|
|
from uuid import uuid4
|
|
|
|
import pytest
|
|
import pytest_asyncio
|
|
from roboco.db.tables import (
|
|
AgentTable,
|
|
ChannelTable,
|
|
GroupTable,
|
|
ProjectTable,
|
|
SessionTable,
|
|
SessionTaskTable,
|
|
WorkSessionTable,
|
|
)
|
|
from roboco.models import AgentRole, AgentStatus, Team
|
|
from roboco.models.base import (
|
|
ChannelType,
|
|
Complexity,
|
|
SessionStatus,
|
|
SubstituteReason,
|
|
TaskNature,
|
|
TaskStatus,
|
|
TaskType,
|
|
)
|
|
from roboco.models.permissions import AgentContext
|
|
from roboco.models.task import TaskCreateRequest
|
|
from roboco.models.work_session import WorkSessionStatus
|
|
from roboco.services.task import (
|
|
SoftBlockInfo,
|
|
SoftBlockInput,
|
|
TaskService,
|
|
)
|
|
from sqlalchemy import select
|
|
|
|
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) -> 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")
|
|
|
|
|
|
async def _seed_session_for_task(
|
|
db_session: AsyncSession, task_id: Any, agent_id: Any, *, is_primary: bool
|
|
) -> Any:
|
|
"""Seed a Channel/Group/Session/Link for a task to satisfy FK constraints."""
|
|
|
|
channel = ChannelTable(
|
|
id=uuid4(),
|
|
name="c",
|
|
slug=f"c-{uuid4().hex[:8]}",
|
|
type=ChannelType.CELL,
|
|
)
|
|
db_session.add(channel)
|
|
await db_session.flush()
|
|
group = GroupTable(
|
|
id=uuid4(),
|
|
name="g",
|
|
channel_id=channel.id,
|
|
members=[agent_id],
|
|
)
|
|
db_session.add(group)
|
|
await db_session.flush()
|
|
session = SessionTable(
|
|
id=uuid4(),
|
|
group_id=group.id,
|
|
status=SessionStatus.ACTIVE,
|
|
)
|
|
db_session.add(session)
|
|
await db_session.flush()
|
|
link = SessionTaskTable(
|
|
session_id=session.id,
|
|
task_id=task_id,
|
|
is_primary=is_primary,
|
|
relationship_type="primary",
|
|
added_by=agent_id,
|
|
)
|
|
db_session.add(link)
|
|
await db_session.flush()
|
|
return session
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_activate_succeeds_when_session_linked(
|
|
task_setup: dict, db_session: AsyncSession
|
|
) -> None:
|
|
svc = task_setup["svc"]
|
|
task = await svc.create(_req(task_setup, status=TaskStatus.BACKLOG))
|
|
await _seed_session_for_task(
|
|
db_session, task.id, task_setup["agent_id"], is_primary=True
|
|
)
|
|
out = await svc.activate(task.id, agent_role="cell_pm")
|
|
assert out.status == TaskStatus.PENDING
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# _inherit_parent_session — primary case
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_inherit_parent_session_with_primary_creates_link(
|
|
task_setup: dict, db_session: AsyncSession
|
|
) -> None:
|
|
svc = task_setup["svc"]
|
|
parent = await svc.create(_req(task_setup))
|
|
session = await _seed_session_for_task(
|
|
db_session, parent.id, task_setup["agent_id"], is_primary=True
|
|
)
|
|
# Create the child — _inherit_parent_session is called during create
|
|
child = await svc.create(_req(task_setup, parent_task_id=parent.id))
|
|
# Verify a link was created for child
|
|
result = await db_session.execute(
|
|
select(SessionTaskTable).where(SessionTaskTable.task_id == child.id)
|
|
)
|
|
inherited = result.scalar_one_or_none()
|
|
assert inherited is not None
|
|
assert inherited.session_id == session.id
|
|
assert inherited.is_primary is False
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# _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():
|
|
return None # type: ignore[no-any-return]
|
|
|
|
# Build a fake session_factory whose context returns the test session
|
|
db = task_setup["db"]
|
|
|
|
class _SessionFactory:
|
|
def __call__(self):
|
|
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, exc, _tb) -> 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, exc, _tb) -> None:
|
|
return None
|
|
|
|
class _Factory:
|
|
def __init__(self, session: Any) -> None:
|
|
self._session = session
|
|
|
|
def __call__(self):
|
|
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, *a, **kw):
|
|
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
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# 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 "original_developer:" in (out.quick_context or "")
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# 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.quick_context = f"original_developer:{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 non-terminal state.
|
|
|
|
Predecessor test asserted CEO-only authority over
|
|
`awaiting_ceo_approval` cancels (legacy table behavior). The
|
|
canonical spec (`roboco.foundation.policy.lifecycle`) authorizes
|
|
cancel from every non-terminal source for {CELL_PM, MAIN_PM, CEO}
|
|
uniformly, so a PM cancel now sweeps the whole subtree — including
|
|
descendants parked in `awaiting_ceo_approval`.
|
|
"""
|
|
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.AWAITING_CEO_APPROVAL
|
|
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
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Helper: simple async context manager
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def asynccontextmanager_async(func):
|
|
"""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=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=pm.id,
|
|
role=AgentRole.MAIN_PM,
|
|
team=Team.MAIN_PM,
|
|
slug=pm.slug,
|
|
)
|
|
|
|
class _P:
|
|
def can_perform_task_action(self, *a, **kw) -> 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, **kw) -> 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=pm.id,
|
|
role=AgentRole.CELL_PM,
|
|
team=Team.BACKEND,
|
|
slug=pm.slug,
|
|
)
|
|
|
|
class _P:
|
|
def can_perform_task_action(self, *a, **kw) -> 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"]
|