mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
feat(cockpit): expose first_pass_yield and a real escaped-defects metric (#709)
The Company Scorecard renders three charter objectives but the cockpit summary only ever carried one of the metrics, so two cards read "No data yet" permanently. first_pass_yield is a pass-through — MetricsService.get_org_scorecard() already computes it on the same 30d/org scope the rest of the delivery block uses, and CockpitService.summary simply never forwarded it. escaped_defects is new. The obvious definition — a blocker finding opened on a task that already reached a terminal state — is unimplementable: every producer of a task_review_findings row fires as part of a bounce whose transition requires a non-terminal task, so it would read zero forever, and a permanently-green card is the same fabrication the panel change removes. What it counts instead: a blocker still at 'addressed', never 'verified', on a task that has since completed. That is reachable because stamp_addressed_verified only bulk-verifies rows matching its OWN origin, so a blocker raised by one origin and never re-confirmed by that origin survives to completion on the developer's word alone. docs/map/metrics-observability.md documents what a zero actually means: the one reachable trigger is a PM-origin blocker on a task escalated to the CEO rather than completed by the PM, since escalate_to_ceo carries no findings-resolved precondition and ceo_approve verifies only ceo-origin rows. It also records that the count is per-finding over a rolling 30-day window, which is not the same unit as the charter's "per release". Co-authored-by: Renn F <rennf93@users.noreply.github.com>
This commit is contained in:
@@ -25,6 +25,8 @@ _BUDGET = 100.0
|
||||
_SPEND_30D = 150.0
|
||||
_COMPLETED_30D = 5
|
||||
_MEDIAN_LEAD_TIME = 12.5
|
||||
_FIRST_PASS_YIELD = 0.92
|
||||
_ESCAPED_DEFECTS = 2
|
||||
|
||||
|
||||
def _agent(role: AgentRole) -> AgentContext:
|
||||
@@ -60,6 +62,24 @@ def _patch(monkeypatch: pytest.MonkeyPatch) -> None:
|
||||
get_delivery_stats_30d=AsyncMock(return_value=delivery_stats),
|
||||
),
|
||||
)
|
||||
monkeypatch.setattr(
|
||||
cm,
|
||||
"get_metrics_service",
|
||||
lambda _s: MagicMock(
|
||||
get_org_scorecard=AsyncMock(
|
||||
return_value=MagicMock(first_pass_yield=_FIRST_PASS_YIELD)
|
||||
)
|
||||
),
|
||||
)
|
||||
monkeypatch.setattr(
|
||||
cm,
|
||||
"ReviewFindingsRepository",
|
||||
lambda _s: MagicMock(
|
||||
escaped_defects_since=AsyncMock(
|
||||
return_value=[(uuid4(), "qa"), (uuid4(), "pr_gate")]
|
||||
)
|
||||
),
|
||||
)
|
||||
usage = MagicMock(
|
||||
get_summary=AsyncMock(return_value={"total_cost_usd": _SPEND_30D}),
|
||||
get_projection=AsyncMock(return_value={"projected_monthly_cost_usd": 200.0}),
|
||||
@@ -95,6 +115,8 @@ async def test_summary_aggregates(monkeypatch: pytest.MonkeyPatch) -> None:
|
||||
assert out["delivery"]["blocked"] == _BLOCKED
|
||||
assert out["delivery"]["completed_30d"] == _COMPLETED_30D
|
||||
assert out["delivery"]["median_lead_time_hours"] == _MEDIAN_LEAD_TIME
|
||||
assert out["delivery"]["first_pass_yield"] == _FIRST_PASS_YIELD
|
||||
assert out["delivery"]["escaped_defects"] == _ESCAPED_DEFECTS
|
||||
assert out["spend"]["spend_30d_usd"] == _SPEND_30D
|
||||
assert out["spend"]["over_budget"] is True
|
||||
assert out["pending_pitches"] == 1
|
||||
@@ -121,6 +143,8 @@ async def test_route_ok_for_ceo(monkeypatch: pytest.MonkeyPatch) -> None:
|
||||
"awaiting_ceo": 0,
|
||||
"completed_30d": 0,
|
||||
"median_lead_time_hours": None,
|
||||
"first_pass_yield": None,
|
||||
"escaped_defects": 0,
|
||||
},
|
||||
"spend": {
|
||||
"spend_30d_usd": 0.0,
|
||||
|
||||
@@ -9,6 +9,7 @@ migration replay here.
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from datetime import UTC, datetime, timedelta
|
||||
from typing import TYPE_CHECKING
|
||||
from uuid import UUID, uuid4
|
||||
|
||||
@@ -49,17 +50,24 @@ async def _seed_agent(session: AsyncSession) -> UUID:
|
||||
return UUID(str(agent.id))
|
||||
|
||||
|
||||
async def _seed_task(session: AsyncSession, created_by: UUID) -> UUID:
|
||||
async def _seed_task(
|
||||
session: AsyncSession,
|
||||
created_by: UUID,
|
||||
*,
|
||||
status: TaskStatus = TaskStatus.NEEDS_REVISION,
|
||||
completed_at: datetime | None = None,
|
||||
) -> UUID:
|
||||
task = TaskTable(
|
||||
id=uuid4(),
|
||||
title="ledger seed task",
|
||||
description="seed",
|
||||
acceptance_criteria=["seeded"],
|
||||
status=TaskStatus.NEEDS_REVISION,
|
||||
status=status,
|
||||
priority=2,
|
||||
task_type=TaskType.CODE,
|
||||
team=Team.BACKEND,
|
||||
created_by=created_by,
|
||||
completed_at=completed_at,
|
||||
)
|
||||
session.add(task)
|
||||
await session.flush()
|
||||
@@ -341,3 +349,168 @@ async def test_list_open_findings_excludes_non_open(
|
||||
)
|
||||
await repo.mark_waived(UUID(str(rows[0].id)), "nit, skip")
|
||||
assert await repo.list_open_findings(limit=20) == []
|
||||
|
||||
|
||||
# escaped_defects_since — the Company Scorecard's "0 critical escaped defects"
|
||||
# metric: a blocker finding still ADDRESSED (never independently VERIFIED by
|
||||
# its own raising origin) on a task that has since gone COMPLETED, in-window.
|
||||
|
||||
|
||||
@pytest.mark.asyncio
|
||||
async def test_escaped_defects_since_counts_addressed_blocker_on_completed_task(
|
||||
db_session: AsyncSession,
|
||||
) -> None:
|
||||
agent_id = await _seed_agent(db_session)
|
||||
task_id = await _seed_task(
|
||||
db_session,
|
||||
agent_id,
|
||||
status=TaskStatus.COMPLETED,
|
||||
completed_at=datetime.now(UTC),
|
||||
)
|
||||
repo = ReviewFindingsRepository(db_session)
|
||||
rows = await repo.insert_many(
|
||||
task_id=task_id,
|
||||
origin="pr_gate",
|
||||
round=1,
|
||||
author_slug="be-dev-1",
|
||||
findings=[_finding(severity=Severity.BLOCKER)],
|
||||
)
|
||||
await repo.mark_addressed(task_id, str(rows[0].id), commit="abc123", note="fixed")
|
||||
|
||||
result = await repo.escaped_defects_since(datetime.now(UTC) - timedelta(days=30))
|
||||
assert result == [(task_id, "pr_gate")]
|
||||
|
||||
|
||||
@pytest.mark.asyncio
|
||||
async def test_escaped_defects_since_excludes_verified_blocker(
|
||||
db_session: AsyncSession,
|
||||
) -> None:
|
||||
"""A blocker VERIFIED by its raising origin was actually re-confirmed —
|
||||
not an escaped defect."""
|
||||
agent_id = await _seed_agent(db_session)
|
||||
task_id = await _seed_task(
|
||||
db_session,
|
||||
agent_id,
|
||||
status=TaskStatus.COMPLETED,
|
||||
completed_at=datetime.now(UTC),
|
||||
)
|
||||
repo = ReviewFindingsRepository(db_session)
|
||||
rows = await repo.insert_many(
|
||||
task_id=task_id,
|
||||
origin="qa",
|
||||
round=1,
|
||||
author_slug="be-qa",
|
||||
findings=[_finding(severity=Severity.BLOCKER)],
|
||||
)
|
||||
await repo.mark_addressed(task_id, str(rows[0].id), commit=None, note=None)
|
||||
await repo.mark_verified([UUID(str(rows[0].id))])
|
||||
|
||||
result = await repo.escaped_defects_since(datetime.now(UTC) - timedelta(days=30))
|
||||
assert result == []
|
||||
|
||||
|
||||
@pytest.mark.asyncio
|
||||
async def test_escaped_defects_since_excludes_non_blocker_severity(
|
||||
db_session: AsyncSession,
|
||||
) -> None:
|
||||
"""Only blocker severity counts — a major finding, however unresolved,
|
||||
is not a "critical escaped defect"."""
|
||||
agent_id = await _seed_agent(db_session)
|
||||
task_id = await _seed_task(
|
||||
db_session,
|
||||
agent_id,
|
||||
status=TaskStatus.COMPLETED,
|
||||
completed_at=datetime.now(UTC),
|
||||
)
|
||||
repo = ReviewFindingsRepository(db_session)
|
||||
rows = await repo.insert_many(
|
||||
task_id=task_id,
|
||||
origin="qa",
|
||||
round=1,
|
||||
author_slug="be-qa",
|
||||
findings=[_finding(severity=Severity.MAJOR)],
|
||||
)
|
||||
await repo.mark_addressed(task_id, str(rows[0].id), commit=None, note=None)
|
||||
|
||||
result = await repo.escaped_defects_since(datetime.now(UTC) - timedelta(days=30))
|
||||
assert result == []
|
||||
|
||||
|
||||
@pytest.mark.asyncio
|
||||
async def test_escaped_defects_since_excludes_non_terminal_task(
|
||||
db_session: AsyncSession,
|
||||
) -> None:
|
||||
"""A still-open task hasn't shipped anything yet — nothing has escaped.
|
||||
(This case is actually pinned by the `completed_at IS NOT NULL` condition,
|
||||
since a non-terminal task never has one set — see the sibling test below
|
||||
for a case that isolates the `status == COMPLETED` filter itself.)"""
|
||||
agent_id = await _seed_agent(db_session)
|
||||
task_id = await _seed_task(db_session, agent_id) # default: NEEDS_REVISION
|
||||
repo = ReviewFindingsRepository(db_session)
|
||||
rows = await repo.insert_many(
|
||||
task_id=task_id,
|
||||
origin="qa",
|
||||
round=1,
|
||||
author_slug="be-qa",
|
||||
findings=[_finding(severity=Severity.BLOCKER)],
|
||||
)
|
||||
await repo.mark_addressed(task_id, str(rows[0].id), commit=None, note=None)
|
||||
|
||||
result = await repo.escaped_defects_since(datetime.now(UTC) - timedelta(days=30))
|
||||
assert result == []
|
||||
|
||||
|
||||
@pytest.mark.asyncio
|
||||
async def test_escaped_defects_since_excludes_non_completed_status(
|
||||
db_session: AsyncSession,
|
||||
) -> None:
|
||||
"""Isolates the `TaskTable.status == COMPLETED` filter: a CANCELLED task
|
||||
with a (synthetic, out-of-band) `completed_at` set inside the window would
|
||||
still pass the two `completed_at` conditions alone — only the status
|
||||
check excludes it. Without this case, deleting the status filter leaves
|
||||
every other test passing (proven by mutation testing)."""
|
||||
agent_id = await _seed_agent(db_session)
|
||||
task_id = await _seed_task(
|
||||
db_session,
|
||||
agent_id,
|
||||
status=TaskStatus.CANCELLED,
|
||||
completed_at=datetime.now(UTC),
|
||||
)
|
||||
repo = ReviewFindingsRepository(db_session)
|
||||
rows = await repo.insert_many(
|
||||
task_id=task_id,
|
||||
origin="qa",
|
||||
round=1,
|
||||
author_slug="be-qa",
|
||||
findings=[_finding(severity=Severity.BLOCKER)],
|
||||
)
|
||||
await repo.mark_addressed(task_id, str(rows[0].id), commit=None, note=None)
|
||||
|
||||
result = await repo.escaped_defects_since(datetime.now(UTC) - timedelta(days=30))
|
||||
assert result == []
|
||||
|
||||
|
||||
@pytest.mark.asyncio
|
||||
async def test_escaped_defects_since_excludes_outside_window(
|
||||
db_session: AsyncSession,
|
||||
) -> None:
|
||||
"""A task completed before the window cutoff doesn't count toward it."""
|
||||
agent_id = await _seed_agent(db_session)
|
||||
task_id = await _seed_task(
|
||||
db_session,
|
||||
agent_id,
|
||||
status=TaskStatus.COMPLETED,
|
||||
completed_at=datetime.now(UTC) - timedelta(days=40),
|
||||
)
|
||||
repo = ReviewFindingsRepository(db_session)
|
||||
rows = await repo.insert_many(
|
||||
task_id=task_id,
|
||||
origin="qa",
|
||||
round=1,
|
||||
author_slug="be-qa",
|
||||
findings=[_finding(severity=Severity.BLOCKER)],
|
||||
)
|
||||
await repo.mark_addressed(task_id, str(rows[0].id), commit=None, note=None)
|
||||
|
||||
result = await repo.escaped_defects_since(datetime.now(UTC) - timedelta(days=30))
|
||||
assert result == []
|
||||
|
||||
Reference in New Issue
Block a user