3 # Copyright (c) 2010 Johan Herland
6 test_description
='Test notes merging with manual conflict resolution'
10 # Set up a notes merge scenario with different kinds of conflicts
11 test_expect_success
'setup commits' '
19 commit_sha1
=$
(git rev-parse
1st^
{commit
})
20 commit_sha2
=$
(git rev-parse
2nd^
{commit
})
21 commit_sha3
=$
(git rev-parse
3rd^
{commit
})
22 commit_sha4
=$
(git rev-parse
4th^
{commit
})
23 commit_sha5
=$
(git rev-parse
5th^
{commit
})
27 git
-c core.notesRef
="refs/notes/$notes_ref" notes |
28 sort >"output_notes_$notes_ref" &&
29 test_cmp
"expect_notes_$notes_ref" "output_notes_$notes_ref" &&
30 git
-c core.notesRef
="refs/notes/$notes_ref" log
--format="%H %s%n%N" \
31 >"output_log_$notes_ref" &&
32 test_cmp
"expect_log_$notes_ref" "output_log_$notes_ref"
35 cat <<EOF | sort >expect_notes_x
36 6e8e3febca3c2bb896704335cc4d0c34cb2f8715 $commit_sha4
37 e5388c10860456ee60673025345fe2e153eb8cf8 $commit_sha3
38 ceefa674873670e7ecd131814d909723cce2b669 $commit_sha2
41 cat >expect_log_x
<<EOF
57 test_expect_success
'setup merge base (x)' '
58 git config core.notesRef refs/notes/x &&
59 git notes add -m "x notes on 2nd commit" 2nd &&
60 git notes add -m "x notes on 3rd commit" 3rd &&
61 git notes add -m "x notes on 4th commit" 4th &&
65 cat <<EOF | sort >expect_notes_y
66 e2bfd06a37dd2031684a59a6e2b033e212239c78 $commit_sha4
67 5772f42408c0dd6f097a7ca2d24de0e78d1c46b1 $commit_sha3
68 b0a6021ec006d07e80e9b20ec9b444cbd9d560d3 $commit_sha1
71 cat >expect_log_y
<<EOF
87 test_expect_success
'setup local branch (y)' '
88 git update-ref refs/notes/y refs/notes/x &&
89 git config core.notesRef refs/notes/y &&
90 git notes add -f -m "y notes on 1st commit" 1st &&
91 git notes remove 2nd &&
92 git notes add -f -m "y notes on 3rd commit" 3rd &&
93 git notes add -f -m "y notes on 4th commit" 4th &&
97 cat <<EOF | sort >expect_notes_z
98 cff59c793c20bb49a4e01bc06fb06bad642e0d54 $commit_sha4
99 283b48219aee9a4105f6cab337e789065c82c2b9 $commit_sha2
100 0a81da8956346e19bcb27a906f04af327e03e31b $commit_sha1
103 cat >expect_log_z
<<EOF
107 z notes on 4th commit
112 z notes on 2nd commit
115 z notes on 1st commit
119 test_expect_success
'setup remote branch (z)' '
120 git update-ref refs/notes/z refs/notes/x &&
121 git config core.notesRef refs/notes/z &&
122 git notes add -f -m "z notes on 1st commit" 1st &&
123 git notes add -f -m "z notes on 2nd commit" 2nd &&
124 git notes remove 3rd &&
125 git notes add -f -m "z notes on 4th commit" 4th &&
129 # At this point, before merging z into y, we have the following status:
131 # commit | base/x | local/y | remote/z | diff from x to y/z
132 # -------|---------|---------|----------|---------------------------
133 # 1st | [none] | b0a6021 | 0a81da8 | added / added (diff)
134 # 2nd | ceefa67 | [none] | 283b482 | removed / changed
135 # 3rd | e5388c1 | 5772f42 | [none] | changed / removed
136 # 4th | 6e8e3fe | e2bfd06 | cff59c7 | changed / changed (diff)
137 # 5th | [none] | [none] | [none] | [none]
139 cat <<EOF | sort >expect_conflicts
146 cat >expect_conflict_
$commit_sha1 <<EOF
148 y notes on 1st commit
150 z notes on 1st commit
154 cat >expect_conflict_
$commit_sha2 <<EOF
155 z notes on 2nd commit
158 cat >expect_conflict_
$commit_sha3 <<EOF
159 y notes on 3rd commit
162 cat >expect_conflict_
$commit_sha4 <<EOF
164 y notes on 4th commit
166 z notes on 4th commit
170 cp expect_notes_y expect_notes_m
171 cp expect_log_y expect_log_m
173 git rev-parse refs
/notes
/y
> pre_merge_y
174 git rev-parse refs
/notes
/z
> pre_merge_z
176 test_expect_success
'merge z into m (== y) with default ("manual") resolver => Conflicting 3-way merge' '
177 git update-ref refs/notes/m refs/notes/y &&
178 git config core.notesRef refs/notes/m &&
179 test_must_fail git notes merge z >output &&
180 # Output should point to where to resolve conflicts
181 grep -q "\\.git/NOTES_MERGE_WORKTREE" output &&
182 # Inspect merge conflicts
183 ls .git/NOTES_MERGE_WORKTREE >output_conflicts &&
184 test_cmp expect_conflicts output_conflicts &&
185 ( for f in $(cat expect_conflicts); do
186 test_cmp "expect_conflict_$f" ".git/NOTES_MERGE_WORKTREE/$f" ||
189 # Verify that current notes tree (pre-merge) has not changed (m == y)
192 test "$(git rev-parse refs/notes/m)" = "$(cat pre_merge_y)"
195 cat <<EOF | sort >expect_notes_z
196 00494adecf2d9635a02fa431308d67993f853968 $commit_sha4
197 283b48219aee9a4105f6cab337e789065c82c2b9 $commit_sha2
198 0a81da8956346e19bcb27a906f04af327e03e31b $commit_sha1
201 cat >expect_log_z
<<EOF
205 z notes on 4th commit
207 More z notes on 4th commit
212 z notes on 2nd commit
215 z notes on 1st commit
219 test_expect_success
'change notes in z' '
220 git notes --ref z append -m "More z notes on 4th commit" 4th &&
224 test_expect_success
'cannot do merge w/conflicts when previous merge is unfinished' '
225 test -d .git/NOTES_MERGE_WORKTREE &&
226 test_must_fail git notes merge z >output 2>&1 &&
227 # Output should indicate what is wrong
228 grep -q "\\.git/NOTES_MERGE_\\* exists" output
231 # Setup non-conflicting merge between x and new notes ref w
233 cat <<EOF | sort >expect_notes_w
234 ceefa674873670e7ecd131814d909723cce2b669 $commit_sha2
235 f75d1df88cbfe4258d49852f26cfc83f2ad4494b $commit_sha1
238 cat >expect_log_w
<<EOF
246 x notes on 2nd commit
249 w notes on 1st commit
253 test_expect_success
'setup unrelated notes ref (w)' '
254 git config core.notesRef refs/notes/w &&
255 git notes add -m "w notes on 1st commit" 1st &&
256 git notes add -m "x notes on 2nd commit" 2nd &&
260 cat <<EOF | sort >expect_notes_w
261 6e8e3febca3c2bb896704335cc4d0c34cb2f8715 $commit_sha4
262 e5388c10860456ee60673025345fe2e153eb8cf8 $commit_sha3
263 ceefa674873670e7ecd131814d909723cce2b669 $commit_sha2
264 f75d1df88cbfe4258d49852f26cfc83f2ad4494b $commit_sha1
267 cat >expect_log_w
<<EOF
271 x notes on 4th commit
274 x notes on 3rd commit
277 x notes on 2nd commit
280 w notes on 1st commit
284 test_expect_success
'can do merge without conflicts even if previous merge is unfinished (x => w)' '
285 test -d .git/NOTES_MERGE_WORKTREE &&
288 # Verify that other notes refs has not changed (x and y)
293 cat <<EOF | sort >expect_notes_m
294 021faa20e931fb48986ffc6282b4bb05553ac946 $commit_sha4
295 5772f42408c0dd6f097a7ca2d24de0e78d1c46b1 $commit_sha3
296 283b48219aee9a4105f6cab337e789065c82c2b9 $commit_sha2
297 0a59e787e6d688aa6309e56e8c1b89431a0fc1c1 $commit_sha1
300 cat >expect_log_m
<<EOF
304 y and z notes on 4th commit
307 y notes on 3rd commit
310 z notes on 2nd commit
313 y and z notes on 1st commit
317 test_expect_success
'finalize conflicting merge (z => m)' '
318 # Resolve conflicts and finalize merge
319 cat >.git/NOTES_MERGE_WORKTREE/$commit_sha1 <<EOF &&
320 y and z notes on 1st commit
322 cat >.git/NOTES_MERGE_WORKTREE/$commit_sha4 <<EOF &&
323 y and z notes on 4th commit
325 git notes merge --commit &&
326 # No .git/NOTES_MERGE_* files left
327 test_might_fail ls .git/NOTES_MERGE_* >output 2>/dev/null &&
328 test_cmp /dev/null output &&
329 # Merge commit has pre-merge y and pre-merge z as parents
330 test "$(git rev-parse refs/notes/m^1)" = "$(cat pre_merge_y)" &&
331 test "$(git rev-parse refs/notes/m^2)" = "$(cat pre_merge_z)" &&
332 # Merge commit mentions the notes refs merged
333 git log -1 --format=%B refs/notes/m > merge_commit_msg &&
334 grep -q refs/notes/m merge_commit_msg &&
335 grep -q refs/notes/z merge_commit_msg &&
336 # Merge commit mentions conflicting notes
337 grep -q "Conflicts" merge_commit_msg &&
338 ( for sha1 in $(cat expect_conflicts); do
339 grep -q "$sha1" merge_commit_msg ||
342 # Verify contents of merge result
344 # Verify that other notes refs has not changed (w, x, y and z)
351 cat >expect_conflict_
$commit_sha4 <<EOF
353 y notes on 4th commit
355 z notes on 4th commit
357 More z notes on 4th commit
361 cp expect_notes_y expect_notes_m
362 cp expect_log_y expect_log_m
364 git rev-parse refs
/notes
/y
> pre_merge_y
365 git rev-parse refs
/notes
/z
> pre_merge_z
367 test_expect_success
'redo merge of z into m (== y) with default ("manual") resolver => Conflicting 3-way merge' '
368 git update-ref refs/notes/m refs/notes/y &&
369 git config core.notesRef refs/notes/m &&
370 test_must_fail git notes merge z >output &&
371 # Output should point to where to resolve conflicts
372 grep -q "\\.git/NOTES_MERGE_WORKTREE" output &&
373 # Inspect merge conflicts
374 ls .git/NOTES_MERGE_WORKTREE >output_conflicts &&
375 test_cmp expect_conflicts output_conflicts &&
376 ( for f in $(cat expect_conflicts); do
377 test_cmp "expect_conflict_$f" ".git/NOTES_MERGE_WORKTREE/$f" ||
380 # Verify that current notes tree (pre-merge) has not changed (m == y)
383 test "$(git rev-parse refs/notes/m)" = "$(cat pre_merge_y)"
386 test_expect_success
'abort notes merge' '
387 git notes merge --abort &&
388 # No .git/NOTES_MERGE_* files left
389 test_might_fail ls .git/NOTES_MERGE_* >output 2>/dev/null &&
390 test_cmp /dev/null output &&
391 # m has not moved (still == y)
392 test "$(git rev-parse refs/notes/m)" = "$(cat pre_merge_y)" &&
393 # Verify that other notes refs has not changed (w, x, y and z)
400 git rev-parse refs
/notes
/y
> pre_merge_y
401 git rev-parse refs
/notes
/z
> pre_merge_z
403 test_expect_success
'redo merge of z into m (== y) with default ("manual") resolver => Conflicting 3-way merge' '
404 test_must_fail git notes merge z >output &&
405 # Output should point to where to resolve conflicts
406 grep -q "\\.git/NOTES_MERGE_WORKTREE" output &&
407 # Inspect merge conflicts
408 ls .git/NOTES_MERGE_WORKTREE >output_conflicts &&
409 test_cmp expect_conflicts output_conflicts &&
410 ( for f in $(cat expect_conflicts); do
411 test_cmp "expect_conflict_$f" ".git/NOTES_MERGE_WORKTREE/$f" ||
414 # Verify that current notes tree (pre-merge) has not changed (m == y)
417 test "$(git rev-parse refs/notes/m)" = "$(cat pre_merge_y)"
420 cat <<EOF | sort >expect_notes_m
421 304dfb4325cf243025b9957486eb605a9b51c199 $commit_sha5
422 283b48219aee9a4105f6cab337e789065c82c2b9 $commit_sha2
423 0a59e787e6d688aa6309e56e8c1b89431a0fc1c1 $commit_sha1
426 cat >expect_log_m
<<EOF
428 new note on 5th commit
435 z notes on 2nd commit
438 y and z notes on 1st commit
442 test_expect_success
'add + remove notes in finalized merge (z => m)' '
443 # Resolve one conflict
444 cat >.git/NOTES_MERGE_WORKTREE/$commit_sha1 <<EOF &&
445 y and z notes on 1st commit
447 # Remove another conflict
448 rm .git/NOTES_MERGE_WORKTREE/$commit_sha4 &&
449 # Remove a D/F conflict
450 rm .git/NOTES_MERGE_WORKTREE/$commit_sha3 &&
452 echo "new note on 5th commit" > .git/NOTES_MERGE_WORKTREE/$commit_sha5 &&
454 git notes merge --commit &&
455 # No .git/NOTES_MERGE_* files left
456 test_might_fail ls .git/NOTES_MERGE_* >output 2>/dev/null &&
457 test_cmp /dev/null output &&
458 # Merge commit has pre-merge y and pre-merge z as parents
459 test "$(git rev-parse refs/notes/m^1)" = "$(cat pre_merge_y)" &&
460 test "$(git rev-parse refs/notes/m^2)" = "$(cat pre_merge_z)" &&
461 # Merge commit mentions the notes refs merged
462 git log -1 --format=%B refs/notes/m > merge_commit_msg &&
463 grep -q refs/notes/m merge_commit_msg &&
464 grep -q refs/notes/z merge_commit_msg &&
465 # Merge commit mentions conflicting notes
466 grep -q "Conflicts" merge_commit_msg &&
467 ( for sha1 in $(cat expect_conflicts); do
468 grep -q "$sha1" merge_commit_msg ||
471 # Verify contents of merge result
473 # Verify that other notes refs has not changed (w, x, y and z)
480 cp expect_notes_y expect_notes_m
481 cp expect_log_y expect_log_m
483 test_expect_success
'redo merge of z into m (== y) with default ("manual") resolver => Conflicting 3-way merge' '
484 git update-ref refs/notes/m refs/notes/y &&
485 test_must_fail git notes merge z >output &&
486 # Output should point to where to resolve conflicts
487 grep -q "\\.git/NOTES_MERGE_WORKTREE" output &&
488 # Inspect merge conflicts
489 ls .git/NOTES_MERGE_WORKTREE >output_conflicts &&
490 test_cmp expect_conflicts output_conflicts &&
491 ( for f in $(cat expect_conflicts); do
492 test_cmp "expect_conflict_$f" ".git/NOTES_MERGE_WORKTREE/$f" ||
495 # Verify that current notes tree (pre-merge) has not changed (m == y)
498 test "$(git rev-parse refs/notes/m)" = "$(cat pre_merge_y)"
501 cp expect_notes_w expect_notes_m
502 cp expect_log_w expect_log_m
504 test_expect_success
'reset notes ref m to somewhere else (w)' '
505 git update-ref refs/notes/m refs/notes/w &&
507 test "$(git rev-parse refs/notes/m)" = "$(git rev-parse refs/notes/w)"
510 test_expect_success
'fail to finalize conflicting merge if underlying ref has moved in the meantime (m != NOTES_MERGE_PARTIAL^1)' '
512 cat >.git/NOTES_MERGE_WORKTREE/$commit_sha1 <<EOF &&
513 y and z notes on 1st commit
515 cat >.git/NOTES_MERGE_WORKTREE/$commit_sha4 <<EOF &&
516 y and z notes on 4th commit
518 # Fail to finalize merge
519 test_must_fail git notes merge --commit >output 2>&1 &&
520 # .git/NOTES_MERGE_* must remain
521 test -f .git/NOTES_MERGE_PARTIAL &&
522 test -f .git/NOTES_MERGE_REF &&
523 test -f .git/NOTES_MERGE_WORKTREE/$commit_sha1 &&
524 test -f .git/NOTES_MERGE_WORKTREE/$commit_sha2 &&
525 test -f .git/NOTES_MERGE_WORKTREE/$commit_sha3 &&
526 test -f .git/NOTES_MERGE_WORKTREE/$commit_sha4 &&
528 test "$(git rev-parse refs/notes/m)" = "$(git rev-parse refs/notes/w)" &&
529 test "$(git rev-parse refs/notes/y)" = "$(git rev-parse NOTES_MERGE_PARTIAL^1)" &&
530 test "$(git rev-parse refs/notes/m)" != "$(git rev-parse NOTES_MERGE_PARTIAL^1)" &&
531 # Mention refs/notes/m, and its current and expected value in output
532 grep -q "refs/notes/m" output &&
533 grep -q "$(git rev-parse refs/notes/m)" output &&
534 grep -q "$(git rev-parse NOTES_MERGE_PARTIAL^1)" output &&
535 # Verify that other notes refs has not changed (w, x, y and z)
542 test_expect_success
'resolve situation by aborting the notes merge' '
543 git notes merge --abort &&
544 # No .git/NOTES_MERGE_* files left
545 test_might_fail ls .git/NOTES_MERGE_* >output 2>/dev/null &&
546 test_cmp /dev/null output &&
547 # m has not moved (still == w)
548 test "$(git rev-parse refs/notes/m)" = "$(git rev-parse refs/notes/w)" &&
549 # Verify that other notes refs has not changed (w, x, y and z)
556 cat >expect_notes
<<EOF
561 test_expect_success
'switch cwd before committing notes merge' '
562 git notes add -m foo HEAD &&
563 git notes --ref=other add -m bar HEAD &&
564 test_must_fail git notes merge refs/notes/other &&
566 cd .git/NOTES_MERGE_WORKTREE &&
567 echo "foo" > $(git rev-parse HEAD) &&
568 echo "bar" >> $(git rev-parse HEAD) &&
569 git notes merge --commit
571 git notes show HEAD > actual_notes &&
572 test_cmp expect_notes actual_notes