test_release_analysis_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 — release_analysis must not access commit_meta (dropped in migration 0020).""" |
| 2 | from __future__ import annotations |
| 3 | |
| 4 | import pytest |
| 5 | import msgpack |
| 6 | from datetime import datetime, timezone |
| 7 | from sqlalchemy.ext.asyncio import AsyncSession |
| 8 | |
| 9 | from musehub.db.musehub_repo_models import MusehubBranch, MusehubCommit, MusehubCommitRef, MusehubSnapshot, MusehubSnapshotRef |
| 10 | from musehub.types.json_types import JSONObject |
| 11 | from tests.factories import create_repo |
| 12 | from muse.core.types import blob_id |
| 13 | |
| 14 | |
| 15 | def _utc() -> datetime: |
| 16 | return datetime.now(tz=timezone.utc) |
| 17 | |
| 18 | |
| 19 | async def _add_snapshot(session: AsyncSession, repo_id: str, seed: str, manifest: JSONObject) -> str: |
| 20 | snap_id = blob_id(f"snap-{seed}".encode()) |
| 21 | session.add(MusehubSnapshot( |
| 22 | snapshot_id=snap_id, |
| 23 | directories=[], |
| 24 | manifest_blob=msgpack.packb(manifest, use_bin_type=True), |
| 25 | entry_count=len(manifest), |
| 26 | created_at=_utc(), |
| 27 | )) |
| 28 | session.add(MusehubSnapshotRef(repo_id=repo_id, snapshot_id=snap_id)) |
| 29 | await session.commit() |
| 30 | return snap_id |
| 31 | |
| 32 | |
| 33 | async def _add_commit(session: AsyncSession, repo_id: str, seed: str, snap_id: str | None = None, **kwargs: typing.Any) -> MusehubCommit: |
| 34 | row = MusehubCommit( |
| 35 | commit_id=blob_id(seed.encode()), |
| 36 | branch="dev", |
| 37 | parent_ids=[], |
| 38 | message=f"feat: {seed}", |
| 39 | author="gabriel", |
| 40 | timestamp=_utc(), |
| 41 | snapshot_id=snap_id, |
| 42 | **kwargs, |
| 43 | ) |
| 44 | session.add(row) |
| 45 | session.add(MusehubCommitRef(repo_id=repo_id, commit_id=row.commit_id)) |
| 46 | session.add(MusehubBranch( |
| 47 | branch_id=blob_id(f"br-{seed}".encode()), |
| 48 | repo_id=repo_id, |
| 49 | name="dev", |
| 50 | head_commit_id=row.commit_id, |
| 51 | )) |
| 52 | await session.commit() |
| 53 | return row |
| 54 | |
| 55 | |
| 56 | # --------------------------------------------------------------------------- |
| 57 | # RL1 — _load_commit_chain does not crash with AttributeError on commit_meta |
| 58 | # --------------------------------------------------------------------------- |
| 59 | |
| 60 | @pytest.mark.asyncio |
| 61 | async def test_rl1_load_commit_chain_no_commit_meta( |
| 62 | db_session: AsyncSession, |
| 63 | ) -> None: |
| 64 | """_load_commit_chain must not raise AttributeError on commit_meta.""" |
| 65 | from musehub.services.release_analysis import _walk_commits |
| 66 | |
| 67 | repo = await create_repo(db_session, owner="gabriel", visibility="public") |
| 68 | snap_id = await _add_snapshot(db_session, repo.repo_id, "rl1", {"src/app.py": blob_id(b"content")}) |
| 69 | commit = await _add_commit( |
| 70 | db_session, repo.repo_id, "rl1-c1", snap_id, |
| 71 | agent_id="claude-code", model_id="claude-sonnet-4-6", |
| 72 | sem_ver_bump="minor", |
| 73 | ) |
| 74 | |
| 75 | result = await _walk_commits(db_session, repo.repo_id, commit.commit_id, max_commits=10) |
| 76 | assert isinstance(result, list) |
| 77 | assert len(result) == 1 |
| 78 | assert result[0]["agent_id"] == "claude-code" |
| 79 | assert result[0]["model_id"] == "claude-sonnet-4-6" |
File History
1 commit
sha256:ef10830ce231e0a20efcb0e2586cb879471247e916616e6fdd0d51df459e2595
fix: typing audit — 0 violations, 0 untyped defs across all…
Sonnet 4.6
minor
⚠
20 days ago