feat: version list with verification + deployed badge (stage 3)

- pulp_client: list_versions / list_distributions / get_publication
- GET /repos/{uuid}/versions: 버전 목록 페이지(최신순)
- 현재 운영 배포 버전 판별: Distribution→publication→repository_version 역추적
- views.build_version_view: vN, 생성일시, 패키지 수, 증감(+/-), 검증 배지, 배포 여부
- views.verification_detail: gpgcheck/repo-gpgcheck/checksum 상세 (화면4)
- 대시보드 저장소명 → 버전 페이지 링크, [이 버전 배포] 버튼은 단계4용 placeholder
- 단계1 TODO(배포 버전 역추적) 해소

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-17 11:15:31 +09:00
parent 6c41b89c53
commit 72c75252d3
12 changed files with 419 additions and 5 deletions

104
tests/test_versions.py Normal file
View File

@@ -0,0 +1,104 @@
import httpx
from fastapi.testclient import TestClient
from app.main import app, get_pulp_client
client = TestClient(app)
REPO = {"name": "rocky9-baseos", "repo_config": {"gpgcheck": 1, "repo-gpgcheck": 1}}
VERSIONS = [
{
"pulp_href": "/pulp/api/v3/repositories/rpm/rpm/abc/versions/1/",
"pulp_created": "2026-05-01T00:00:00Z",
"content_summary": {"present": {"rpm.package": {"count": 100}}},
},
{
"pulp_href": "/pulp/api/v3/repositories/rpm/rpm/abc/versions/2/",
"pulp_created": "2026-06-01T00:00:00Z",
"content_summary": {"present": {"rpm.package": {"count": 150}}},
},
]
# v2 가 배포 중: distribution → publication → repository_version v2
DISTRIBUTIONS = [{"publication": "/pulp/api/v3/publications/rpm/rpm/p1/"}]
PUBLICATIONS = {
"/pulp/api/v3/publications/rpm/rpm/p1/": {
"repository_version": "/pulp/api/v3/repositories/rpm/rpm/abc/versions/2/"
}
}
class _FakePulp:
def __init__(
self,
repo=None,
versions=None,
distributions=None,
publications=None,
versions_raises=False,
):
self._repo = REPO if repo is None else repo
self._versions = VERSIONS if versions is None else versions
self._distributions = DISTRIBUTIONS if distributions is None else distributions
self._publications = PUBLICATIONS if publications is None else publications
self._versions_raises = versions_raises
def get_repo(self, uuid):
return self._repo
def list_versions(self, uuid):
if self._versions_raises:
raise httpx.ConnectError("down")
return self._versions
def list_distributions(self):
return self._distributions
def get_publication(self, href):
return self._publications.get(href, {})
def _use(fake):
app.dependency_overrides[get_pulp_client] = lambda: fake
def teardown_function():
app.dependency_overrides.clear()
def test_versions_page_lists_newest_first():
_use(_FakePulp())
resp = client.get("/repos/abc/versions")
assert resp.status_code == 200
body = resp.text
assert "rocky9-baseos" in body
assert "v1" in body and "v2" in body
# 최신순: v2 가 v1 보다 먼저 나온다
assert body.index("v2") < body.index("v1")
def test_versions_page_marks_deployed_version():
_use(_FakePulp())
body = client.get("/repos/abc/versions").text
assert "운영 배포 중" in body
# 배포 중이 아닌 v1 에는 배포 버튼(비활성)이 있다
assert "이 버전 배포" in body
def test_versions_page_no_deployed_when_no_distribution():
_use(_FakePulp(distributions=[]))
body = client.get("/repos/abc/versions").text
assert "운영 배포 중" not in body
def test_versions_page_shows_verification_detail():
_use(_FakePulp())
body = client.get("/repos/abc/versions").text
assert "검증됨" in body
assert "gpgcheck=1" in body
def test_versions_page_error_when_list_fails():
_use(_FakePulp(versions_raises=True))
resp = client.get("/repos/abc/versions")
assert resp.status_code == 200
assert "불러오지 못했습니다" in resp.text

View File

@@ -101,3 +101,37 @@ def test_task_progress_failed_surfaces_error():
p = views.task_progress({"state": "failed", "error": {"description": "boom"}})
assert p["failed"] is True
assert p["error"] == "boom"
def test_build_version_view_with_deltas_and_deploy_flag():
version = {
"pulp_href": "/pulp/api/v3/repositories/rpm/rpm/x/versions/3/",
"pulp_created": "2026-06-01T00:00:00Z",
"content_summary": {
"present": {"rpm.package": {"count": 4821}},
"added": {"rpm.package": {"count": 130}},
"removed": {"rpm.package": {"count": 9}},
},
}
gpg = {"level": "pass", "label": "검증됨"}
v = views.build_version_view(version, deployed_number=3, gpg=gpg)
assert v["number"] == 3
assert v["package_count"] == 4821
assert (v["added"], v["removed"]) == (130, 9)
assert v["is_deployed"] is True
assert v["gpg"]["level"] == "pass"
def test_build_version_view_not_deployed():
version = {"pulp_href": "/pulp/api/v3/repositories/rpm/rpm/x/versions/2/"}
v = views.build_version_view(version, deployed_number=3)
assert v["is_deployed"] is False
assert v["added"] == 0 and v["removed"] == 0
def test_verification_detail():
repo = {"repo_config": {"gpgcheck": 1, "repo-gpgcheck": 0}}
d = views.verification_detail(repo)
assert d["gpgcheck"] == 1
assert d["repo_gpgcheck"] == 0
assert d["status"]["level"] == "warn"