| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419 |
- """Integration tests for the Git backup restore API endpoints (#2656)."""
- from unittest.mock import AsyncMock, patch
- import pytest
- from httpx import AsyncClient
- from sqlalchemy import select
- from backend.tests.integration.test_ownership_permissions import TestOwnershipPermissionsSetup
- @pytest.fixture(autouse=True)
- def _mock_private_repo_check():
- """POST /config refuses to save unless the repo is confirmed private."""
- with patch(
- "backend.app.services.github_backup.github_backup_service.test_connection",
- new=AsyncMock(
- return_value={
- "success": True,
- "message": "Connection successful",
- "repo_name": "test/repo",
- "permissions": {"push": True},
- "is_private": True,
- }
- ),
- ) as m:
- yield m
- async def _create_config(async_client: AsyncClient) -> dict:
- response = await async_client.post(
- "/api/v1/github-backup/config",
- json={
- "repository_url": "https://github.com/test/repo",
- "access_token": "ghp_testtoken123",
- "branch": "main",
- "backup_kprofiles": True,
- "backup_spools": True,
- "backup_archives": True,
- "backup_settings": True,
- "enabled": True,
- },
- )
- assert response.status_code == 200
- return response.json()
- class TestCommitsEndpoint:
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_404_when_not_configured(self, async_client: AsyncClient):
- response = await async_client.get("/api/v1/github-backup/commits")
- assert response.status_code == 404
- assert "Configure backup first" in response.json()["detail"]
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_returns_commits_from_the_provider(self, async_client: AsyncClient):
- await _create_config(async_client)
- commits = [
- {"sha": "aaa1111", "message": "Bambuddy backup", "author": "Bambuddy", "date": "2026-07-02T10:00:00Z"}
- ]
- with patch(
- "backend.app.services.git_providers.github.GitHubBackend.list_commits",
- new=AsyncMock(return_value={"success": True, "message": "OK", "commits": commits}),
- ):
- response = await async_client.get("/api/v1/github-backup/commits")
- assert response.status_code == 200
- body = response.json()
- assert body["success"] is True
- assert body["branch"] == "main"
- assert body["commits"][0]["sha"] == "aaa1111"
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_provider_failure_is_reported_not_raised(self, async_client: AsyncClient):
- await _create_config(async_client)
- with patch(
- "backend.app.services.git_providers.github.GitHubBackend.list_commits",
- new=AsyncMock(return_value={"success": False, "message": "Invalid access token", "commits": []}),
- ):
- response = await async_client.get("/api/v1/github-backup/commits")
- assert response.status_code == 200
- assert response.json()["success"] is False
- assert response.json()["commits"] == []
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_limit_is_bounded(self, async_client: AsyncClient):
- await _create_config(async_client)
- assert (await async_client.get("/api/v1/github-backup/commits?limit=0")).status_code == 422
- assert (await async_client.get("/api/v1/github-backup/commits?limit=101")).status_code == 422
- class TestPreviewEndpoint:
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_404_when_not_configured(self, async_client: AsyncClient):
- response = await async_client.get("/api/v1/github-backup/restore/preview")
- assert response.status_code == 404
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_reports_available_and_missing_categories(self, async_client: AsyncClient):
- await _create_config(async_client)
- preview = {
- "success": True,
- "message": "OK",
- "ref": "aaa1111",
- "commit": None,
- "metadata_version": "1.0",
- "categories": [
- {"category": "kprofiles", "available": False, "item_count": 0, "detail": "Not present"},
- {"category": "settings", "available": True, "item_count": 12, "detail": None},
- {"category": "spools", "available": True, "item_count": 4, "detail": "plus 9 usage records"},
- {"category": "archives", "available": True, "item_count": 30, "detail": "Metadata only"},
- ],
- }
- with patch(
- "backend.app.services.github_restore.github_restore_service.preview",
- new=AsyncMock(return_value=preview),
- ):
- response = await async_client.get("/api/v1/github-backup/restore/preview?ref=aaa1111")
- assert response.status_code == 200
- body = response.json()
- assert body["metadata_version"] == "1.0"
- by_name = {c["category"]: c for c in body["categories"]}
- assert by_name["kprofiles"]["available"] is False
- assert by_name["spools"]["item_count"] == 4
- @pytest.mark.asyncio
- @pytest.mark.integration
- @pytest.mark.parametrize("ref", ["main", "abc", "../../etc/passwd", "zzzzzzz"])
- async def test_rejects_refs_that_are_not_object_names(self, async_client: AsyncClient, ref):
- await _create_config(async_client)
- response = await async_client.get(f"/api/v1/github-backup/restore/preview?ref={ref}")
- assert response.status_code == 422
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_defaults_to_head(self, async_client: AsyncClient):
- await _create_config(async_client)
- mock = AsyncMock(return_value={"success": True, "message": "OK", "ref": "aaa1111", "categories": []})
- with patch("backend.app.services.github_restore.github_restore_service.preview", new=mock):
- response = await async_client.get("/api/v1/github-backup/restore/preview")
- assert response.status_code == 200
- assert mock.await_args.kwargs["ref"] == "HEAD"
- class TestRestoreEndpoint:
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_404_when_not_configured(self, async_client: AsyncClient):
- response = await async_client.post("/api/v1/github-backup/restore", json={"categories": ["spools"]})
- assert response.status_code == 404
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_applies_selected_categories(self, async_client: AsyncClient):
- await _create_config(async_client)
- outcome = {
- "success": True,
- "message": "Restored 5 item(s) from aaa1111",
- "log_id": 3,
- "ref": "aaa1111",
- "results": {
- "spools": {"restored": 4, "skipped": 1, "failed": 0, "notes": []},
- "settings": {"restored": 1, "skipped": 2, "failed": 0, "notes": ["1 credential-like key(s) skipped"]},
- },
- }
- with patch(
- "backend.app.services.github_restore.github_restore_service.run_restore",
- new=AsyncMock(return_value=outcome),
- ) as mock:
- response = await async_client.post(
- "/api/v1/github-backup/restore",
- json={"ref": "aaa1111", "categories": ["spools", "settings"], "overwrite_existing": True},
- )
- assert response.status_code == 200
- body = response.json()
- assert body["results"]["spools"]["restored"] == 4
- assert body["results"]["settings"]["notes"] == ["1 credential-like key(s) skipped"]
- assert mock.await_args.kwargs["overwrite_existing"] is True
- assert mock.await_args.kwargs["ref"] == "aaa1111"
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_rejects_empty_category_list(self, async_client: AsyncClient):
- await _create_config(async_client)
- response = await async_client.post("/api/v1/github-backup/restore", json={"categories": []})
- assert response.status_code == 422
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_rejects_unknown_category(self, async_client: AsyncClient):
- await _create_config(async_client)
- response = await async_client.post("/api/v1/github-backup/restore", json={"categories": ["cloud_profiles"]})
- assert response.status_code == 422
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_rejects_malformed_ref(self, async_client: AsyncClient):
- await _create_config(async_client)
- response = await async_client.post(
- "/api/v1/github-backup/restore", json={"ref": "main", "categories": ["spools"]}
- )
- assert response.status_code == 422
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_defaults_overwrite_to_false(self, async_client: AsyncClient):
- """The safe default: a restore only inserts what's missing."""
- await _create_config(async_client)
- mock = AsyncMock(return_value={"success": True, "message": "ok", "results": {}})
- with patch("backend.app.services.github_restore.github_restore_service.run_restore", new=mock):
- response = await async_client.post("/api/v1/github-backup/restore", json={"categories": ["spools"]})
- assert response.status_code == 200
- assert mock.await_args.kwargs["overwrite_existing"] is False
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_service_failure_is_reported_in_body(self, async_client: AsyncClient):
- await _create_config(async_client)
- with patch(
- "backend.app.services.github_restore.github_restore_service.run_restore",
- new=AsyncMock(
- return_value={
- "success": False,
- "message": "A backup is currently running. Wait for it to finish before restoring.",
- "results": {},
- }
- ),
- ):
- response = await async_client.post("/api/v1/github-backup/restore", json={"categories": ["spools"]})
- assert response.status_code == 200
- assert response.json()["success"] is False
- assert "backup is currently running" in response.json()["message"]
- class TestStatusExposesRestoreState:
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_restore_running_is_false_when_idle(self, async_client: AsyncClient):
- await _create_config(async_client)
- response = await async_client.get("/api/v1/github-backup/status")
- assert response.status_code == 200
- assert response.json()["restore_running"] is False
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_restore_running_is_reported(self, async_client: AsyncClient):
- """The UI disables both action buttons off this flag."""
- await _create_config(async_client)
- from backend.app.services.github_restore import github_restore_service
- github_restore_service._running_restore = True
- github_restore_service._progress = "Restoring spool inventory..."
- try:
- response = await async_client.get("/api/v1/github-backup/status")
- finally:
- github_restore_service._running_restore = False
- github_restore_service._progress = None
- assert response.json()["restore_running"] is True
- assert response.json()["progress"] == "Restoring spool inventory..."
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_unconfigured_status_still_has_the_field(self, async_client: AsyncClient):
- response = await async_client.get("/api/v1/github-backup/status")
- assert response.status_code == 200
- assert response.json()["restore_running"] is False
- class TestRestoredArchivesAreVisibleToTheirOwner(TestOwnershipPermissionsSetup):
- """The archive-ownership blocker, proved through the route that enforces it.
- ``_ensure_archive_visible`` fails closed on a NULL ``created_by_id`` — 404 for
- any caller without ``archives:read_all`` — so before the collector and the
- restore carried the column across, a multi-user instance got archives the
- tally called restored and their owner could not open.
- """
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_the_owning_non_admin_can_open_a_restored_archive(
- self, async_client: AsyncClient, auth_setup, db_session
- ):
- from backend.app.models.archive import PrintArchive
- from backend.app.services.github_restore import _CategoryTally, github_restore_service
- owner_id = auth_setup["operator_user"]["id"]
- payload = {
- "archives": [
- {
- "id": 77,
- "filename": "benchy.3mf",
- "file_size": 2048,
- "content_hash": "abc123",
- "print_name": "Benchy",
- "started_at": "2026-03-01 10:00:00",
- "created_at": "2026-03-01 10:00:00",
- "created_by_id": owner_id,
- }
- ]
- }
- await github_restore_service._restore_archives(db_session, payload, False, _CategoryTally(), {})
- await db_session.commit()
- restored = (await db_session.execute(select(PrintArchive))).scalar_one()
- assert restored.id != 77, "the backup's primary key must not be reused"
- response = await async_client.get(
- f"/api/v1/archives/{restored.id}",
- headers={"Authorization": f"Bearer {auth_setup['operator_token']}"},
- )
- assert response.status_code == 200, "the owner cannot see their own restored archive"
- assert response.json()["print_name"] == "Benchy"
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_a_different_operator_still_cannot(self, async_client: AsyncClient, auth_setup, db_session):
- """Control: carrying the owner across must not widen who can read it."""
- from backend.app.models.archive import PrintArchive
- from backend.app.services.github_restore import _CategoryTally, github_restore_service
- payload = {
- "archives": [
- {
- "id": 77,
- "filename": "benchy.3mf",
- "file_size": 2048,
- "content_hash": "abc123",
- "started_at": "2026-03-01 10:00:00",
- "created_by_id": auth_setup["operator_user"]["id"],
- }
- ]
- }
- await github_restore_service._restore_archives(db_session, payload, False, _CategoryTally(), {})
- await db_session.commit()
- restored = (await db_session.execute(select(PrintArchive))).scalar_one()
- response = await async_client.get(
- f"/api/v1/archives/{restored.id}",
- headers={"Authorization": f"Bearer {auth_setup['operator2_token']}"},
- )
- assert response.status_code == 404
- class TestRestoreDoesNotOpenTheMetricsEndpoint:
- """The companion-credential rule, proved against the endpoint it protects.
- ``/api/v1/metrics`` is on ``PUBLIC_API_ROUTES`` and its only gate is
- ``if token:``, so writing ``prometheus_enabled`` onto an instance with no
- ``prometheus_token`` row hands the entire metrics body to anyone who can
- reach the port. The restore refuses that token as credential-shaped, so
- before this change the pair came apart and the endpoint opened — with
- overwrite *off*, since the local row is missing rather than present.
- Driven through the real service and the real endpoint against one database:
- the unit tests can show the toggle is not written, only this can show what
- that means.
- """
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_restoring_prometheus_enabled_leaves_the_endpoint_shut(self, async_client: AsyncClient, db_session):
- from backend.app.services.github_restore import _CategoryTally, github_restore_service
- # An instance that never enabled Prometheus: no toggle row, no token row.
- assert (await async_client.get("/api/v1/metrics")).status_code == 404
- tally = _CategoryTally()
- await github_restore_service._restore_settings(
- db_session,
- {"settings": {"prometheus_enabled": "true", "prometheus_token": "s3cret", "currency": "EUR"}},
- overwrite=False,
- tally=tally,
- )
- await db_session.commit()
- response = await async_client.get("/api/v1/metrics")
- assert response.status_code == 404, "a settings restore opened the metrics endpoint"
- assert "bambuddy_build_info" not in response.text
- assert any("switched off" in note for note in tally.notes)
- @pytest.mark.asyncio
- @pytest.mark.integration
- async def test_an_instance_with_its_own_token_still_gets_the_toggle_back(
- self, async_client: AsyncClient, db_session
- ):
- """Control. The rule must not break a legitimate Prometheus restore."""
- from backend.app.services.github_restore import _CategoryTally, github_restore_service
- await async_client.put(
- "/api/v1/settings/", json={"prometheus_enabled": False, "prometheus_token": "local-token"}
- )
- await github_restore_service._restore_settings(
- db_session,
- {"settings": {"prometheus_enabled": "true", "prometheus_token": "s3cret"}},
- overwrite=True,
- tally=_CategoryTally(),
- )
- await db_session.commit()
- assert (await async_client.get("/api/v1/metrics")).status_code == 401
- authorised = await async_client.get("/api/v1/metrics", headers={"Authorization": "Bearer local-token"})
- assert authorised.status_code == 200
- assert "bambuddy_build_info" in authorised.text
|