Systematic rename of all semantic anchors (#region, [DEF], @RELATION) across 1400+ files — backend Python, frontend Svelte/TS, specs, docs: - Flat anchors become Namespace.Module.Entity - @RELATION references updated to match new anchor paths - Zero business logic changes
533 lines
21 KiB
Python
533 lines
21 KiB
Python
# #region Test.GitService.Status [C:3] [TYPE Module] [SEMANTICS test,git,status,diff,history]
|
|
# @BRIEF Tests for GitServiceStatusMixin — parse porcelain, get_status, get_diff, get_commit_history.
|
|
# @RELATION BINDS_TO -> [Services.Status.GitServiceStatusMixin]
|
|
# @TEST_EDGE: empty_porcelain -> no output returns empty lists
|
|
# @TEST_EDGE: untracked_files -> ?? prefix parsed as untracked
|
|
# @TEST_EDGE: staged_and_modified -> XY prefix correctly split
|
|
# @TEST_EDGE: renamed_files -> -> arrow parsed as rename target
|
|
# @TEST_EDGE: git_status_failure -> exception caught, warning logged
|
|
# @TEST_EDGE: no_commits -> has_commits=false, branch name still returned
|
|
# @TEST_EDGE: divergent_branch -> ahead>0 AND behind>0 → DIVERGED
|
|
# @TEST_EDGE: ahead_remote -> ahead>0, behind=0 → AHEAD_REMOTE
|
|
# @TEST_EDGE: behind_remote -> ahead=0, behind>0 → BEHIND_REMOTE
|
|
# @TEST_EDGE: dirty_repo -> changes present → CHANGES
|
|
# @TEST_EDGE: clean_synced -> no changes, no ahead/behind → SYNCED
|
|
# @TEST_EDGE: diff_with_file -> file_path passed to git diff
|
|
# @TEST_EDGE: diff_staged -> --staged flag passed
|
|
# @TEST_EDGE: commit_history_empty -> no heads, no remotes returns []
|
|
# @TEST_EDGE: commit_history_exception -> exception logged, returns []
|
|
|
|
import sys
|
|
from pathlib import Path
|
|
sys.path.insert(0, str(Path(__file__).parent.parent.parent.parent / "src"))
|
|
|
|
import pytest
|
|
from unittest.mock import AsyncMock, MagicMock, patch
|
|
|
|
from src.services.git._status import GitServiceStatusMixin
|
|
|
|
|
|
# ── Helper: create a testable instance of the mixin ──
|
|
|
|
class TestableGitStatus(GitServiceStatusMixin):
|
|
"""Concrete test class providing the minimum _locked and get_repo stubs.
|
|
|
|
_locked is a no-op context manager. get_repo returns a pre-set mock.
|
|
"""
|
|
def __init__(self, mock_repo=None):
|
|
self._mock_repo = mock_repo or MagicMock()
|
|
self._lock_called = False
|
|
|
|
async def get_repo(self, dashboard_id):
|
|
return self._mock_repo
|
|
|
|
def _locked(self, dashboard_id):
|
|
import contextlib
|
|
@contextlib.contextmanager
|
|
def _lock():
|
|
self._lock_called = True
|
|
yield
|
|
return _lock()
|
|
|
|
|
|
# ── _parse_status_porcelain ──
|
|
|
|
class TestParseStatusPorcelain:
|
|
"""_parse_status_porcelain — git status --porcelain parser."""
|
|
|
|
# #region Test.GitService.TestPorcelainEmptyOutput [C:2] [TYPE Function]
|
|
def test_porcelain_empty_output(self):
|
|
"""Empty output → all lists empty."""
|
|
svc = TestableGitStatus()
|
|
repo = MagicMock()
|
|
repo.git.status.return_value = ""
|
|
staged, modified, untracked = svc._parse_status_porcelain(repo)
|
|
assert staged == []
|
|
assert modified == []
|
|
assert untracked == []
|
|
# #endregion Test.GitService.TestPorcelainEmptyOutput
|
|
|
|
# #region Test.GitService.TestPorcelainUntrackedFiles [C:2] [TYPE Function]
|
|
def test_porcelain_untracked_files(self):
|
|
"""?? prefixed lines appear in untracked list."""
|
|
svc = TestableGitStatus()
|
|
repo = MagicMock()
|
|
repo.git.status.return_value = "?? new_file.txt\n?? untracked_dir/\n"
|
|
staged, modified, untracked = svc._parse_status_porcelain(repo)
|
|
assert untracked == ["new_file.txt", "untracked_dir/"]
|
|
assert staged == []
|
|
assert modified == []
|
|
# #endregion Test.GitService.TestPorcelainUntrackedFiles
|
|
|
|
# #region Test.GitService.TestPorcelainStaged [C:2] [TYPE Function]
|
|
def test_porcelain_staged(self):
|
|
"""XY where X!=space → staged."""
|
|
svc = TestableGitStatus()
|
|
repo = MagicMock()
|
|
repo.git.status.return_value = "M staged.txt\nA added.py\n"
|
|
staged, modified, untracked = svc._parse_status_porcelain(repo)
|
|
assert staged == ["staged.txt", "added.py"]
|
|
assert modified == []
|
|
# #endregion Test.GitService.TestPorcelainStaged
|
|
|
|
# #region Test.GitService.TestPorcelainModified [C:2] [TYPE Function]
|
|
def test_porcelain_modified(self):
|
|
"""XY where Y!=space → modified."""
|
|
svc = TestableGitStatus()
|
|
repo = MagicMock()
|
|
repo.git.status.return_value = " M modified.rs\n"
|
|
staged, modified, untracked = svc._parse_status_porcelain(repo)
|
|
assert modified == ["modified.rs"]
|
|
assert staged == []
|
|
# #endregion Test.GitService.TestPorcelainModified
|
|
|
|
# #region Test.GitService.TestPorcelainStagedAndModified [C:2] [TYPE Function]
|
|
def test_porcelain_staged_and_modified(self):
|
|
"""MM → both staged and modified."""
|
|
svc = TestableGitStatus()
|
|
repo = MagicMock()
|
|
repo.git.status.return_value = "MM both.txt\n"
|
|
staged, modified, untracked = svc._parse_status_porcelain(repo)
|
|
assert "both.txt" in staged
|
|
assert "both.txt" in modified
|
|
# #endregion Test.GitService.TestPorcelainStagedAndModified
|
|
|
|
# #region Test.GitService.TestPorcelainRenamed [C:2] [TYPE Function]
|
|
def test_porcelain_renamed(self):
|
|
"""R old -> new → staged shows new path."""
|
|
svc = TestableGitStatus()
|
|
repo = MagicMock()
|
|
repo.git.status.return_value = "R old_name.py -> new_name.py\n"
|
|
staged, modified, untracked = svc._parse_status_porcelain(repo)
|
|
assert "new_name.py" in staged
|
|
assert "old_name.py" not in str(staged)
|
|
# #endregion Test.GitService.TestPorcelainRenamed
|
|
|
|
# #region Test.GitService.TestPorcelainExcludeIntentToAdd [C:2] [TYPE Function]
|
|
def test_porcelain_exclude_intent_to_add(self):
|
|
"""!! lines (intent-to-add/assume-unchanged) are skipped."""
|
|
svc = TestableGitStatus()
|
|
repo = MagicMock()
|
|
repo.git.status.return_value = "!! ignored_pattern\n"
|
|
_, _, untracked = svc._parse_status_porcelain(repo)
|
|
assert untracked == []
|
|
# #endregion Test.GitService.TestPorcelainExcludeIntentToAdd
|
|
|
|
# #region Test.GitService.TestPorcelainShortLine [C:2] [TYPE Function]
|
|
def test_porcelain_short_line(self):
|
|
"""Line with <3 chars is skipped (e.g., empty/broken output)."""
|
|
svc = TestableGitStatus()
|
|
repo = MagicMock()
|
|
repo.git.status.return_value = "A\nBB\n M file.txt\n"
|
|
staged, modified, untracked = svc._parse_status_porcelain(repo)
|
|
# "A\n" and "BB\n" are skipped (< 3 chars). Only " M file.txt" is parsed.
|
|
assert "file.txt" in modified
|
|
assert len(staged) == 0
|
|
# #endregion Test.GitService.TestPorcelainShortLine
|
|
|
|
# #region Test.GitService.TestPorcelainGitFailure [C:2] [TYPE Function]
|
|
def test_porcelain_git_failure(self):
|
|
"""Exception from git.status returns empty lists, no crash."""
|
|
svc = TestableGitStatus()
|
|
repo = MagicMock()
|
|
repo.git.status.side_effect = Exception("git not available")
|
|
staged, modified, untracked = svc._parse_status_porcelain(repo)
|
|
assert staged == []
|
|
assert modified == []
|
|
assert untracked == []
|
|
# #endregion Test.GitService.TestPorcelainGitFailure
|
|
|
|
|
|
# ── get_status ──
|
|
|
|
class TestGetStatus:
|
|
"""get_status — full repository status computation."""
|
|
|
|
# #region Test.GitService.TestGetStatusNoCommits [C:2] [TYPE Function]
|
|
@pytest.mark.asyncio
|
|
async def test_get_status_no_commits(self):
|
|
"""Repository with no commits: has_commits=false, branch returned."""
|
|
from unittest.mock import PropertyMock
|
|
repo = MagicMock()
|
|
head = MagicMock()
|
|
# Accessing repo.head.commit as a PROPERTY raises ValueError (like real GitPython)
|
|
type(head).commit = PropertyMock(side_effect=ValueError("no commits"))
|
|
repo.head = head
|
|
repo.active_branch.name = "main"
|
|
repo.active_branch.tracking_branch.return_value = None
|
|
|
|
svc = TestableGitStatus(repo)
|
|
result = await svc.get_status(42)
|
|
|
|
assert svc._lock_called is True
|
|
assert result["current_branch"] == "main"
|
|
assert result["has_upstream"] is False
|
|
assert result["last_commit_hash"] is None
|
|
assert result["last_commit_author"] is None
|
|
# #endregion Test.GitService.TestGetStatusNoCommits
|
|
|
|
# #region Test.GitService.TestGetStatusDiverged [C:2] [TYPE Function]
|
|
@pytest.mark.asyncio
|
|
async def test_get_status_diverged(self):
|
|
"""ahead>0 and behind>0 → DIVERGED."""
|
|
repo = MagicMock()
|
|
head = MagicMock()
|
|
head.commit = MagicMock()
|
|
repo.head = head
|
|
repo.active_branch.name = "feature"
|
|
tracking = MagicMock()
|
|
tracking.name = "origin/feature"
|
|
repo.active_branch.tracking_branch.return_value = tracking
|
|
# iter_commits for ahead: first call returns [1,2], second returns [3,4,5]
|
|
repo.iter_commits.side_effect = [
|
|
[MagicMock(), MagicMock()], # ahead: 2 commits
|
|
[MagicMock(), MagicMock(), MagicMock()], # behind: 3 commits
|
|
]
|
|
repo.git.status.return_value = ""
|
|
|
|
svc = TestableGitStatus(repo)
|
|
result = await svc.get_status(42)
|
|
|
|
assert result["sync_state"] == "DIVERGED"
|
|
assert result["ahead_count"] == 2
|
|
assert result["behind_count"] == 3
|
|
assert result["is_diverged"] is True
|
|
# #endregion Test.GitService.TestGetStatusDiverged
|
|
|
|
# #region Test.GitService.TestGetStatusAhead [C:2] [TYPE Function]
|
|
@pytest.mark.asyncio
|
|
async def test_get_status_ahead(self):
|
|
"""ahead>0, behind=0 → AHEAD_REMOTE."""
|
|
repo = MagicMock()
|
|
head = MagicMock()
|
|
head.commit = MagicMock()
|
|
repo.head = head
|
|
repo.active_branch.name = "feature"
|
|
tracking = MagicMock()
|
|
repo.active_branch.tracking_branch.return_value = tracking
|
|
repo.iter_commits.side_effect = [
|
|
[MagicMock()], # ahead: 1 commit
|
|
[], # behind: 0
|
|
]
|
|
repo.git.status.return_value = ""
|
|
|
|
svc = TestableGitStatus(repo)
|
|
result = await svc.get_status(42)
|
|
|
|
assert result["sync_state"] == "AHEAD_REMOTE"
|
|
assert result["ahead_count"] == 1
|
|
assert result["behind_count"] == 0
|
|
# #endregion Test.GitService.TestGetStatusAhead
|
|
|
|
# #region Test.GitService.TestGetStatusBehind [C:2] [TYPE Function]
|
|
@pytest.mark.asyncio
|
|
async def test_get_status_behind(self):
|
|
"""ahead=0, behind>0 → BEHIND_REMOTE."""
|
|
repo = MagicMock()
|
|
head = MagicMock()
|
|
head.commit = MagicMock(
|
|
hexsha="abcdef1234567890",
|
|
message="Update BI dashboard\n\nDetails",
|
|
committed_date=1710000000,
|
|
)
|
|
head.commit.author.name = "BI Analyst"
|
|
repo.head = head
|
|
repo.active_branch.name = "main"
|
|
tracking = MagicMock()
|
|
repo.active_branch.tracking_branch.return_value = tracking
|
|
repo.iter_commits.side_effect = [
|
|
[], # ahead: 0
|
|
[MagicMock()], # behind: 1
|
|
]
|
|
repo.git.status.return_value = ""
|
|
|
|
svc = TestableGitStatus(repo)
|
|
result = await svc.get_status(42)
|
|
|
|
assert result["sync_state"] == "BEHIND_REMOTE"
|
|
assert result["ahead_count"] == 0
|
|
assert result["behind_count"] == 1
|
|
# #endregion Test.GitService.TestGetStatusBehind
|
|
|
|
# #region Test.GitService.TestGetStatusDirty [C:2] [TYPE Function]
|
|
@pytest.mark.asyncio
|
|
async def test_get_status_dirty(self):
|
|
"""Unstaged changes present → CHANGES."""
|
|
repo = MagicMock()
|
|
head = MagicMock()
|
|
head.commit = MagicMock()
|
|
repo.head = head
|
|
repo.active_branch.name = "main"
|
|
repo.active_branch.tracking_branch.return_value = None
|
|
repo.git.status.return_value = " M modified.txt\n?? new.txt\n"
|
|
|
|
svc = TestableGitStatus(repo)
|
|
result = await svc.get_status(42)
|
|
|
|
assert result["sync_state"] == "CHANGES"
|
|
assert result["is_dirty"] is True
|
|
assert "modified.txt" in result["modified_files"]
|
|
assert "new.txt" in result["untracked_files"]
|
|
# #endregion Test.GitService.TestGetStatusDirty
|
|
|
|
# #region Test.GitService.TestGetStatusSynced [C:2] [TYPE Function]
|
|
@pytest.mark.asyncio
|
|
async def test_get_status_synced(self):
|
|
"""Clean, no divergence → SYNCED."""
|
|
repo = MagicMock()
|
|
head = MagicMock()
|
|
head.commit = MagicMock(
|
|
hexsha="abcdef1234567890",
|
|
message="Update BI dashboard\n\nDetails",
|
|
committed_date=1710000000,
|
|
)
|
|
head.commit.author.name = "BI Analyst"
|
|
repo.head = head
|
|
repo.active_branch.name = "main"
|
|
repo.active_branch.tracking_branch.return_value = None
|
|
repo.git.status.return_value = ""
|
|
|
|
svc = TestableGitStatus(repo)
|
|
result = await svc.get_status(42)
|
|
|
|
assert result["sync_state"] == "SYNCED"
|
|
assert result["is_dirty"] is False
|
|
assert result["last_commit_hash"] == "abcdef1234567890"
|
|
assert result["last_commit_message"] == "Update BI dashboard\n\nDetails"
|
|
assert result["last_commit_author"] == "BI Analyst"
|
|
assert result["last_commit_date"].startswith("2024-03-09T")
|
|
# #endregion Test.GitService.TestGetStatusSynced
|
|
|
|
# #region Test.GitService.TestGetStatusTrackingException [C:2] [TYPE Function]
|
|
@pytest.mark.asyncio
|
|
async def test_get_status_tracking_exception(self):
|
|
"""Exception in tracking_branch() → has_upstream=false."""
|
|
repo = MagicMock()
|
|
head = MagicMock()
|
|
head.commit = MagicMock()
|
|
repo.head = head
|
|
repo.active_branch.name = "main"
|
|
repo.active_branch.tracking_branch.side_effect = Exception("no remote")
|
|
repo.git.status.return_value = ""
|
|
|
|
svc = TestableGitStatus(repo)
|
|
result = await svc.get_status(42)
|
|
|
|
assert result["has_upstream"] is False
|
|
assert result["upstream_branch"] is None
|
|
# #endregion Test.GitService.TestGetStatusTrackingException
|
|
|
|
# #region Test.GitService.TestGetStatusIterCommitsException [C:2] [TYPE Function]
|
|
@pytest.mark.asyncio
|
|
async def test_get_status_iter_commits_exception(self):
|
|
"""Exception in iter_commits → ahead=0, behind=0."""
|
|
repo = MagicMock()
|
|
head = MagicMock()
|
|
head.commit = MagicMock()
|
|
repo.head = head
|
|
repo.active_branch.name = "main"
|
|
tracking = MagicMock()
|
|
repo.active_branch.tracking_branch.return_value = tracking
|
|
repo.iter_commits.side_effect = Exception("git error")
|
|
|
|
svc = TestableGitStatus(repo)
|
|
result = await svc.get_status(42)
|
|
|
|
assert result["ahead_count"] == 0
|
|
assert result["behind_count"] == 0
|
|
# #endregion Test.GitService.TestGetStatusIterCommitsException
|
|
|
|
|
|
# ── rollback_commit ──
|
|
|
|
class TestRollbackCommit:
|
|
"""rollback_commit — creates a revert commit without rewriting history."""
|
|
|
|
# #region Test.GitService.TestRollbackCommitRevertsTarget [C:2] [TYPE Function]
|
|
@pytest.mark.asyncio
|
|
async def test_rollback_commit_reverts_target(self):
|
|
repo = MagicMock()
|
|
repo.head.commit.hexsha = "rollback123"
|
|
svc = TestableGitStatus(repo)
|
|
|
|
result = await svc.rollback_commit(42, "abcdef1", "bad PROD deploy")
|
|
|
|
repo.commit.assert_called_once_with("abcdef1")
|
|
repo.git.revert.assert_called_once_with("--no-edit", "abcdef1")
|
|
assert result["status"] == "success"
|
|
assert result["reverted_commit"] == "abcdef1"
|
|
assert result["rollback_commit"] == "rollback123"
|
|
# #endregion Test.GitService.TestRollbackCommitRevertsTarget
|
|
|
|
|
|
# ── get_diff ──
|
|
|
|
class TestGetDiff:
|
|
"""get_diff — diff generation."""
|
|
|
|
# #region Test.GitService.TestGetDiffNoArgs [C:2] [TYPE Function]
|
|
@pytest.mark.asyncio
|
|
async def test_get_diff_no_args(self):
|
|
"""Default diff (no file, not staged)."""
|
|
repo = MagicMock()
|
|
repo.git.diff.return_value = "diff --git a/file.txt b/file.txt"
|
|
svc = TestableGitStatus(repo)
|
|
result = await svc.get_diff(42)
|
|
assert result == "diff --git a/file.txt b/file.txt"
|
|
repo.git.diff.assert_called_once_with()
|
|
# #endregion Test.GitService.TestGetDiffNoArgs
|
|
|
|
# #region Test.GitService.TestGetDiffStaged [C:2] [TYPE Function]
|
|
@pytest.mark.asyncio
|
|
async def test_get_diff_staged(self):
|
|
"""--staged flag included."""
|
|
repo = MagicMock()
|
|
repo.git.diff.return_value = "staged diff"
|
|
svc = TestableGitStatus(repo)
|
|
result = await svc.get_diff(42, staged=True)
|
|
assert result == "staged diff"
|
|
repo.git.diff.assert_called_once_with("--staged")
|
|
# #endregion Test.GitService.TestGetDiffStaged
|
|
|
|
# #region Test.GitService.TestGetDiffWithFile [C:2] [TYPE Function]
|
|
@pytest.mark.asyncio
|
|
async def test_get_diff_with_file(self):
|
|
"""File path passed with -- separator."""
|
|
repo = MagicMock()
|
|
repo.git.diff.return_value = "file diff"
|
|
svc = TestableGitStatus(repo)
|
|
result = await svc.get_diff(42, file_path="src/main.py")
|
|
assert result == "file diff"
|
|
repo.git.diff.assert_called_once_with("--", "src/main.py")
|
|
# #endregion Test.GitService.TestGetDiffWithFile
|
|
|
|
# #region Test.GitService.TestGetDiffStagedWithFile [C:2] [TYPE Function]
|
|
@pytest.mark.asyncio
|
|
async def test_get_diff_staged_with_file(self):
|
|
"""Both staged and file_path passed."""
|
|
repo = MagicMock()
|
|
repo.git.diff.return_value = "staged file diff"
|
|
svc = TestableGitStatus(repo)
|
|
result = await svc.get_diff(42, file_path="test.py", staged=True)
|
|
assert result == "staged file diff"
|
|
repo.git.diff.assert_called_once_with("--staged", "--", "test.py")
|
|
# #endregion Test.GitService.TestGetDiffStagedWithFile
|
|
|
|
|
|
# ── get_commit_history ──
|
|
|
|
class TestGetCommitHistory:
|
|
"""get_commit_history — commit log retrieval."""
|
|
|
|
# #region Test.GitService.TestCommitHistoryNoHeadsNoRemotes [C:2] [TYPE Function]
|
|
@pytest.mark.asyncio
|
|
async def test_commit_history_no_heads_no_remotes(self):
|
|
"""No heads and no remotes → returns []."""
|
|
repo = MagicMock()
|
|
repo.heads = []
|
|
repo.remotes = []
|
|
svc = TestableGitStatus(repo)
|
|
result = await svc.get_commit_history(42)
|
|
assert result == []
|
|
# #endregion Test.GitService.TestCommitHistoryNoHeadsNoRemotes
|
|
|
|
# #region Test.GitService.TestCommitHistoryReturnsCommits [C:2] [TYPE Function]
|
|
@pytest.mark.asyncio
|
|
async def test_commit_history_returns_commits(self):
|
|
"""Returns parsed commit dicts from iter_commits."""
|
|
import datetime
|
|
repo = MagicMock()
|
|
repo.heads = [MagicMock()]
|
|
repo.remotes = [MagicMock()]
|
|
|
|
commit1 = MagicMock()
|
|
commit1.hexsha = "abc123"
|
|
commit1.author.name = "Alice"
|
|
commit1.author.email = "alice@example.com"
|
|
commit1.committed_date = 1700000000
|
|
commit1.message = "First commit\n"
|
|
commit1.stats.files = {"file1.py": {}, "file2.py": {}}
|
|
|
|
repo.iter_commits.return_value = [commit1]
|
|
|
|
svc = TestableGitStatus(repo)
|
|
result = await svc.get_commit_history(42, limit=10)
|
|
|
|
assert len(result) == 1
|
|
assert result[0]["hash"] == "abc123"
|
|
assert result[0]["author"] == "Alice"
|
|
assert result[0]["email"] == "alice@example.com"
|
|
assert result[0]["message"] == "First commit"
|
|
assert "file1.py" in result[0]["files_changed"]
|
|
repo.iter_commits.assert_called_once_with(max_count=10)
|
|
# #endregion Test.GitService.TestCommitHistoryReturnsCommits
|
|
|
|
# #region Test.GitService.TestCommitHistoryException [C:2] [TYPE Function]
|
|
@pytest.mark.asyncio
|
|
async def test_commit_history_exception(self):
|
|
"""Exception during iteration returns []."""
|
|
repo = MagicMock()
|
|
repo.heads = [MagicMock()]
|
|
repo.iter_commits.side_effect = Exception("git error")
|
|
|
|
svc = TestableGitStatus(repo)
|
|
result = await svc.get_commit_history(42)
|
|
|
|
assert result == []
|
|
# #endregion Test.GitService.TestCommitHistoryException
|
|
|
|
# #region Test.GitService.TestCommitHistoryLimitDefault [C:2] [TYPE Function]
|
|
@pytest.mark.asyncio
|
|
async def test_commit_history_limit_default(self):
|
|
"""Default limit is 50."""
|
|
repo = MagicMock()
|
|
repo.heads = [MagicMock()]
|
|
repo.remotes = [MagicMock()]
|
|
repo.iter_commits.return_value = []
|
|
|
|
svc = TestableGitStatus(repo)
|
|
result = await svc.get_commit_history(42)
|
|
|
|
repo.iter_commits.assert_called_once_with(max_count=50)
|
|
assert result == []
|
|
# #endregion Test.GitService.TestCommitHistoryLimitDefault
|
|
|
|
# #region Test.GitService.TestGetBranchCommitsMissingProdBranch [C:2] [TYPE Function]
|
|
@pytest.mark.asyncio
|
|
async def test_get_branch_commits_missing_prod_branch(self):
|
|
"""Missing 'prod' branch (common on legacy dashboard 1 repos) → returns [] without git fatal error log.
|
|
Closes the exact prod log symptom: 'fatal: bad revision 'prod'' for branch prod on dashboard 1.
|
|
"""
|
|
repo = MagicMock()
|
|
repo.heads = [MagicMock(name="dev")] # no 'prod'
|
|
repo.remotes = []
|
|
svc = TestableGitStatus(repo)
|
|
|
|
result = await svc.get_branch_commits(1, "prod")
|
|
|
|
assert result == []
|
|
# Should not have called iter_commits (early return)
|
|
repo.iter_commits.assert_not_called()
|
|
# #endregion Test.GitService.TestGetBranchCommitsMissingProdBranch
|
|
# #endregion Test.GitService.Status
|