mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
* feat(gateway): reviewer/PM collision map (W5)
The collision surface (intends_to_touch / adds_migration / touches_shared)
is authored at delegate time, consumed once by SequencingService to wire
dependency edges, then never shown to a reviewer again. This surfaces it:
- Pure builder (services/gateway/choreographer/collision.py): for a task
under review, the surfaced siblings (same parent) that would collide —
file-overlap globs or a shared migration chain (both adds_migration) —
with the overlapping globs and a declared-vs-actual drift check. No
DB/IO; callers fetch siblings (one indexed get_subtasks query, mig 069)
+ actual files (git). Caps: 10 siblings, 5 globs.
- Evidence envelopes: collision_context block injected into QA
claim_review, PR-gate claim_gate_review (both carry real touched files
so drift is populated), and the PM i_will_plan briefing (no actual
files at plan time, drift omitted). Best-effort — a failure omits the
block, never breaks the verb/briefing. Empty block omitted (zero token
cost via _EVIDENCE_OMIT_WHEN_EMPTY).
- Panel: GET /api/tasks/{id}/collision-map (declared surface + sibling
overlap; no drift — the panel route resolves no workspace) + a Collision
tab on the task detail (8th tab). Mock-mode returns an empty map.
- docs/map added to the RAG auto-index dirs so the collision-map concept
is fleet-retrievable; skipped gracefully if the dir is absent.
19 new tests (15 unit on the pure builder + 4 integration on the route).
Gate green: ruff/mypy/xenon (module rank A)/pytest 13000/coverage 94.81%,
panel typecheck/lint/516 tests.
* [w6-telegram] Add Telegram notifications bridge (V1)
CEO-facing Telegram DM bridge, flag-gated off by default
(ROBOCO_TELEGRAM_ENABLED). Mirrors the X-credentials / X-client pattern:
- TelegramCredentialsTable (migration 073) — singleton Fernet-encrypted
bot_token + chat_id, all-or-nothing set/clear; API never returns plaintext.
- TelegramClient ABC / NullTelegramClient (no-op, configured->False, never
raises) / LiveTelegramClient (httpx POST sendMessage) / build_telegram_client
factory (Null when creds unset).
- /telegram/credentials CEO-only routes (write-only, guard-decorated).
- Best-effort _notify_telegram fan-out from the two CEO-notify producers
(notify_ceo_of_escalation, notify_ceo_of_completion) — guarded by the flag,
never raises into the producer, carries a panel deep-link when
panel_base_url is set.
- panel credentials card (2 fields) nested in the Telegram feature-flag row.
- panel_base_url + telegram_timeout_seconds config fields.
V1 scope only: credentials + flag + panel card + client + one-line fan-out.
Out of scope (V2): inbound commands, a TelegramEngine background loop, a
dedup ledger, a bus subscription.
* [w6-telegram] fix: slave mypy/xenon regression (product tests + helper extract)
Pre-existing on slave from prior session's merges — no PR's CI caught them
(squash merges don't re-CI the result; each branch was based on older slave).
- test_product: _product helper returned MagicMock -> list invariant error;
cast to ProductTable, move import under TYPE_CHECKING.
- test_usage: svc.session.execute (AsyncSession) has no call_args_list;
cast to MagicMock at the two call sites.
- product.progress_for_products: xenon rank C -> extract module-level
_project_to_products_map helper (repo pattern: helper-extract).
---------
Co-authored-by: Renn F <rennf93@users.noreply.github.com>
115 lines
4.0 KiB
Python
115 lines
4.0 KiB
Python
"""Unit tests for ProductService.progress_for_products.
|
|
|
|
Mocks the SQLAlchemy AsyncSession.execute() boundary and verifies the
|
|
per-product aggregation (one grouped query, summed per product, monorepo
|
|
dedup of the same project across a product's cells).
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING, cast
|
|
from unittest.mock import AsyncMock, MagicMock
|
|
from uuid import UUID
|
|
|
|
import pytest
|
|
from roboco.services.product import ProductService
|
|
|
|
if TYPE_CHECKING:
|
|
from roboco.db.tables import ProductTable
|
|
|
|
_PRODUCT_A = UUID("11111111-1111-1111-1111-111111111111")
|
|
_PRODUCT_B = UUID("22222222-2222-2222-2222-222222222222")
|
|
_PROJECT_1 = UUID("aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa")
|
|
_PROJECT_2 = UUID("bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb")
|
|
|
|
|
|
def _cell(project_id: UUID) -> MagicMock:
|
|
cell = MagicMock()
|
|
cell.project_id = project_id
|
|
return cell
|
|
|
|
|
|
def _product(pid: UUID, project_ids: list[UUID]) -> ProductTable:
|
|
p = MagicMock()
|
|
p.id = pid
|
|
p.cells = [_cell(pid_proj) for pid_proj in project_ids]
|
|
return cast("ProductTable", p)
|
|
|
|
|
|
def _result_fetchall(rows: list[MagicMock]) -> MagicMock:
|
|
result = MagicMock()
|
|
result.fetchall = MagicMock(return_value=rows)
|
|
return result
|
|
|
|
|
|
def _row(project_id: UUID, done: int, active: int, blocked: int) -> MagicMock:
|
|
row = MagicMock()
|
|
row.project_id = project_id
|
|
row.done = done
|
|
row.active = active
|
|
row.blocked = blocked
|
|
return row
|
|
|
|
|
|
class TestProgressForProducts:
|
|
@pytest.mark.asyncio
|
|
async def test_sums_per_product_across_its_projects(self) -> None:
|
|
"""Product A spans projects 1+2; each project's counts are summed."""
|
|
session = MagicMock()
|
|
session.execute = AsyncMock(
|
|
return_value=_result_fetchall(
|
|
[
|
|
_row(_PROJECT_1, done=3, active=2, blocked=1),
|
|
_row(_PROJECT_2, done=5, active=0, blocked=0),
|
|
]
|
|
)
|
|
)
|
|
svc = ProductService(session)
|
|
products = [_product(_PRODUCT_A, [_PROJECT_1, _PROJECT_2])]
|
|
out = await svc.progress_for_products(products)
|
|
assert out[_PRODUCT_A] == {"done": 8, "active": 2, "blocked": 1}
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_monorepo_dedup_counts_project_once_per_product(self) -> None:
|
|
"""Two cells of the same product pointing at the same project must not
|
|
double-count that project's tasks for the product."""
|
|
session = MagicMock()
|
|
session.execute = AsyncMock(
|
|
return_value=_result_fetchall(
|
|
[_row(_PROJECT_1, done=4, active=1, blocked=0)]
|
|
)
|
|
)
|
|
svc = ProductService(session)
|
|
# Product A has two cells both -> project 1 (monorepo).
|
|
products = [_product(_PRODUCT_A, [_PROJECT_1, _PROJECT_1])]
|
|
out = await svc.progress_for_products(products)
|
|
assert out[_PRODUCT_A] == {"done": 4, "active": 1, "blocked": 0}
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_shared_project_attributed_to_both_products(self) -> None:
|
|
"""A project referenced by two products contributes to each once."""
|
|
session = MagicMock()
|
|
session.execute = AsyncMock(
|
|
return_value=_result_fetchall(
|
|
[_row(_PROJECT_2, done=2, active=1, blocked=0)]
|
|
)
|
|
)
|
|
svc = ProductService(session)
|
|
products = [
|
|
_product(_PRODUCT_A, [_PROJECT_1, _PROJECT_2]),
|
|
_product(_PRODUCT_B, [_PROJECT_2]),
|
|
]
|
|
out = await svc.progress_for_products(products)
|
|
# Project 1 has no row -> contributes 0; project 2 -> both products.
|
|
assert out[_PRODUCT_A] == {"done": 2, "active": 1, "blocked": 0}
|
|
assert out[_PRODUCT_B] == {"done": 2, "active": 1, "blocked": 0}
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_no_cells_returns_empty(self) -> None:
|
|
session = MagicMock()
|
|
session.execute = AsyncMock()
|
|
svc = ProductService(session)
|
|
out = await svc.progress_for_products([_product(_PRODUCT_A, [])])
|
|
assert out == {}
|
|
session.execute.assert_not_called()
|