test_ui_agents_no_commit_meta.py
python
sha256:ef10830ce231e0a20efcb0e2586cb879471247e916616e6fdd0d51df459e2595
fix: typing audit — 0 violations, 0 untyped defs across all…
Sonnet 4.6
minor
⚠ breaking
20 days ago
| 1 | """TDD — ui_agents must not read commit_meta.""" |
| 2 | from __future__ import annotations |
| 3 | |
| 4 | import typing |
| 5 | from collections.abc import Mapping |
| 6 | from datetime import datetime, timezone |
| 7 | |
| 8 | import pytest |
| 9 | from httpx import AsyncClient |
| 10 | from muse.core.types import blob_id |
| 11 | from sqlalchemy.ext.asyncio import AsyncSession |
| 12 | |
| 13 | from musehub.db import musehub_repo_models as db |
| 14 | from tests.factories import create_repo |
| 15 | |
| 16 | |
| 17 | def _utc() -> datetime: |
| 18 | return datetime.now(tz=timezone.utc) |
| 19 | |
| 20 | |
| 21 | async def _add_commit(session: AsyncSession, repo_id: str, seed: str, **kwargs: typing.Any) -> db.MusehubCommit: |
| 22 | row = db.MusehubCommit( |
| 23 | commit_id=blob_id(seed.encode()), |
| 24 | branch="dev", |
| 25 | parent_ids=[], |
| 26 | message=f"feat: {seed}", |
| 27 | author="gabriel", |
| 28 | timestamp=_utc(), |
| 29 | **kwargs, |
| 30 | ) |
| 31 | session.add(row) |
| 32 | session.add(db.MusehubCommitRef(repo_id=repo_id, commit_id=row.commit_id)) |
| 33 | session.add(db.MusehubBranch( |
| 34 | branch_id=blob_id(f"br-{seed}".encode()), |
| 35 | repo_id=repo_id, |
| 36 | name="dev", |
| 37 | head_commit_id=row.commit_id, |
| 38 | )) |
| 39 | await session.commit() |
| 40 | return row |
| 41 | |
| 42 | |
| 43 | # --------------------------------------------------------------------------- |
| 44 | # AG1 — agent profile route does not crash with AttributeError on commit_meta |
| 45 | # --------------------------------------------------------------------------- |
| 46 | |
| 47 | @pytest.mark.asyncio |
| 48 | async def test_ag1_agent_profile_no_commit_meta_error( |
| 49 | db_session: AsyncSession, |
| 50 | client: AsyncClient, |
| 51 | auth_headers: Mapping[str, str], |
| 52 | ) -> None: |
| 53 | """Agent profile page must not raise AttributeError on commit_meta reads.""" |
| 54 | repo = await create_repo(db_session, owner="gabriel", visibility="public") |
| 55 | await _add_commit( |
| 56 | db_session, repo.repo_id, "ag-c1", |
| 57 | agent_id="claude-code", model_id="claude-sonnet-4-6", |
| 58 | toolchain_id="muse-1", |
| 59 | ) |
| 60 | |
| 61 | resp = await client.get( |
| 62 | f"/gabriel/{repo.slug}/agents/claude-code", |
| 63 | headers=auth_headers, |
| 64 | follow_redirects=True, |
| 65 | ) |
| 66 | assert resp.status_code != 500 |
File History
1 commit
sha256:ef10830ce231e0a20efcb0e2586cb879471247e916616e6fdd0d51df459e2595
fix: typing audit — 0 violations, 0 untyped defs across all…
Sonnet 4.6
minor
⚠
20 days ago