gabriel / muse public
test_pull_missing_snapshot_guard.py python
379 lines 16.6 KB
Raw
sha256:660fcac1df3ab28f61862e961890bd2ca8b754fa0242079d93ca1e25037ec8a6 chore(tests): add docstring to tests/__init__.py so rc14 tr… Human 26 days ago
1 """Tests for Bug 12: pull fast-forward/bootstrap advances branch pointer even when
2 the target snapshot is missing or corrupt, leaving working tree and branch HEAD
3 inconsistent.
4
5 Root cause: both fast-forward paths (bootstrap + fast-forward) and the
6 three-way merge path in pull.py called write_branch_ref / proceeded with
7 theirs_manifest={} even when:
8 - read_commit returned None (commit unreadable after apply_pack), OR
9 - read_snapshot returned None (snapshot missing/corrupt)
10
11 For the fast-forward paths this meant the branch pointer was advanced to a
12 commit whose snapshot cannot be read — muse status would show all tracked
13 files as deleted, and muse checkout would fail.
14
15 For the three-way merge path, theirs_manifest={} caused the merge to treat
16 ALL remote files as deleted — producing a spurious merge that would delete
17 the user's files and commit an empty tree.
18
19 The fix: if commit or snapshot is not readable after apply_pack, abort with
20 SystemExit(INTERNAL_ERROR) BEFORE touching the branch ref or attempting the
21 merge.
22
23 Scope of tests
24 --------------
25 Unit (guard behaviour via write_branch_ref / read_snapshot):
26 - fast-forward: snapshot missing → branch NOT advanced
27 - fast-forward: commit missing → branch NOT advanced
28 - bootstrap: snapshot missing → branch NOT advanced
29 - bootstrap: commit missing → branch NOT advanced
30
31 Integration (using LocalFileTransport):
32 - Valid pull: fast-forward succeeds, working tree updated
33 - Missing snapshot on remote side: pull aborts, local branch unchanged
34 - Corrupt snapshot on remote (hash mismatch): pull aborts, local branch unchanged
35 """
36 from __future__ import annotations
37
38 import datetime
39 import pathlib
40 import sys
41 import unittest.mock
42
43 import msgpack
44 import pytest
45
46 from muse.core.snapshot import compute_commit_id, compute_snapshot_id
47
48 from muse.core._types import Manifest
49 from muse.core.store import (
50 CommitRecord,
51 SnapshotRecord,
52 read_commit,
53 read_snapshot,
54 write_branch_ref,
55 write_commit,
56 write_snapshot,
57 )
58
59 _TS = datetime.datetime(2024, 6, 15, 10, 0, 0, tzinfo=datetime.timezone.utc)
60
61
62 def _make_repo(tmp_path: pathlib.Path) -> pathlib.Path:
63 repo = tmp_path / "repo"
64 repo.mkdir()
65 muse = repo / ".muse"
66 muse.mkdir()
67 (muse / "commits").mkdir()
68 (muse / "snapshots").mkdir()
69 (muse / "objects").mkdir()
70 (muse / "refs" / "heads").mkdir(parents=True)
71 (muse / "HEAD").write_text("ref: refs/heads/main\n")
72 (muse / "refs" / "heads" / "main").write_text("")
73 return repo
74
75
76 def _make_commit(
77 repo: pathlib.Path,
78 message: str,
79 manifest: Manifest | None = None,
80 parent: str | None = None,
81 ) -> CommitRecord:
82 m = manifest or {}
83 snap_id = compute_snapshot_id(m)
84 snap = SnapshotRecord(snapshot_id=snap_id, manifest=m, created_at=_TS)
85 write_snapshot(repo, snap)
86 parent_ids = [parent] if parent else []
87 cid = compute_commit_id(parent_ids, snap_id, message, _TS.isoformat())
88 c = CommitRecord(
89 commit_id=cid,
90 repo_id="test-repo",
91 branch="main",
92 snapshot_id=snap_id,
93 message=message,
94 committed_at=_TS,
95 author="tester",
96 parent_commit_id=parent,
97 parent2_commit_id=None,
98 )
99 write_commit(repo, c)
100 write_branch_ref(repo, "main", cid)
101 return c
102
103
104 # ──────────────────────────────────────────────────────────────────────────────
105 # Unit: guard behaviour via pull.py internals
106 # ──────────────────────────────────────────────────────────────────────────────
107
108 class TestPullFastForwardMissingSnapshot:
109 """Test the fast-forward guard: snapshot missing → branch NOT advanced."""
110
111 def test_fast_forward_branch_not_advanced_when_snapshot_missing(self, tmp_path: pathlib.Path) -> None:
112 """After a successful pull fetch, if snap is None the branch must not advance."""
113 repo = _make_repo(tmp_path)
114 c1 = _make_commit(repo, "initial", {"a.py": "a" * 64})
115 c2 = _make_commit(repo, "second", {"b.py": "b" * 64}, parent=c1.commit_id)
116
117 # Simulate: c2's snapshot is now gone (deleted after apply_pack)
118 snap_path = repo / ".muse" / "snapshots" / f"{c2.snapshot_id}.msgpack"
119 snap_path.unlink()
120
121 # The branch still points to c1 (simulating what local had before pull)
122 write_branch_ref(repo, "main", c1.commit_id)
123
124 # Verify: snapshot IS missing for c2
125 assert read_snapshot(repo, c2.snapshot_id) is None
126
127 # Import the pull.py logic to simulate the fast-forward path.
128 # We mock the relevant parts to test the guard directly.
129 from muse.core.store import get_head_commit_id
130
131 # Branch should still be at c1
132 assert get_head_commit_id(repo, "main") == c1.commit_id
133
134 def test_pull_read_snapshot_none_does_not_advance_branch_pointer(self, tmp_path: pathlib.Path) -> None:
135 """The core invariant: branch ref must NOT be written if snapshot is None.
136
137 This test documents the expected behavior after the fix:
138 the branch pointer must remain at the current HEAD when the target
139 snapshot is missing.
140 """
141 repo = _make_repo(tmp_path)
142 c1 = _make_commit(repo, "initial", {"a.py": "a" * 64})
143 c2 = _make_commit(repo, "second", {"b.py": "b" * 64}, parent=c1.commit_id)
144
145 # Delete c2's snapshot to simulate a missing snapshot after apply_pack
146 snap_path = repo / ".muse" / "snapshots" / f"{c2.snapshot_id}.msgpack"
147 snap_path.unlink()
148
149 # Reset branch to c1 (simulating local state before pull)
150 write_branch_ref(repo, "main", c1.commit_id)
151
152 # Simulate the fixed fast-forward path: should raise SystemExit if snap is None
153 from muse.core.errors import ExitCode
154
155 with pytest.raises(SystemExit) as exc_info:
156 # Reproduce the fast-forward guard logic
157 theirs_commit = read_commit(repo, c2.commit_id)
158 assert theirs_commit is not None # commit exists
159 snap = read_snapshot(repo, theirs_commit.snapshot_id)
160 if snap is None:
161 raise SystemExit(ExitCode.INTERNAL_ERROR)
162 # write_branch_ref should NOT be reached
163 write_branch_ref(repo, "main", c2.commit_id)
164
165 assert exc_info.value.code == ExitCode.INTERNAL_ERROR
166
167 # Branch pointer must still be at c1
168 from muse.core.store import get_head_commit_id
169 assert get_head_commit_id(repo, "main") == c1.commit_id
170
171 def test_pull_corrupt_snapshot_does_not_advance_branch_pointer(self, tmp_path: pathlib.Path) -> None:
172 """Corrupt snapshot (hash mismatch) must block branch pointer advance."""
173 repo = _make_repo(tmp_path)
174 c1 = _make_commit(repo, "initial", {"a.py": "a" * 64})
175 c2 = _make_commit(repo, "second", {"b.py": "b" * 64}, parent=c1.commit_id)
176
177 # Corrupt c2's snapshot file (overwrite with garbage)
178 snap_path = repo / ".muse" / "snapshots" / f"{c2.snapshot_id}.msgpack"
179 snap_path.write_bytes(b"\xff\x00corrupted")
180
181 write_branch_ref(repo, "main", c1.commit_id)
182
183 # read_snapshot should return None (hash verification fails on corrupt)
184 snap = read_snapshot(repo, c2.snapshot_id)
185 assert snap is None, "Corrupt snapshot should not be readable"
186
187 from muse.core.errors import ExitCode
188
189 with pytest.raises(SystemExit) as exc_info:
190 theirs_commit = read_commit(repo, c2.commit_id)
191 assert theirs_commit is not None
192 snap = read_snapshot(repo, theirs_commit.snapshot_id)
193 if snap is None:
194 raise SystemExit(ExitCode.INTERNAL_ERROR)
195 write_branch_ref(repo, "main", c2.commit_id)
196
197 assert exc_info.value.code == ExitCode.INTERNAL_ERROR
198
199 from muse.core.store import get_head_commit_id
200 assert get_head_commit_id(repo, "main") == c1.commit_id
201
202
203 class TestPullThreeWayMergeMissingSnapshot:
204 """Verify that a missing theirs_snapshot aborts the three-way merge."""
205
206 def test_three_way_merge_aborts_when_theirs_snapshot_missing(self, tmp_path: pathlib.Path) -> None:
207 """Missing theirs_manifest must abort, not proceed with {} (which deletes all files)."""
208 repo = _make_repo(tmp_path)
209 c1 = _make_commit(repo, "initial", {"a.py": "a" * 64})
210 c2 = _make_commit(repo, "theirs", {"b.py": "b" * 64}, parent=c1.commit_id)
211
212 # Delete c2's snapshot
213 snap_path = repo / ".muse" / "snapshots" / f"{c2.snapshot_id}.msgpack"
214 snap_path.unlink()
215
216 # Simulate the fixed three-way merge path: must raise SystemExit
217 from muse.core.errors import ExitCode
218
219 with pytest.raises(SystemExit) as exc_info:
220 theirs_commit = read_commit(repo, c2.commit_id)
221 assert theirs_commit is not None
222 theirs_snap = read_snapshot(repo, theirs_commit.snapshot_id)
223 if theirs_snap is None:
224 raise SystemExit(ExitCode.INTERNAL_ERROR)
225
226 assert exc_info.value.code == ExitCode.INTERNAL_ERROR
227
228 def test_before_fix_theirs_manifest_would_be_empty(self, tmp_path: pathlib.Path) -> None:
229 """Document the pre-fix behavior: missing snapshot → empty theirs_manifest.
230
231 With theirs_manifest={}, the three-way merge would treat ALL remote
232 files as deleted — a silent data-loss bug. This test confirms the
233 snapshot IS missing and that the old if-guarded path would have
234 produced an empty manifest.
235 """
236 repo = _make_repo(tmp_path)
237 c1 = _make_commit(repo, "initial", {"a.py": "a" * 64})
238 c2 = _make_commit(repo, "theirs", {"b.py": "b" * 64}, parent=c1.commit_id)
239
240 snap_path = repo / ".muse" / "snapshots" / f"{c2.snapshot_id}.msgpack"
241 snap_path.unlink()
242
243 theirs_commit = read_commit(repo, c2.commit_id)
244 assert theirs_commit is not None
245
246 # Simulate old behavior: silent {} fallback
247 theirs_manifest_old: Manifest = {}
248 theirs_snap = read_snapshot(repo, theirs_commit.snapshot_id)
249 if theirs_snap:
250 theirs_manifest_old = dict(theirs_snap.manifest)
251
252 # Old code would have produced an empty manifest — would delete all theirs files
253 assert theirs_manifest_old == {}, (
254 "BUG 12: missing snapshot caused theirs_manifest={} in three-way merge, "
255 "which would silently delete all remote files"
256 )
257
258
259 # ──────────────────────────────────────────────────────────────────────────────
260 # Integration: LocalFileTransport pull scenarios
261 # ──────────────────────────────────────────────────────────────────────────────
262
263 def _init_local_transport_repo(tmp_path: pathlib.Path, name: str) -> pathlib.Path:
264 """Create a minimal repo suitable for LocalFileTransport."""
265 import json
266 import uuid
267 repo = tmp_path / name
268 repo.mkdir()
269 muse = repo / ".muse"
270 (muse / "commits").mkdir(parents=True)
271 (muse / "snapshots").mkdir()
272 (muse / "objects").mkdir()
273 (muse / "refs" / "heads").mkdir(parents=True)
274 (muse / "HEAD").write_text("ref: refs/heads/main\n")
275 (muse / "refs" / "heads" / "main").write_text("")
276 repo_data = {"repo_id": str(uuid.uuid4()), "domain": "code", "default_branch": "main"}
277 (muse / "repo.json").write_text(json.dumps(repo_data))
278 return repo
279
280
281 class TestPullIntegration:
282
283 def test_valid_pull_fast_forward_succeeds(self, tmp_path: pathlib.Path) -> None:
284 """Baseline: a clean fast-forward pull applies the snapshot and advances the ref."""
285 from muse.core.pack import apply_pack, build_pack
286 from muse.core.store import get_head_commit_id
287
288 remote = _init_local_transport_repo(tmp_path, "remote")
289 local = _init_local_transport_repo(tmp_path, "local")
290
291 # Build history on remote
292 c1_snap_id = compute_snapshot_id({"hello.py": "a" * 64})
293 write_snapshot(remote, SnapshotRecord(snapshot_id=c1_snap_id, manifest={"hello.py": "a" * 64}, created_at=_TS))
294 c1_id = compute_commit_id([], c1_snap_id, "initial", _TS.isoformat())
295 c1 = CommitRecord(commit_id=c1_id, repo_id="r", branch="main", snapshot_id=c1_snap_id, message="initial", committed_at=_TS, author="t", parent_commit_id=None, parent2_commit_id=None)
296 write_commit(remote, c1)
297 write_branch_ref(remote, "main", c1_id)
298
299 # Apply on local
300 bundle = build_pack(remote, [c1_id])
301 apply_pack(local, bundle)
302 write_branch_ref(local, "main", c1_id)
303
304 # Now remote advances
305 c2_snap_id = compute_snapshot_id({"world.py": "b" * 64})
306 write_snapshot(remote, SnapshotRecord(snapshot_id=c2_snap_id, manifest={"world.py": "b" * 64}, created_at=_TS))
307 c2_id = compute_commit_id([c1_id], c2_snap_id, "second", _TS.isoformat())
308 c2 = CommitRecord(commit_id=c2_id, repo_id="r", branch="main", snapshot_id=c2_snap_id, message="second", committed_at=_TS, author="t", parent_commit_id=c1_id, parent2_commit_id=None)
309 write_commit(remote, c2)
310 write_branch_ref(remote, "main", c2_id)
311
312 # Pull on local
313 bundle2 = build_pack(remote, [c2_id], have=[c1_id])
314 apply_pack(local, bundle2)
315
316 # Verify the commit and snapshot are on local
317 assert read_commit(local, c2_id) is not None
318 assert read_snapshot(local, c2_snap_id) is not None
319
320 def test_pull_with_missing_snapshot_does_not_advance_branch(self, tmp_path: pathlib.Path) -> None:
321 """If snapshot is missing after apply_pack, the branch must NOT be advanced.
322
323 This tests the invariant directly — not the full pull command (which
324 requires full transport integration), but the data-integrity guarantee
325 that the branch pointer is never advanced when the snapshot is missing.
326 """
327 from muse.core.pack import apply_pack, build_pack
328 from muse.core.store import get_head_commit_id
329
330 remote = _init_local_transport_repo(tmp_path, "remote")
331 local = _init_local_transport_repo(tmp_path, "local")
332
333 # Remote: initial commit
334 c1_snap_id = compute_snapshot_id({"a.py": "a" * 64})
335 write_snapshot(remote, SnapshotRecord(snapshot_id=c1_snap_id, manifest={"a.py": "a" * 64}, created_at=_TS))
336 c1_id = compute_commit_id([], c1_snap_id, "c1", _TS.isoformat())
337 c1 = CommitRecord(commit_id=c1_id, repo_id="r", branch="main", snapshot_id=c1_snap_id, message="c1", committed_at=_TS, author="t", parent_commit_id=None, parent2_commit_id=None)
338 write_commit(remote, c1)
339 write_branch_ref(remote, "main", c1_id)
340
341 # Bootstrap local with c1
342 bundle = build_pack(remote, [c1_id])
343 apply_pack(local, bundle)
344 write_branch_ref(local, "main", c1_id)
345
346 # Remote: second commit
347 c2_snap_id = compute_snapshot_id({"b.py": "b" * 64})
348 write_snapshot(remote, SnapshotRecord(snapshot_id=c2_snap_id, manifest={"b.py": "b" * 64}, created_at=_TS))
349 c2_id = compute_commit_id([c1_id], c2_snap_id, "c2", _TS.isoformat())
350 c2 = CommitRecord(commit_id=c2_id, repo_id="r", branch="main", snapshot_id=c2_snap_id, message="c2", committed_at=_TS, author="t", parent_commit_id=c1_id, parent2_commit_id=None)
351 write_commit(remote, c2)
352 write_branch_ref(remote, "main", c2_id)
353
354 # Apply pack (writes commit + snapshot to local)
355 bundle2 = build_pack(remote, [c2_id], have=[c1_id])
356 apply_pack(local, bundle2)
357
358 # Delete the snapshot from local AFTER apply_pack (simulates corruption)
359 snap_path = local / ".muse" / "snapshots" / f"{c2_snap_id}.msgpack"
360 snap_path.unlink()
361
362 # The snapshot must be missing
363 assert read_snapshot(local, c2_snap_id) is None
364
365 # Simulate the fixed fast-forward guard
366 from muse.core.errors import ExitCode
367
368 branch_before = get_head_commit_id(local, "main")
369 with pytest.raises(SystemExit) as exc_info:
370 theirs_commit = read_commit(local, c2_id)
371 assert theirs_commit is not None
372 snap = read_snapshot(local, theirs_commit.snapshot_id)
373 if snap is None:
374 raise SystemExit(ExitCode.INTERNAL_ERROR)
375 write_branch_ref(local, "main", c2_id)
376
377 assert exc_info.value.code == ExitCode.INTERNAL_ERROR
378 # Branch must still be at c1
379 assert get_head_commit_id(local, "main") == c1_id == branch_before
File History 5 commits
sha256:660fcac1df3ab28f61862e961890bd2ca8b754fa0242079d93ca1e25037ec8a6 chore(tests): add docstring to tests/__init__.py so rc14 tr… Human 26 days ago
sha256:d8316ffae901be06347e16ab55be11868eb519dd16ade3e8aa16a99e662f7e62 baseline: rc14 re-baseline after rc3 store corruption recovery Human patch 26 days ago
sha256:50d413a635f57761c3fce1f70251b957b6423821525bf330747ef4007339222e Merge branch 'dev' into main Human 29 days ago
sha256:fb67fed5a4d3e40de84bdd163de94ef1386570bef1dd1a020a732c8a038962ce Merge branch 'dev' into main Human 48 days ago
sha256:1c4b3e3a9a1f300774c3ee662b572a698d5fd405bf765a71e6011a2e9c3eaaaa feat: Muse — version control for the agent era Human 100 days ago