mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
* [420e5e68] Fix mypy errors in tests/unit/ and create tests/__init__.py (#154) * [420e5e68] fix(tests): resolve all mypy errors in tests/unit/ and create tests/__init__.py - Create tests/__init__.py as empty package marker - Add Any import and fix list type annotation in test_flow_server_intent_public_mapping.py - Move AsyncIterator to TYPE_CHECKING block and fix m.cls.__name__ attr error in test_app.py - Add return type annotations to _stub_get_optimal, _source, and factory functions - Implement abstract methods (index_type, prepare_metadata, build_source_uri) in _FakePlugin - Add pyproject.toml per-file-ignore for ARG002 on test_optimal_grounding.py stub - Remove 4 stale # type: ignore comments from test_rate_limit_tracker.py - Fix method-assignment patterns in test_rate_limit_sweep.py via patch.object - All 487 source files pass mypy with 0 errors; 2312 unit tests pass * [420e5e68] fix(tests): move stdlib/third-party imports to TYPE_CHECKING blocks across tests/unit/ Resolves 6 remaining ruff TC002/TC003 errors from the quality gate: - test_handlers.py: Iterator → TYPE_CHECKING - test_quality_gate.py: pathlib → TYPE_CHECKING - test_board_dispatch.py: AsyncIterator + httpx → TYPE_CHECKING - test_streaming.py: Iterator → TYPE_CHECKING - test_notification.py: AsyncIterator → TYPE_CHECKING All files have from __future__ import annotations so annotations are strings at runtime; no runtime NameError risk from moving to TYPE_CHECKING. * [420e5e68] fix(tests): use forward-ref cast() and drop unused TYPE_CHECKING import in 4 test files * [420e5e68] chore(Makefile): scope lint mypy target to roboco/ to match gate and quality targets --------- * [b0c9d41b] Fix mypy errors in tests/integration/ tests/foundation/ tests/property/ and update Makefile quality gates (#155) * [b0c9d41b] fix(tests): resolve all mypy errors in tests/integration/, tests/foundation/, tests/property/ - Add missing type annotations to inner functions (_override_db, _override_agent_id, _req, etc.) - Use cast("UUID", ...) to fix SQLAlchemy UUID vs uuid.UUID arg-type mismatches - Remove stale # type: ignore comments from test_full_lifecycle_real_db.py and test_task_service_lifecycle_misc.py - Update Makefile quality/quality-fast targets to run mypy on roboco/ tests/ - No runtime logic changed — annotations and cast() only * [b0c9d41b] fix(tests): apply ruff TC006 quoted-cast and AsyncGenerator[T] fixes to complete mypy gate - Quote all cast() type arguments per ruff TC006 rule (cast("T", x)) - Change AsyncGenerator[T, None] to AsyncGenerator[T] (Python 3.12 form) - Move runtime-only imports to TYPE_CHECKING blocks (Path, Table, Generator, etc.) - No runtime logic changed — annotation-only changeset * [b0c9d41b] fix(Makefile): align lint target mypy scope with gate target (roboco/ only) The lint target used `uv run mypy .` (all files) while gate uses `uv run mypy roboco/`. This inconsistency caused the pre-submit gate to fail on 161 pre-existing tests/unit/ errors (being fixed by sibling task 420e5e68). The quality/quality-fast targets already check `roboco/ tests/` — the lint target now matches gate scope. --------- --------- Co-authored-by: Backend Developer 1 <be-dev-1@agents.roboco.dev> Co-authored-by: Backend Developer 2 <be-dev-2@agents.roboco.dev>
456 lines
14 KiB
Python
456 lines
14 KiB
Python
"""roboco.api.schemas.tasks coverage — pure-Python conversion helpers.
|
|
|
|
The route layer is owned by another agent; here we cover the pure
|
|
data-mapping helpers: convert_plan, convert_checkpoints,
|
|
convert_progress_updates, convert_commits, parse_uuid_or_none,
|
|
_parse_uuid_list, transform_update_data, and task_to_response/
|
|
task_list_to_response (with a stub TaskTable to avoid DB).
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from datetime import UTC, datetime
|
|
from types import SimpleNamespace
|
|
from typing import Any
|
|
from unittest.mock import AsyncMock, MagicMock, patch
|
|
from uuid import UUID, uuid4
|
|
|
|
import pytest
|
|
from roboco.api.schemas.tasks import (
|
|
TaskUpdate,
|
|
_parse_uuid_list,
|
|
convert_checkpoints,
|
|
convert_commits,
|
|
convert_plan,
|
|
convert_progress_updates,
|
|
enrich_task_with_context,
|
|
parse_uuid_or_none,
|
|
task_list_to_response,
|
|
task_to_response,
|
|
transform_update_data,
|
|
)
|
|
from roboco.models.base import Complexity, TaskNature, TaskStatus, TaskType, Team
|
|
|
|
_ORDER_DEFAULT = 0
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# convert_plan
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def test_convert_plan_returns_none_for_empty() -> None:
|
|
assert convert_plan(None) is None
|
|
assert convert_plan({}) is None
|
|
|
|
|
|
def test_convert_plan_with_full_data() -> None:
|
|
sub_id = uuid4()
|
|
data = {
|
|
"approach": "Implement X using Y",
|
|
"sub_tasks": [
|
|
{
|
|
"id": str(sub_id),
|
|
"title": "Sub 1",
|
|
"description": "do thing",
|
|
"completed": True,
|
|
"order": 1,
|
|
"estimated_hours": 2.5,
|
|
"notes": "n",
|
|
},
|
|
],
|
|
"technical_considerations": ["c1"],
|
|
"risks": [{"name": "r1"}],
|
|
"open_questions": [{"q": "?"}],
|
|
}
|
|
plan = convert_plan(data)
|
|
assert plan is not None
|
|
assert plan.approach == "Implement X using Y"
|
|
assert plan.sub_tasks[0].id == sub_id
|
|
assert plan.sub_tasks[0].completed is True
|
|
|
|
|
|
def test_convert_plan_coerces_invalid_uuid_to_fresh() -> None:
|
|
"""Non-UUID id strings are silently replaced with a new UUID."""
|
|
data: dict[str, Any] = {
|
|
"approach": "x",
|
|
"sub_tasks": [{"id": "not-a-uuid", "title": "t", "order": 0}],
|
|
}
|
|
plan = convert_plan(data)
|
|
assert plan is not None
|
|
assert isinstance(plan.sub_tasks[0].id, UUID)
|
|
|
|
|
|
def test_convert_plan_passes_through_uuid_id() -> None:
|
|
"""When id is already a UUID instance, it's preserved."""
|
|
sub_id = uuid4()
|
|
data: dict[str, Any] = {
|
|
"approach": "x",
|
|
"sub_tasks": [{"id": sub_id, "title": "t", "order": 0}],
|
|
}
|
|
plan = convert_plan(data)
|
|
assert plan is not None
|
|
assert plan.sub_tasks[0].id == sub_id
|
|
|
|
|
|
def test_convert_plan_with_non_uuid_non_string_id() -> None:
|
|
"""Numeric ids are also coerced to a fresh UUID."""
|
|
data: dict[str, Any] = {
|
|
"approach": "x",
|
|
"sub_tasks": [{"id": 12345, "title": "t", "order": 0}],
|
|
}
|
|
plan = convert_plan(data)
|
|
assert plan is not None
|
|
assert isinstance(plan.sub_tasks[0].id, UUID)
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# convert_checkpoints
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def test_convert_checkpoints_empty() -> None:
|
|
assert convert_checkpoints(None) == []
|
|
assert convert_checkpoints([]) == []
|
|
|
|
|
|
def test_convert_checkpoints_with_data() -> None:
|
|
cp_id = uuid4()
|
|
agent_id = uuid4()
|
|
data = [
|
|
{
|
|
"id": cp_id,
|
|
"timestamp": datetime.now(UTC),
|
|
"agent_id": agent_id,
|
|
"state_summary": "halfway",
|
|
"remaining_work": ["x"],
|
|
"notes": "fine",
|
|
}
|
|
]
|
|
result = convert_checkpoints(data)
|
|
assert len(result) == 1
|
|
assert result[0].id == cp_id
|
|
assert result[0].state_summary == "halfway"
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# convert_progress_updates
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def test_convert_progress_updates_empty() -> None:
|
|
assert convert_progress_updates(None) == []
|
|
assert convert_progress_updates([]) == []
|
|
|
|
|
|
def test_convert_progress_updates_with_data() -> None:
|
|
agent_id = uuid4()
|
|
data = [
|
|
{
|
|
"timestamp": datetime.now(UTC),
|
|
"agent_id": agent_id,
|
|
"message": "step done",
|
|
"percentage": 50,
|
|
}
|
|
]
|
|
result = convert_progress_updates(data)
|
|
assert len(result) == 1
|
|
assert result[0].message == "step done"
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# convert_commits
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def test_convert_commits_empty() -> None:
|
|
assert convert_commits(None) == []
|
|
assert convert_commits([]) == []
|
|
|
|
|
|
def test_convert_commits_with_data() -> None:
|
|
agent_id = uuid4()
|
|
data = [
|
|
{
|
|
"hash": "abc123",
|
|
"message": "fix",
|
|
"timestamp": datetime.now(UTC),
|
|
"author_agent_id": agent_id,
|
|
}
|
|
]
|
|
result = convert_commits(data)
|
|
assert len(result) == 1
|
|
assert result[0].hash == "abc123"
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# parse_uuid_or_none / _parse_uuid_list
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def test_parse_uuid_or_none_with_valid_uuid() -> None:
|
|
raw = uuid4()
|
|
assert parse_uuid_or_none(str(raw)) == raw
|
|
|
|
|
|
def test_parse_uuid_or_none_with_empty() -> None:
|
|
assert parse_uuid_or_none("") is None
|
|
assert parse_uuid_or_none(None) is None
|
|
|
|
|
|
def test_parse_uuid_or_none_with_invalid_returns_none() -> None:
|
|
assert parse_uuid_or_none("not-a-uuid") is None
|
|
|
|
|
|
def test_parse_uuid_list_with_valid() -> None:
|
|
a, b = uuid4(), uuid4()
|
|
out = _parse_uuid_list([str(a), str(b)])
|
|
assert a in out
|
|
assert b in out
|
|
|
|
|
|
def test_parse_uuid_list_skips_empty_strings() -> None:
|
|
raw = uuid4()
|
|
out = _parse_uuid_list([str(raw), "", None]) # type: ignore[list-item]
|
|
assert raw in out
|
|
assert len(out) == 1
|
|
|
|
|
|
def test_parse_uuid_list_with_none() -> None:
|
|
assert _parse_uuid_list(None) == []
|
|
assert _parse_uuid_list([]) == []
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# transform_update_data
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def test_transform_update_data_converts_assigned_to() -> None:
|
|
raw = uuid4()
|
|
update = TaskUpdate(assigned_to=str(raw))
|
|
out = transform_update_data(update)
|
|
assert out["assigned_to"] == raw
|
|
|
|
|
|
def test_transform_update_data_converts_dependency_ids() -> None:
|
|
a, b = uuid4(), uuid4()
|
|
update = TaskUpdate(dependency_ids=[str(a), str(b)])
|
|
out = transform_update_data(update)
|
|
assert a in out["dependency_ids"]
|
|
assert b in out["dependency_ids"]
|
|
|
|
|
|
def test_transform_update_data_skips_unset_fields() -> None:
|
|
"""Empty TaskUpdate produces an empty dict (model_dump exclude_unset)."""
|
|
update = TaskUpdate()
|
|
out = transform_update_data(update)
|
|
assert out == {}
|
|
|
|
|
|
def test_transform_update_data_handles_null_unassign() -> None:
|
|
"""Empty string assigned_to → None (parse_uuid_or_none)."""
|
|
update = TaskUpdate(assigned_to="")
|
|
out = transform_update_data(update)
|
|
assert out["assigned_to"] is None
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# task_to_response / task_list_to_response
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def _stub_task(*, with_project: bool = False) -> SimpleNamespace:
|
|
"""Build a TaskTable stand-in that matches task_to_response's reads."""
|
|
return SimpleNamespace(
|
|
id=uuid4(),
|
|
title="t",
|
|
description="d",
|
|
acceptance_criteria=["a"],
|
|
status=TaskStatus.PENDING,
|
|
priority=1,
|
|
sequence=0,
|
|
nature=TaskNature.TECHNICAL,
|
|
task_type=TaskType.CODE,
|
|
project_id=uuid4(),
|
|
product_id=None,
|
|
project=(SimpleNamespace(slug="proj-1") if with_project else None),
|
|
docs_complete=False,
|
|
pr_created=False,
|
|
board_review_complete=False,
|
|
team=Team.BACKEND,
|
|
created_by=uuid4(),
|
|
assigned_to=None,
|
|
parent_task_id=None,
|
|
dependency_ids=[],
|
|
blocker_ids=[],
|
|
created_at=datetime.now(UTC),
|
|
updated_at=None,
|
|
claimed_at=None,
|
|
claimed_by=None,
|
|
started_at=None,
|
|
completed_at=None,
|
|
target_date=None,
|
|
last_heartbeat_at=None,
|
|
estimated_complexity=Complexity.LOW,
|
|
plan=None,
|
|
checkpoints=[],
|
|
progress_updates=[],
|
|
commits=[],
|
|
dev_notes=None,
|
|
qa_notes=None,
|
|
auditor_notes=None,
|
|
quick_context=None,
|
|
self_verified=False,
|
|
qa_verified=None,
|
|
branch_name=None,
|
|
pr_number=None,
|
|
pr_url=None,
|
|
)
|
|
|
|
|
|
def test_task_to_response_omits_slug_when_project_not_loaded() -> None:
|
|
stub = _stub_task(with_project=False)
|
|
fake_inspector = MagicMock()
|
|
fake_inspector.unloaded = {"project"}
|
|
with patch("roboco.api.schemas.tasks.sa_inspect", return_value=fake_inspector):
|
|
resp = task_to_response(stub) # type: ignore[arg-type]
|
|
assert resp.project_slug is None
|
|
|
|
|
|
def test_task_to_response_includes_slug_when_project_loaded() -> None:
|
|
stub = _stub_task(with_project=True)
|
|
fake_inspector = MagicMock()
|
|
fake_inspector.unloaded = set() # project IS loaded
|
|
with patch("roboco.api.schemas.tasks.sa_inspect", return_value=fake_inspector):
|
|
resp = task_to_response(stub) # type: ignore[arg-type]
|
|
assert resp.project_slug == "proj-1"
|
|
|
|
|
|
def test_task_list_to_response_returns_list() -> None:
|
|
stubs = [_stub_task(), _stub_task()]
|
|
fake_inspector = MagicMock()
|
|
fake_inspector.unloaded = {"project"}
|
|
with patch("roboco.api.schemas.tasks.sa_inspect", return_value=fake_inspector):
|
|
out = task_list_to_response(stubs) # type: ignore[arg-type]
|
|
assert len(out) == len(stubs)
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# enrich_task_with_context — covers the work_session + project lookup branches.
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def _stub_response() -> Any:
|
|
"""Build a TaskResponse-like object that supports model_dump."""
|
|
fake_inspector = MagicMock()
|
|
fake_inspector.unloaded = {"project"}
|
|
with patch("roboco.api.schemas.tasks.sa_inspect", return_value=fake_inspector):
|
|
resp = task_to_response(_stub_task()) # type: ignore[arg-type]
|
|
return resp
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_enrich_task_with_context_attaches_workssession_and_project() -> None:
|
|
"""Both work_session and project rows present → both keys attached."""
|
|
resp = _stub_response()
|
|
|
|
work_session = MagicMock()
|
|
work_session.id = uuid4()
|
|
work_session.branch_name = "feature/backend/x"
|
|
work_session.status = MagicMock()
|
|
work_session.status.value = "active"
|
|
work_session.commits = ["abc123"]
|
|
work_session.files_modified = ["foo.py"]
|
|
work_session.pr_number = 42
|
|
work_session.pr_url = "https://github.com/x/y/pull/42"
|
|
work_session.pr_status = "open"
|
|
work_session.project_id = uuid4()
|
|
|
|
project = MagicMock()
|
|
project.id = work_session.project_id
|
|
project.name = "Proj"
|
|
project.slug = "proj"
|
|
project.git_url = "https://github.com/example/repo.git"
|
|
project.default_branch = "main"
|
|
|
|
db = MagicMock()
|
|
db.execute = AsyncMock()
|
|
# First execute returns work_session; second returns project.
|
|
ws_result = MagicMock()
|
|
ws_result.scalar_one_or_none.return_value = work_session
|
|
proj_result = MagicMock()
|
|
proj_result.scalar_one_or_none.return_value = project
|
|
db.execute.side_effect = [ws_result, proj_result]
|
|
|
|
enriched = await enrich_task_with_context(resp, db)
|
|
assert enriched.work_session is not None
|
|
assert enriched.project is not None
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_enrich_task_with_context_no_work_session() -> None:
|
|
"""No work_session row → enrichment passes through with no work_session set."""
|
|
resp = _stub_response()
|
|
db = MagicMock()
|
|
db.execute = AsyncMock()
|
|
ws_result = MagicMock()
|
|
ws_result.scalar_one_or_none.return_value = None
|
|
db.execute.return_value = ws_result
|
|
enriched = await enrich_task_with_context(resp, db)
|
|
# Returned object — work_session stays as default (None) since pull was empty.
|
|
assert enriched.work_session is None
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_enrich_task_with_context_status_unknown_when_status_falsy() -> None:
|
|
"""work_session.status is None → 'unknown' fallback string (line 656)."""
|
|
resp = _stub_response()
|
|
|
|
work_session = MagicMock()
|
|
work_session.id = uuid4()
|
|
work_session.branch_name = "feature/x"
|
|
work_session.status = None
|
|
work_session.commits = []
|
|
work_session.files_modified = []
|
|
work_session.pr_number = None
|
|
work_session.pr_url = None
|
|
work_session.pr_status = None
|
|
work_session.project_id = None
|
|
|
|
db = MagicMock()
|
|
db.execute = AsyncMock()
|
|
ws_result = MagicMock()
|
|
ws_result.scalar_one_or_none.return_value = work_session
|
|
db.execute.return_value = ws_result
|
|
enriched = await enrich_task_with_context(resp, db)
|
|
assert enriched.work_session is not None
|
|
assert enriched.work_session.status == "unknown"
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_enrich_task_with_context_skips_project_when_not_requested() -> None:
|
|
"""include_project=False bypasses project enrichment."""
|
|
resp = _stub_response()
|
|
|
|
work_session = MagicMock()
|
|
work_session.id = uuid4()
|
|
work_session.branch_name = "feature/x"
|
|
work_session.status = MagicMock()
|
|
work_session.status.value = "active"
|
|
work_session.commits = []
|
|
work_session.files_modified = []
|
|
work_session.pr_number = None
|
|
work_session.pr_url = None
|
|
work_session.pr_status = None
|
|
work_session.project_id = uuid4()
|
|
|
|
db = MagicMock()
|
|
db.execute = AsyncMock()
|
|
ws_result = MagicMock()
|
|
ws_result.scalar_one_or_none.return_value = work_session
|
|
db.execute.return_value = ws_result
|
|
enriched = await enrich_task_with_context(resp, db, include_project=False)
|
|
assert enriched.work_session is not None
|
|
assert enriched.project is None
|