[F115] sample monorepo per (repo,workflow)/(repo,command) not per repo

The CI-watch and dep-update loaders collapsed a monorepo's cell-projects
to one canonical entry per repo (slug-sorted-first), so a repo whose cells
each carry their OWN ci_watch_workflow / dep_update_command had only the
canonical cell's workflow/command sampled — a red on another cell's
workflow or drift on another cell's lockfile was missed (under-count).

Refactor the shared one-per-repo collapse into _projects_one_per_key, keyed
by repo identity for external-PR discovery (unchanged: one review per PR per
repo), by (repo, effective workflow) for CI-watch, and by (repo, command)
for dep-update. Each distinct workflow/command is now sampled once; the
engines' per-git_url fix-task dedup still prevents duplicate fix tasks for
the same repo. _projects_one_per_repo now delegates to _projects_one_per_key.

key_fn uses a string annotation (Callable lives under TYPE_CHECKING, like
the existing Coroutine/Iterable annotations at lines 4193/5279).
This commit is contained in:
Renn F
2026-06-28 22:55:10 +02:00
parent 5a5e2b5fa0
commit af2a3056db
3 changed files with 153 additions and 13 deletions
+26 -1
View File
@@ -40,10 +40,35 @@ async def test_load_set_filters_command_one_per_repo() -> None:
svc.list_all = AsyncMock(return_value=[on_a, on_a2, off])
with patch("roboco.services.project.get_project_service", return_value=svc):
eligible = await orch._load_dep_update_set(MagicMock())
assert len(eligible) == 1 # no-command excluded; same-repo collapsed
assert len(eligible) == 1 # no-command excluded; same-repo + same-command collapsed
assert eligible[0].git_url == "https://x/a.git"
@pytest.mark.asyncio
async def test_load_set_keeps_distinct_commands_per_repo() -> None:
"""F115: a monorepo's several cell-projects each carrying their OWN
``dep_update_command`` (different ecosystems → different lockfiles) must
ALL be probed — collapsing to the canonical cell's command would miss the
other cells' lockfile drift (under-count). Same repo, DIFFERENT commands →
one entry per (repo, command). The engine's per-git_url open-task dedup
still prevents duplicate update tasks for the repo."""
orch = _orch()
be = MagicMock(
slug="be", git_url="https://x/a.git", dep_update_command="uv lock --upgrade"
)
fe = MagicMock(
slug="fe", git_url="https://x/a.git", dep_update_command="pnpm update -L"
)
svc = MagicMock()
svc.list_all = AsyncMock(return_value=[be, fe])
with patch("roboco.services.project.get_project_service", return_value=svc):
eligible = await orch._load_dep_update_set(MagicMock())
# distinct commands both probed, NOT collapsed to one canonical cell —
# the set-equality assertion proves exactly-two (no magic-value literal).
commands = {p.dep_update_command for p in eligible}
assert commands == {"uv lock --upgrade", "pnpm update -L"}
def _db_ctx(db: Any) -> Any:
@asynccontextmanager
async def _ctx() -> Any: