Start the 2.46 cycle
[git/gitster.git] / t / t6426-merge-skip-unneeded-updates.sh
blobb059475ed033440bad42a059341b63176314e642
1 #!/bin/sh
3 test_description="merge cases"
5 # The setup for all of them, pictorially, is:
7 # A
8 # o
9 # / \
10 # O o ?
11 # \ /
12 # o
13 # B
15 # To help make it easier to follow the flow of tests, they have been
16 # divided into sections and each test will start with a quick explanation
17 # of what commits O, A, and B contain.
19 # Notation:
20 # z/{b,c} means files z/b and z/c both exist
21 # x/d_1 means file x/d exists with content d1. (Purpose of the
22 # underscore notation is to differentiate different
23 # files that might be renamed into each other's paths.)
25 . ./test-lib.sh
26 . "$TEST_DIRECTORY"/lib-merge.sh
29 ###########################################################################
30 # SECTION 1: Cases involving no renames (one side has subset of changes of
31 # the other side)
32 ###########################################################################
34 # Testcase 1a, Changes on A, subset of changes on B
35 # Commit O: b_1
36 # Commit A: b_2
37 # Commit B: b_3
38 # Expected: b_2
40 test_setup_1a () {
41 git init 1a_$1 &&
43 cd 1a_$1 &&
45 test_write_lines 1 2 3 4 5 6 7 8 9 10 >b &&
46 git add b &&
47 test_tick &&
48 git commit -m "O" &&
50 git branch O &&
51 git branch A &&
52 git branch B &&
54 git checkout A &&
55 test_write_lines 1 2 3 4 5 5.5 6 7 8 9 10 10.5 >b &&
56 git add b &&
57 test_tick &&
58 git commit -m "A" &&
60 git checkout B &&
61 test_write_lines 1 2 3 4 5 5.5 6 7 8 9 10 >b &&
62 git add b &&
63 test_tick &&
64 git commit -m "B"
68 test_expect_success '1a-L: Modify(A)/Modify(B), change on B subset of A' '
69 test_setup_1a L &&
71 cd 1a_L &&
73 git checkout A^0 &&
75 test-tool chmtime --get -3600 b >old-mtime &&
77 GIT_MERGE_VERBOSITY=3 git merge -s recursive B^0 >out 2>err &&
79 test_must_be_empty err &&
81 # Make sure b was NOT updated
82 test-tool chmtime --get b >new-mtime &&
83 test_cmp old-mtime new-mtime &&
85 git ls-files -s >index_files &&
86 test_line_count = 1 index_files &&
88 git rev-parse >actual HEAD:b &&
89 git rev-parse >expect A:b &&
90 test_cmp expect actual &&
92 git hash-object b >actual &&
93 git rev-parse A:b >expect &&
94 test_cmp expect actual
98 test_expect_success '1a-R: Modify(A)/Modify(B), change on B subset of A' '
99 test_setup_1a R &&
101 cd 1a_R &&
103 git checkout B^0 &&
105 test-tool chmtime --get -3600 b >old-mtime &&
106 GIT_MERGE_VERBOSITY=3 git merge -s recursive A^0 >out 2>err &&
108 # Make sure b WAS updated
109 test-tool chmtime --get b >new-mtime &&
110 test $(cat old-mtime) -lt $(cat new-mtime) &&
112 test_must_be_empty err &&
114 git ls-files -s >index_files &&
115 test_line_count = 1 index_files &&
117 git rev-parse >actual HEAD:b &&
118 git rev-parse >expect A:b &&
119 test_cmp expect actual &&
121 git hash-object b >actual &&
122 git rev-parse A:b >expect &&
123 test_cmp expect actual
128 ###########################################################################
129 # SECTION 2: Cases involving basic renames
130 ###########################################################################
132 # Testcase 2a, Changes on A, rename on B
133 # Commit O: b_1
134 # Commit A: b_2
135 # Commit B: c_1
136 # Expected: c_2
138 test_setup_2a () {
139 git init 2a_$1 &&
141 cd 2a_$1 &&
143 test_seq 1 10 >b &&
144 git add b &&
145 test_tick &&
146 git commit -m "O" &&
148 git branch O &&
149 git branch A &&
150 git branch B &&
152 git checkout A &&
153 test_seq 1 11 >b &&
154 git add b &&
155 test_tick &&
156 git commit -m "A" &&
158 git checkout B &&
159 git mv b c &&
160 test_tick &&
161 git commit -m "B"
165 test_expect_success '2a-L: Modify/rename, merge into modify side' '
166 test_setup_2a L &&
168 cd 2a_L &&
170 git checkout A^0 &&
172 test_path_is_missing c &&
173 GIT_MERGE_VERBOSITY=3 git merge -s recursive B^0 >out 2>err &&
175 test_path_is_file c &&
177 git ls-files -s >index_files &&
178 test_line_count = 1 index_files &&
180 git rev-parse >actual HEAD:c &&
181 git rev-parse >expect A:b &&
182 test_cmp expect actual &&
184 git hash-object c >actual &&
185 git rev-parse A:b >expect &&
186 test_cmp expect actual &&
188 test_must_fail git rev-parse HEAD:b &&
189 test_path_is_missing b
193 test_expect_success '2a-R: Modify/rename, merge into rename side' '
194 test_setup_2a R &&
196 cd 2a_R &&
198 git checkout B^0 &&
200 test-tool chmtime --get -3600 c >old-mtime &&
201 GIT_MERGE_VERBOSITY=3 git merge -s recursive A^0 >out 2>err &&
203 # Make sure c WAS updated
204 test-tool chmtime --get c >new-mtime &&
205 test $(cat old-mtime) -lt $(cat new-mtime) &&
207 test_must_be_empty err &&
209 git ls-files -s >index_files &&
210 test_line_count = 1 index_files &&
212 git rev-parse >actual HEAD:c &&
213 git rev-parse >expect A:b &&
214 test_cmp expect actual &&
216 git hash-object c >actual &&
217 git rev-parse A:b >expect &&
218 test_cmp expect actual &&
220 test_must_fail git rev-parse HEAD:b &&
221 test_path_is_missing b
225 # Testcase 2b, Changed and renamed on A, subset of changes on B
226 # Commit O: b_1
227 # Commit A: c_2
228 # Commit B: b_3
229 # Expected: c_2
231 test_setup_2b () {
232 git init 2b_$1 &&
234 cd 2b_$1 &&
236 test_write_lines 1 2 3 4 5 6 7 8 9 10 >b &&
237 git add b &&
238 test_tick &&
239 git commit -m "O" &&
241 git branch O &&
242 git branch A &&
243 git branch B &&
245 git checkout A &&
246 test_write_lines 1 2 3 4 5 5.5 6 7 8 9 10 10.5 >b &&
247 git add b &&
248 git mv b c &&
249 test_tick &&
250 git commit -m "A" &&
252 git checkout B &&
253 test_write_lines 1 2 3 4 5 5.5 6 7 8 9 10 >b &&
254 git add b &&
255 test_tick &&
256 git commit -m "B"
260 test_expect_success '2b-L: Rename+Mod(A)/Mod(B), B mods subset of A' '
261 test_setup_2b L &&
263 cd 2b_L &&
265 git checkout A^0 &&
267 test-tool chmtime --get -3600 c >old-mtime &&
268 GIT_MERGE_VERBOSITY=3 git merge -s recursive B^0 >out 2>err &&
270 test_must_be_empty err &&
272 # Make sure c WAS updated
273 test-tool chmtime --get c >new-mtime &&
274 test_cmp old-mtime new-mtime &&
276 git ls-files -s >index_files &&
277 test_line_count = 1 index_files &&
279 git rev-parse >actual HEAD:c &&
280 git rev-parse >expect A:c &&
281 test_cmp expect actual &&
283 git hash-object c >actual &&
284 git rev-parse A:c >expect &&
285 test_cmp expect actual &&
287 test_must_fail git rev-parse HEAD:b &&
288 test_path_is_missing b
292 test_expect_success '2b-R: Rename+Mod(A)/Mod(B), B mods subset of A' '
293 test_setup_2b R &&
295 cd 2b_R &&
297 git checkout B^0 &&
299 test_path_is_missing c &&
300 GIT_MERGE_VERBOSITY=3 git merge -s recursive A^0 >out 2>err &&
302 # Make sure c now present (and thus was updated)
303 test_path_is_file c &&
305 test_must_be_empty err &&
307 git ls-files -s >index_files &&
308 test_line_count = 1 index_files &&
310 git rev-parse >actual HEAD:c &&
311 git rev-parse >expect A:c &&
312 test_cmp expect actual &&
314 git hash-object c >actual &&
315 git rev-parse A:c >expect &&
316 test_cmp expect actual &&
318 test_must_fail git rev-parse HEAD:b &&
319 test_path_is_missing b
323 # Testcase 2c, Changes on A, rename on B
324 # Commit O: b_1
325 # Commit A: b_2, c_3
326 # Commit B: c_1
327 # Expected: rename/add conflict c_2 vs c_3
329 # NOTE: Since A modified b_1->b_2, and B renamed b_1->c_1, the threeway
330 # merge of those files should result in c_2. We then should have a
331 # rename/add conflict between c_2 and c_3. However, if we note in
332 # merge_content() that A had the right contents (b_2 has same
333 # contents as c_2, just at a different name), and that A had the
334 # right path present (c_3 existed) and thus decides that it can
335 # skip the update, then we're in trouble. This test verifies we do
336 # not make that particular mistake.
338 test_setup_2c () {
339 git init 2c &&
341 cd 2c &&
343 test_seq 1 10 >b &&
344 git add b &&
345 test_tick &&
346 git commit -m "O" &&
348 git branch O &&
349 git branch A &&
350 git branch B &&
352 git checkout A &&
353 test_seq 1 11 >b &&
354 echo whatever >c &&
355 git add b c &&
356 test_tick &&
357 git commit -m "A" &&
359 git checkout B &&
360 git mv b c &&
361 test_tick &&
362 git commit -m "B"
366 test_expect_success '2c: Modify b & add c VS rename b->c' '
367 test_setup_2c &&
369 cd 2c &&
371 git checkout A^0 &&
373 test-tool chmtime --get -3600 c >old-mtime &&
374 GIT_MERGE_VERBOSITY=3 &&
375 export GIT_MERGE_VERBOSITY &&
376 test_must_fail git merge -s recursive B^0 >out 2>err &&
378 test_grep "CONFLICT (.*/add):" out &&
379 test_must_be_empty err &&
381 git ls-files -s >index_files &&
382 test_line_count = 2 index_files &&
384 # Ensure b was removed
385 test_path_is_missing b &&
387 # Make sure c WAS updated...
388 test-tool chmtime --get c >new-mtime &&
389 test $(cat old-mtime) -lt $(cat new-mtime) &&
391 # ...and has correct index entries and working tree contents
392 git rev-parse >actual :2:c :3:c &&
393 git rev-parse >expect A:c A:b &&
394 test_cmp expect actual &&
396 git cat-file -p A:b >>merge-me &&
397 git cat-file -p A:c >>merged &&
398 >empty &&
399 test_must_fail git merge-file \
400 -L "HEAD" \
401 -L "" \
402 -L "B^0" \
403 merged empty merge-me &&
404 test_cmp merged c
409 ###########################################################################
410 # SECTION 3: Cases involving directory renames
412 # NOTE:
413 # Directory renames only apply when one side renames a directory, and the
414 # other side adds or renames a path into that directory. Applying the
415 # directory rename to that new path creates a new pathname that didn't
416 # exist on either side of history. Thus, it is impossible for the
417 # merge contents to already be at the right path, so all of these checks
418 # exist just to make sure that updates are not skipped.
419 ###########################################################################
421 # Testcase 3a, Change + rename into dir foo on A, dir rename foo->bar on B
422 # Commit O: bq_1, foo/whatever
423 # Commit A: foo/{bq_2, whatever}
424 # Commit B: bq_1, bar/whatever
425 # Expected: bar/{bq_2, whatever}
427 test_setup_3a () {
428 git init 3a_$1 &&
430 cd 3a_$1 &&
432 mkdir foo &&
433 test_seq 1 10 >bq &&
434 test_write_lines a b c d e f g h i j k >foo/whatever &&
435 git add bq foo/whatever &&
436 test_tick &&
437 git commit -m "O" &&
439 git branch O &&
440 git branch A &&
441 git branch B &&
443 git checkout A &&
444 test_seq 1 11 >bq &&
445 git add bq &&
446 git mv bq foo/ &&
447 test_tick &&
448 git commit -m "A" &&
450 git checkout B &&
451 git mv foo/ bar/ &&
452 test_tick &&
453 git commit -m "B"
457 test_expect_success '3a-L: bq_1->foo/bq_2 on A, foo/->bar/ on B' '
458 test_setup_3a L &&
460 cd 3a_L &&
462 git checkout A^0 &&
464 test_path_is_missing bar/bq &&
465 GIT_MERGE_VERBOSITY=3 git -c merge.directoryRenames=true merge -s recursive B^0 >out 2>err &&
467 test_must_be_empty err &&
469 test_path_is_file bar/bq &&
471 git ls-files -s >index_files &&
472 test_line_count = 2 index_files &&
474 git rev-parse >actual HEAD:bar/bq HEAD:bar/whatever &&
475 git rev-parse >expect A:foo/bq A:foo/whatever &&
476 test_cmp expect actual &&
478 git hash-object bar/bq bar/whatever >actual &&
479 git rev-parse A:foo/bq A:foo/whatever >expect &&
480 test_cmp expect actual &&
482 test_must_fail git rev-parse HEAD:bq HEAD:foo/bq &&
483 test_path_is_missing bq &&
484 test_path_is_missing foo/bq &&
485 test_path_is_missing foo/whatever
489 test_expect_success '3a-R: bq_1->foo/bq_2 on A, foo/->bar/ on B' '
490 test_setup_3a R &&
492 cd 3a_R &&
494 git checkout B^0 &&
496 test_path_is_missing bar/bq &&
497 GIT_MERGE_VERBOSITY=3 git -c merge.directoryRenames=true merge -s recursive A^0 >out 2>err &&
499 test_must_be_empty err &&
501 test_path_is_file bar/bq &&
503 git ls-files -s >index_files &&
504 test_line_count = 2 index_files &&
506 git rev-parse >actual HEAD:bar/bq HEAD:bar/whatever &&
507 git rev-parse >expect A:foo/bq A:foo/whatever &&
508 test_cmp expect actual &&
510 git hash-object bar/bq bar/whatever >actual &&
511 git rev-parse A:foo/bq A:foo/whatever >expect &&
512 test_cmp expect actual &&
514 test_must_fail git rev-parse HEAD:bq HEAD:foo/bq &&
515 test_path_is_missing bq &&
516 test_path_is_missing foo/bq &&
517 test_path_is_missing foo/whatever
521 # Testcase 3b, rename into dir foo on A, dir rename foo->bar + change on B
522 # Commit O: bq_1, foo/whatever
523 # Commit A: foo/{bq_1, whatever}
524 # Commit B: bq_2, bar/whatever
525 # Expected: bar/{bq_2, whatever}
527 test_setup_3b () {
528 git init 3b_$1 &&
530 cd 3b_$1 &&
532 mkdir foo &&
533 test_seq 1 10 >bq &&
534 test_write_lines a b c d e f g h i j k >foo/whatever &&
535 git add bq foo/whatever &&
536 test_tick &&
537 git commit -m "O" &&
539 git branch O &&
540 git branch A &&
541 git branch B &&
543 git checkout A &&
544 git mv bq foo/ &&
545 test_tick &&
546 git commit -m "A" &&
548 git checkout B &&
549 test_seq 1 11 >bq &&
550 git add bq &&
551 git mv foo/ bar/ &&
552 test_tick &&
553 git commit -m "B"
557 test_expect_success '3b-L: bq_1->foo/bq_2 on A, foo/->bar/ on B' '
558 test_setup_3b L &&
560 cd 3b_L &&
562 git checkout A^0 &&
564 test_path_is_missing bar/bq &&
565 GIT_MERGE_VERBOSITY=3 git -c merge.directoryRenames=true merge -s recursive B^0 >out 2>err &&
567 test_must_be_empty err &&
569 test_path_is_file bar/bq &&
571 git ls-files -s >index_files &&
572 test_line_count = 2 index_files &&
574 git rev-parse >actual HEAD:bar/bq HEAD:bar/whatever &&
575 git rev-parse >expect B:bq A:foo/whatever &&
576 test_cmp expect actual &&
578 git hash-object bar/bq bar/whatever >actual &&
579 git rev-parse B:bq A:foo/whatever >expect &&
580 test_cmp expect actual &&
582 test_must_fail git rev-parse HEAD:bq HEAD:foo/bq &&
583 test_path_is_missing bq &&
584 test_path_is_missing foo/bq &&
585 test_path_is_missing foo/whatever
589 test_expect_success '3b-R: bq_1->foo/bq_2 on A, foo/->bar/ on B' '
590 test_setup_3b R &&
592 cd 3b_R &&
594 git checkout B^0 &&
596 test_path_is_missing bar/bq &&
597 GIT_MERGE_VERBOSITY=3 git -c merge.directoryRenames=true merge -s recursive A^0 >out 2>err &&
599 test_must_be_empty err &&
601 test_path_is_file bar/bq &&
603 git ls-files -s >index_files &&
604 test_line_count = 2 index_files &&
606 git rev-parse >actual HEAD:bar/bq HEAD:bar/whatever &&
607 git rev-parse >expect B:bq A:foo/whatever &&
608 test_cmp expect actual &&
610 git hash-object bar/bq bar/whatever >actual &&
611 git rev-parse B:bq A:foo/whatever >expect &&
612 test_cmp expect actual &&
614 test_must_fail git rev-parse HEAD:bq HEAD:foo/bq &&
615 test_path_is_missing bq &&
616 test_path_is_missing foo/bq &&
617 test_path_is_missing foo/whatever
621 ###########################################################################
622 # SECTION 4: Cases involving dirty changes
623 ###########################################################################
625 # Testcase 4a, Changed on A, subset of changes on B, locally modified
626 # Commit O: b_1
627 # Commit A: b_2
628 # Commit B: b_3
629 # Working copy: b_4
630 # Expected: b_2 for merge, b_4 in working copy
632 test_setup_4a () {
633 git init 4a &&
635 cd 4a &&
637 test_write_lines 1 2 3 4 5 6 7 8 9 10 >b &&
638 git add b &&
639 test_tick &&
640 git commit -m "O" &&
642 git branch O &&
643 git branch A &&
644 git branch B &&
646 git checkout A &&
647 test_write_lines 1 2 3 4 5 5.5 6 7 8 9 10 10.5 >b &&
648 git add b &&
649 test_tick &&
650 git commit -m "A" &&
652 git checkout B &&
653 test_write_lines 1 2 3 4 5 5.5 6 7 8 9 10 >b &&
654 git add b &&
655 test_tick &&
656 git commit -m "B"
660 # NOTE: For as long as we continue using unpack_trees() without index_only
661 # set to true, it will error out on a case like this claiming that the locally
662 # modified file would be overwritten by the merge. Getting this testcase
663 # correct requires doing the merge in-memory first, then realizing that no
664 # updates to the file are necessary, and thus that we can just leave the path
665 # alone.
666 test_expect_merge_algorithm failure success '4a: Change on A, change on B subset of A, dirty mods present' '
667 test_setup_4a &&
669 cd 4a &&
671 git checkout A^0 &&
672 echo "File rewritten" >b &&
674 test-tool chmtime --get -3600 b >old-mtime &&
676 GIT_MERGE_VERBOSITY=3 git merge -s recursive B^0 >out 2>err &&
678 test_must_be_empty err &&
680 # Make sure b was NOT updated
681 test-tool chmtime --get b >new-mtime &&
682 test_cmp old-mtime new-mtime &&
684 git ls-files -s >index_files &&
685 test_line_count = 1 index_files &&
687 git rev-parse >actual :0:b &&
688 git rev-parse >expect A:b &&
689 test_cmp expect actual &&
691 git hash-object b >actual &&
692 echo "File rewritten" | git hash-object --stdin >expect &&
693 test_cmp expect actual
697 # Testcase 4b, Changed+renamed on A, subset of changes on B, locally modified
698 # Commit O: b_1
699 # Commit A: c_2
700 # Commit B: b_3
701 # Working copy: c_4
702 # Expected: c_2
704 test_setup_4b () {
705 git init 4b &&
707 cd 4b &&
709 test_write_lines 1 2 3 4 5 6 7 8 9 10 >b &&
710 git add b &&
711 test_tick &&
712 git commit -m "O" &&
714 git branch O &&
715 git branch A &&
716 git branch B &&
718 git checkout A &&
719 test_write_lines 1 2 3 4 5 5.5 6 7 8 9 10 10.5 >b &&
720 git add b &&
721 git mv b c &&
722 test_tick &&
723 git commit -m "A" &&
725 git checkout B &&
726 test_write_lines 1 2 3 4 5 5.5 6 7 8 9 10 >b &&
727 git add b &&
728 test_tick &&
729 git commit -m "B"
733 test_expect_success '4b: Rename+Mod(A)/Mod(B), change on B subset of A, dirty mods present' '
734 test_setup_4b &&
736 cd 4b &&
738 git checkout A^0 &&
739 echo "File rewritten" >c &&
741 test-tool chmtime --get -3600 c >old-mtime &&
743 GIT_MERGE_VERBOSITY=3 git merge -s recursive B^0 >out 2>err &&
745 test_must_be_empty err &&
747 # Make sure c was NOT updated
748 test-tool chmtime --get c >new-mtime &&
749 test_cmp old-mtime new-mtime &&
751 git ls-files -s >index_files &&
752 test_line_count = 1 index_files &&
754 git rev-parse >actual :0:c &&
755 git rev-parse >expect A:c &&
756 test_cmp expect actual &&
758 git hash-object c >actual &&
759 echo "File rewritten" | git hash-object --stdin >expect &&
760 test_cmp expect actual &&
762 test_must_fail git rev-parse HEAD:b &&
763 test_path_is_missing b
767 test_done