feat(2): bluesky-pds P4 data-integrity overlay — deterministic atproto account marker (recipe-aware; catches running-app-holds-sqlite restore gap) via _p4.py + ops/test_upgrade/backup/restore

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-30 02:46:50 +01:00
co-authored by Claude Opus 4.8
parent 8e160af997
commit 74da6dc46b
5 changed files with 139 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
"""bluesky-pds — RESTORE overlay (Phase 1e HC3): data-integrity, assertion-only + additive.
ops.pre_restore deleted the marker account (diverge); the orchestrator restored once. This overlay
asserts the account is back — i.e. the PDS data volume (atproto sqlite) genuinely round-tripped
through backup→restore (not just service-up)."""
import os
import sys
sys.path.insert(0, os.path.dirname(__file__))
import _p4 # noqa: E402
def test_restore_returns_state(live_app):
assert _p4.account_exists(live_app), (
"restore did not bring back the seeded marker account (PDS data did not survive restore)"
)