]> git.ipfire.org Git - thirdparty/git.git/blame - t/t6022-merge-rename.sh
t2060: add a test for switch with --orphan and --discard-changes
[thirdparty/git.git] / t / t6022-merge-rename.sh
CommitLineData
b825e6ff
JH
1#!/bin/sh
2
3test_description='Merge-recursive merging renames'
4. ./test-lib.sh
5
af6e1751
EN
6modify () {
7 sed -e "$1" <"$2" >"$2.x" &&
8 mv "$2.x" "$2"
9}
10
42d180dd
EN
11test_expect_success 'setup' '
12 cat >A <<-\EOF &&
13 a aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
14 b bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
15 c cccccccccccccccccccccccccccccccccccccccccccccccc
16 d dddddddddddddddddddddddddddddddddddddddddddddddd
17 e eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
18 f ffffffffffffffffffffffffffffffffffffffffffffffff
19 g gggggggggggggggggggggggggggggggggggggggggggggggg
20 h hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh
21 i iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii
22 j jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj
23 k kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
24 l llllllllllllllllllllllllllllllllllllllllllllllll
25 m mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm
26 n nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn
27 o oooooooooooooooooooooooooooooooooooooooooooooooo
28 EOF
29
30 cat >M <<-\EOF &&
31 A AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
32 B BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
33 C CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
34 D DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD
35 E EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
36 F FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
37 G GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG
38 H HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH
39 I IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII
40 J JJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ
41 K KKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK
42 L LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL
43 M MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
44 N NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN
45 O OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
46 EOF
47
48 git add A M &&
49 git commit -m "initial has A and M" &&
50 git branch white &&
51 git branch red &&
52 git branch blue &&
53 git branch yellow &&
54 git branch change &&
55 git branch change+rename &&
56
57 sed -e "/^g /s/.*/g : master changes a line/" <A >A+ &&
58 mv A+ A &&
59 git commit -a -m "master updates A" &&
60
61 git checkout yellow &&
62 rm -f M &&
63 git commit -a -m "yellow removes M" &&
64
65 git checkout white &&
66 sed -e "/^g /s/.*/g : white changes a line/" <A >B &&
67 sed -e "/^G /s/.*/G : colored branch changes a line/" <M >N &&
68 rm -f A M &&
69 git update-index --add --remove A B M N &&
70 git commit -m "white renames A->B, M->N" &&
71
72 git checkout red &&
73 sed -e "/^g /s/.*/g : red changes a line/" <A >B &&
74 sed -e "/^G /s/.*/G : colored branch changes a line/" <M >N &&
75 rm -f A M &&
76 git update-index --add --remove A B M N &&
77 git commit -m "red renames A->B, M->N" &&
78
79 git checkout blue &&
80 sed -e "/^g /s/.*/g : blue changes a line/" <A >C &&
81 sed -e "/^G /s/.*/G : colored branch changes a line/" <M >N &&
82 rm -f A M &&
83 git update-index --add --remove A C M N &&
84 git commit -m "blue renames A->C, M->N" &&
85
86 git checkout change &&
87 sed -e "/^g /s/.*/g : changed line/" <A >A+ &&
88 mv A+ A &&
89 git commit -q -a -m "changed" &&
90
91 git checkout change+rename &&
92 sed -e "/^g /s/.*/g : changed line/" <A >B &&
93 rm A &&
94 git update-index --add B &&
95 git commit -q -a -m "changed and renamed" &&
96
97 git checkout master
98'
b825e6ff
JH
99
100test_expect_success 'pull renaming branch into unrenaming one' \
101'
cae3aa79
JN
102 git show-branch &&
103 test_expect_code 1 git pull . white &&
104 git ls-files -s &&
105 git ls-files -u B >b.stages &&
106 test_line_count = 3 b.stages &&
107 git ls-files -s N >n.stages &&
108 test_line_count = 1 n.stages &&
b825e6ff
JH
109 sed -ne "/^g/{
110 p
111 q
cae3aa79
JN
112 }" B | grep master &&
113 git diff --exit-code white N
b825e6ff
JH
114'
115
116test_expect_success 'pull renaming branch into another renaming one' \
117'
cae3aa79
JN
118 rm -f B &&
119 git reset --hard &&
120 git checkout red &&
121 test_expect_code 1 git pull . white &&
122 git ls-files -u B >b.stages &&
123 test_line_count = 3 b.stages &&
124 git ls-files -s N >n.stages &&
125 test_line_count = 1 n.stages &&
b825e6ff
JH
126 sed -ne "/^g/{
127 p
128 q
cae3aa79
JN
129 }" B | grep red &&
130 git diff --exit-code white N
b825e6ff
JH
131'
132
133test_expect_success 'pull unrenaming branch into renaming one' \
134'
cae3aa79
JN
135 git reset --hard &&
136 git show-branch &&
137 test_expect_code 1 git pull . master &&
138 git ls-files -u B >b.stages &&
139 test_line_count = 3 b.stages &&
140 git ls-files -s N >n.stages &&
141 test_line_count = 1 n.stages &&
b825e6ff
JH
142 sed -ne "/^g/{
143 p
144 q
cae3aa79
JN
145 }" B | grep red &&
146 git diff --exit-code white N
b825e6ff
JH
147'
148
724b511d
JH
149test_expect_success 'pull conflicting renames' \
150'
cae3aa79
JN
151 git reset --hard &&
152 git show-branch &&
153 test_expect_code 1 git pull . blue &&
154 git ls-files -u A >a.stages &&
155 test_line_count = 1 a.stages &&
156 git ls-files -u B >b.stages &&
157 test_line_count = 1 b.stages &&
158 git ls-files -u C >c.stages &&
159 test_line_count = 1 c.stages &&
160 git ls-files -s N >n.stages &&
161 test_line_count = 1 n.stages &&
724b511d
JH
162 sed -ne "/^g/{
163 p
164 q
cae3aa79
JN
165 }" B | grep red &&
166 git diff --exit-code white N
5b329a5f
JH
167'
168
169test_expect_success 'interference with untracked working tree file' '
cae3aa79
JN
170 git reset --hard &&
171 git show-branch &&
172 echo >A this file should not matter &&
173 test_expect_code 1 git pull . white &&
174 test_path_is_file A
5b329a5f
JH
175'
176
177test_expect_success 'interference with untracked working tree file' '
cae3aa79
JN
178 git reset --hard &&
179 git checkout white &&
180 git show-branch &&
181 rm -f A &&
182 echo >A this file should not matter &&
183 test_expect_code 1 git pull . red &&
184 test_path_is_file A
5b329a5f
JH
185'
186
187test_expect_success 'interference with untracked working tree file' '
cae3aa79
JN
188 git reset --hard &&
189 rm -f A M &&
190 git checkout -f master &&
191 git tag -f anchor &&
192 git show-branch &&
193 git pull . yellow &&
194 test_path_is_missing M &&
5b329a5f
JH
195 git reset --hard anchor
196'
197
198test_expect_success 'updated working tree file should prevent the merge' '
cae3aa79
JN
199 git reset --hard &&
200 rm -f A M &&
201 git checkout -f master &&
202 git tag -f anchor &&
203 git show-branch &&
204 echo >>M one line addition &&
205 cat M >M.saved &&
206 test_expect_code 128 git pull . yellow &&
207 test_cmp M M.saved &&
5b329a5f
JH
208 rm -f M.saved
209'
210
211test_expect_success 'updated working tree file should prevent the merge' '
cae3aa79
JN
212 git reset --hard &&
213 rm -f A M &&
214 git checkout -f master &&
215 git tag -f anchor &&
216 git show-branch &&
217 echo >>M one line addition &&
218 cat M >M.saved &&
219 git update-index M &&
220 test_expect_code 128 git pull . yellow &&
221 test_cmp M M.saved &&
5b329a5f
JH
222 rm -f M.saved
223'
224
225test_expect_success 'interference with untracked working tree file' '
cae3aa79
JN
226 git reset --hard &&
227 rm -f A M &&
228 git checkout -f yellow &&
229 git tag -f anchor &&
230 git show-branch &&
231 echo >M this file should not matter &&
232 git pull . master &&
233 test_path_is_file M &&
234 ! {
235 git ls-files -s |
236 grep M
237 } &&
5b329a5f 238 git reset --hard anchor
724b511d
JH
239'
240
8a359819 241test_expect_success 'merge of identical changes in a renamed file' '
cae3aa79 242 rm -f A M N &&
8a359819
AR
243 git reset --hard &&
244 git checkout change+rename &&
9f697ded
EN
245
246 test-tool chmtime =31337 B &&
247 test-tool chmtime --get B >old-mtime &&
cc04adc2 248 GIT_MERGE_VERBOSITY=3 git merge change >out &&
9f697ded
EN
249
250 test-tool chmtime --get B >new-mtime &&
251 test_cmp old-mtime new-mtime &&
252
8a359819
AR
253 git reset --hard HEAD^ &&
254 git checkout change &&
9f697ded
EN
255
256 test-tool chmtime =-1 M &&
257 test-tool chmtime --get M >old-mtime &&
cc04adc2 258 GIT_MERGE_VERBOSITY=3 git merge change+rename >out &&
9f697ded
EN
259
260 test-tool chmtime --get B >new-mtime &&
261 test $(cat old-mtime) -lt $(cat new-mtime)
8a359819
AR
262'
263
af6e1751
EN
264test_expect_success 'setup for rename + d/f conflicts' '
265 git reset --hard &&
266 git checkout --orphan dir-in-way &&
267 git rm -rf . &&
5b5261ba 268 git clean -fdqx &&
af6e1751
EN
269
270 mkdir sub &&
271 mkdir dir &&
272 printf "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n" >sub/file &&
273 echo foo >dir/file-in-the-way &&
274 git add -A &&
a316b954 275 git commit -m "Common commit" &&
af6e1751
EN
276
277 echo 11 >>sub/file &&
278 echo more >>dir/file-in-the-way &&
279 git add -u &&
280 git commit -m "Commit to merge, with dir in the way" &&
281
282 git checkout -b dir-not-in-way &&
283 git reset --soft HEAD^ &&
284 git rm -rf dir &&
285 git commit -m "Commit to merge, with dir removed" -- dir sub/file &&
286
287 git checkout -b renamed-file-has-no-conflicts dir-in-way~1 &&
288 git rm -rf dir &&
289 git rm sub/file &&
290 printf "1\n2\n3\n4\n5555\n6\n7\n8\n9\n10\n" >dir &&
291 git add dir &&
292 git commit -m "Independent change" &&
293
294 git checkout -b renamed-file-has-conflicts dir-in-way~1 &&
295 git rm -rf dir &&
296 git mv sub/file dir &&
297 echo 12 >>dir &&
298 git add dir &&
299 git commit -m "Conflicting change"
300'
301
af6e1751
EN
302test_expect_success 'Rename+D/F conflict; renamed file merges + dir not in way' '
303 git reset --hard &&
304 git checkout -q renamed-file-has-no-conflicts^0 &&
42d180dd 305
af6e1751 306 git merge --strategy=recursive dir-not-in-way &&
42d180dd 307
af6e1751 308 git diff --quiet &&
b821ca78
EN
309 test_path_is_file dir &&
310 test_write_lines 1 2 3 4 5555 6 7 8 9 10 11 >expected &&
af6e1751
EN
311 test_cmp expected dir
312'
313
4ab9a157 314test_expect_success 'Rename+D/F conflict; renamed file merges but dir in way' '
af6e1751
EN
315 git reset --hard &&
316 rm -rf dir~* &&
317 git checkout -q renamed-file-has-no-conflicts^0 &&
318 test_must_fail git merge --strategy=recursive dir-in-way >output &&
319
55653a68
JX
320 test_i18ngrep "CONFLICT (modify/delete): dir/file-in-the-way" output &&
321 test_i18ngrep "Auto-merging dir" output &&
322 test_i18ngrep "Adding as dir~HEAD instead" output &&
af6e1751 323
51931bf0 324 test 3 -eq "$(git ls-files -u | wc -l)" &&
9f6cea97 325 test 2 -eq "$(git ls-files -u dir/file-in-the-way | wc -l)" &&
af6e1751
EN
326
327 test_must_fail git diff --quiet &&
328 test_must_fail git diff --cached --quiet &&
329
b821ca78
EN
330 test_path_is_file dir/file-in-the-way &&
331 test_path_is_file dir~HEAD &&
af6e1751
EN
332 test_cmp expected dir~HEAD
333'
334
4ab9a157 335test_expect_success 'Same as previous, but merged other way' '
3398f2f5
EN
336 git reset --hard &&
337 rm -rf dir~* &&
338 git checkout -q dir-in-way^0 &&
339 test_must_fail git merge --strategy=recursive renamed-file-has-no-conflicts >output 2>errors &&
340
341 ! grep "error: refusing to lose untracked file at" errors &&
55653a68
JX
342 test_i18ngrep "CONFLICT (modify/delete): dir/file-in-the-way" output &&
343 test_i18ngrep "Auto-merging dir" output &&
344 test_i18ngrep "Adding as dir~renamed-file-has-no-conflicts instead" output &&
3398f2f5 345
51931bf0 346 test 3 -eq "$(git ls-files -u | wc -l)" &&
9f6cea97 347 test 2 -eq "$(git ls-files -u dir/file-in-the-way | wc -l)" &&
3398f2f5
EN
348
349 test_must_fail git diff --quiet &&
350 test_must_fail git diff --cached --quiet &&
351
b821ca78
EN
352 test_path_is_file dir/file-in-the-way &&
353 test_path_is_file dir~renamed-file-has-no-conflicts &&
3398f2f5
EN
354 test_cmp expected dir~renamed-file-has-no-conflicts
355'
356
882fd11a 357test_expect_success 'Rename+D/F conflict; renamed file cannot merge, dir not in way' '
af6e1751
EN
358 git reset --hard &&
359 rm -rf dir~* &&
360 git checkout -q renamed-file-has-conflicts^0 &&
361 test_must_fail git merge --strategy=recursive dir-not-in-way &&
362
9f6cea97
BG
363 test 3 -eq "$(git ls-files -u | wc -l)" &&
364 test 3 -eq "$(git ls-files -u dir | wc -l)" &&
af6e1751
EN
365
366 test_must_fail git diff --quiet &&
367 test_must_fail git diff --cached --quiet &&
368
b821ca78 369 test_path_is_file dir &&
42d180dd
EN
370 cat >expected <<-\EOF &&
371 1
372 2
373 3
374 4
375 5
376 6
377 7
378 8
379 9
380 10
381 <<<<<<< HEAD:dir
382 12
383 =======
384 11
385 >>>>>>> dir-not-in-way:sub/file
386 EOF
af6e1751
EN
387 test_cmp expected dir
388'
389
4ab9a157 390test_expect_success 'Rename+D/F conflict; renamed file cannot merge and dir in the way' '
af6e1751
EN
391 modify s/dir-not-in-way/dir-in-way/ expected &&
392
393 git reset --hard &&
394 rm -rf dir~* &&
395 git checkout -q renamed-file-has-conflicts^0 &&
396 test_must_fail git merge --strategy=recursive dir-in-way &&
397
9f6cea97
BG
398 test 5 -eq "$(git ls-files -u | wc -l)" &&
399 test 3 -eq "$(git ls-files -u dir | grep -v file-in-the-way | wc -l)" &&
400 test 2 -eq "$(git ls-files -u dir/file-in-the-way | wc -l)" &&
af6e1751
EN
401
402 test_must_fail git diff --quiet &&
403 test_must_fail git diff --cached --quiet &&
404
b821ca78
EN
405 test_path_is_file dir/file-in-the-way &&
406 test_path_is_file dir~HEAD &&
af6e1751
EN
407 test_cmp expected dir~HEAD
408'
409
4ab9a157 410test_expect_success 'Same as previous, but merged other way' '
3398f2f5
EN
411 git reset --hard &&
412 rm -rf dir~* &&
413 git checkout -q dir-in-way^0 &&
414 test_must_fail git merge --strategy=recursive renamed-file-has-conflicts &&
415
9f6cea97
BG
416 test 5 -eq "$(git ls-files -u | wc -l)" &&
417 test 3 -eq "$(git ls-files -u dir | grep -v file-in-the-way | wc -l)" &&
418 test 2 -eq "$(git ls-files -u dir/file-in-the-way | wc -l)" &&
3398f2f5
EN
419
420 test_must_fail git diff --quiet &&
421 test_must_fail git diff --cached --quiet &&
422
b821ca78
EN
423 test_path_is_file dir/file-in-the-way &&
424 test_path_is_file dir~renamed-file-has-conflicts &&
42d180dd
EN
425 cat >expected <<-\EOF &&
426 1
427 2
428 3
429 4
430 5
431 6
432 7
433 8
434 9
435 10
436 <<<<<<< HEAD:sub/file
437 11
438 =======
439 12
440 >>>>>>> renamed-file-has-conflicts:dir
441 EOF
3398f2f5
EN
442 test_cmp expected dir~renamed-file-has-conflicts
443'
444
588504b6
EN
445test_expect_success 'setup both rename source and destination involved in D/F conflict' '
446 git reset --hard &&
447 git checkout --orphan rename-dest &&
448 git rm -rf . &&
449 git clean -fdqx &&
450
451 mkdir one &&
452 echo stuff >one/file &&
453 git add -A &&
a316b954 454 git commit -m "Common commit" &&
588504b6
EN
455
456 git mv one/file destdir &&
457 git commit -m "Renamed to destdir" &&
458
459 git checkout -b source-conflict HEAD~1 &&
460 git rm -rf one &&
461 mkdir destdir &&
462 touch one destdir/foo &&
463 git add -A &&
464 git commit -m "Conflicts in the way"
465'
466
a0de2f6b 467test_expect_success 'both rename source and destination involved in D/F conflict' '
588504b6
EN
468 git reset --hard &&
469 rm -rf dir~* &&
470 git checkout -q rename-dest^0 &&
471 test_must_fail git merge --strategy=recursive source-conflict &&
472
9f6cea97 473 test 1 -eq "$(git ls-files -u | wc -l)" &&
588504b6
EN
474
475 test_must_fail git diff --quiet &&
476
b821ca78
EN
477 test_path_is_file destdir/foo &&
478 test_path_is_file one &&
479 test_path_is_file destdir~HEAD &&
588504b6
EN
480 test "stuff" = "$(cat destdir~HEAD)"
481'
482
52304ecd
EN
483test_expect_success 'setup pair rename to parent of other (D/F conflicts)' '
484 git reset --hard &&
485 git checkout --orphan rename-two &&
486 git rm -rf . &&
487 git clean -fdqx &&
488
489 mkdir one &&
490 mkdir two &&
491 echo stuff >one/file &&
492 echo other >two/file &&
493 git add -A &&
a316b954 494 git commit -m "Common commit" &&
52304ecd
EN
495
496 git rm -rf one &&
497 git mv two/file one &&
498 git commit -m "Rename two/file -> one" &&
499
500 git checkout -b rename-one HEAD~1 &&
501 git rm -rf two &&
502 git mv one/file two &&
503 rm -r one &&
504 git commit -m "Rename one/file -> two"
505'
506
a0de2f6b 507test_expect_success 'pair rename to parent of other (D/F conflicts) w/ untracked dir' '
52304ecd
EN
508 git checkout -q rename-one^0 &&
509 mkdir one &&
510 test_must_fail git merge --strategy=recursive rename-two &&
511
9f6cea97
BG
512 test 2 -eq "$(git ls-files -u | wc -l)" &&
513 test 1 -eq "$(git ls-files -u one | wc -l)" &&
514 test 1 -eq "$(git ls-files -u two | wc -l)" &&
52304ecd
EN
515
516 test_must_fail git diff --quiet &&
517
9f6cea97 518 test 4 -eq $(find . | grep -v .git | wc -l) &&
52304ecd 519
b821ca78
EN
520 test_path_is_dir one &&
521 test_path_is_file one~rename-two &&
522 test_path_is_file two &&
52304ecd
EN
523 test "other" = $(cat one~rename-two) &&
524 test "stuff" = $(cat two)
525'
526
527test_expect_success 'pair rename to parent of other (D/F conflicts) w/ clean start' '
528 git reset --hard &&
529 git clean -fdqx &&
530 test_must_fail git merge --strategy=recursive rename-two &&
531
9f6cea97
BG
532 test 2 -eq "$(git ls-files -u | wc -l)" &&
533 test 1 -eq "$(git ls-files -u one | wc -l)" &&
534 test 1 -eq "$(git ls-files -u two | wc -l)" &&
52304ecd
EN
535
536 test_must_fail git diff --quiet &&
537
9f6cea97 538 test 3 -eq $(find . | grep -v .git | wc -l) &&
52304ecd 539
b821ca78
EN
540 test_path_is_file one &&
541 test_path_is_file two &&
52304ecd
EN
542 test "other" = $(cat one) &&
543 test "stuff" = $(cat two)
544'
545
70798348
EN
546test_expect_success 'setup rename of one file to two, with directories in the way' '
547 git reset --hard &&
548 git checkout --orphan first-rename &&
549 git rm -rf . &&
550 git clean -fdqx &&
551
552 echo stuff >original &&
553 git add -A &&
a316b954 554 git commit -m "Common commit" &&
70798348
EN
555
556 mkdir two &&
557 >two/file &&
558 git add two/file &&
559 git mv original one &&
560 git commit -m "Put two/file in the way, rename to one" &&
561
562 git checkout -b second-rename HEAD~1 &&
563 mkdir one &&
564 >one/file &&
565 git add one/file &&
566 git mv original two &&
567 git commit -m "Put one/file in the way, rename to two"
568'
569
07413c5a 570test_expect_success 'check handling of differently renamed file with D/F conflicts' '
70798348
EN
571 git checkout -q first-rename^0 &&
572 test_must_fail git merge --strategy=recursive second-rename &&
573
9f6cea97
BG
574 test 5 -eq "$(git ls-files -s | wc -l)" &&
575 test 3 -eq "$(git ls-files -u | wc -l)" &&
576 test 1 -eq "$(git ls-files -u one | wc -l)" &&
577 test 1 -eq "$(git ls-files -u two | wc -l)" &&
578 test 1 -eq "$(git ls-files -u original | wc -l)" &&
579 test 2 -eq "$(git ls-files -o | wc -l)" &&
70798348 580
b821ca78
EN
581 test_path_is_file one/file &&
582 test_path_is_file two/file &&
583 test_path_is_file one~HEAD &&
584 test_path_is_file two~second-rename &&
585 test_path_is_missing original
70798348
EN
586'
587
588test_expect_success 'setup rename one file to two; directories moving out of the way' '
589 git reset --hard &&
590 git checkout --orphan first-rename-redo &&
591 git rm -rf . &&
592 git clean -fdqx &&
593
594 echo stuff >original &&
595 mkdir one two &&
596 touch one/file two/file &&
597 git add -A &&
a316b954 598 git commit -m "Common commit" &&
70798348
EN
599
600 git rm -rf one &&
601 git mv original one &&
602 git commit -m "Rename to one" &&
603
604 git checkout -b second-rename-redo HEAD~1 &&
605 git rm -rf two &&
606 git mv original two &&
607 git commit -m "Rename to two"
608'
609
2adc7dcc 610test_expect_success 'check handling of differently renamed file with D/F conflicts' '
70798348
EN
611 git checkout -q first-rename-redo^0 &&
612 test_must_fail git merge --strategy=recursive second-rename-redo &&
613
9f6cea97
BG
614 test 3 -eq "$(git ls-files -u | wc -l)" &&
615 test 1 -eq "$(git ls-files -u one | wc -l)" &&
616 test 1 -eq "$(git ls-files -u two | wc -l)" &&
617 test 1 -eq "$(git ls-files -u original | wc -l)" &&
618 test 0 -eq "$(git ls-files -o | wc -l)" &&
70798348 619
b821ca78
EN
620 test_path_is_file one &&
621 test_path_is_file two &&
622 test_path_is_missing original
70798348
EN
623'
624
f1a0f457
EN
625test_expect_success 'setup avoid unnecessary update, normal rename' '
626 git reset --hard &&
627 git checkout --orphan avoid-unnecessary-update-1 &&
628 git rm -rf . &&
629 git clean -fdqx &&
630
631 printf "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n" >original &&
632 git add -A &&
a316b954 633 git commit -m "Common commit" &&
f1a0f457
EN
634
635 git mv original rename &&
636 echo 11 >>rename &&
637 git add -u &&
638 git commit -m "Renamed and modified" &&
639
640 git checkout -b merge-branch-1 HEAD~1 &&
641 echo "random content" >random-file &&
642 git add -A &&
643 git commit -m "Random, unrelated changes"
644'
645
5b448b85 646test_expect_success 'avoid unnecessary update, normal rename' '
f1a0f457 647 git checkout -q avoid-unnecessary-update-1^0 &&
deb9845a 648 test-tool chmtime --get =1000000000 rename >expect &&
f1a0f457 649 git merge merge-branch-1 &&
deb9845a 650 test-tool chmtime --get rename >actual &&
f1a0f457
EN
651 test_cmp expect actual # "rename" should have stayed intact
652'
653
654test_expect_success 'setup to test avoiding unnecessary update, with D/F conflict' '
655 git reset --hard &&
656 git checkout --orphan avoid-unnecessary-update-2 &&
657 git rm -rf . &&
658 git clean -fdqx &&
659
660 mkdir df &&
661 printf "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n" >df/file &&
662 git add -A &&
a316b954 663 git commit -m "Common commit" &&
f1a0f457
EN
664
665 git mv df/file temp &&
666 rm -rf df &&
667 git mv temp df &&
668 echo 11 >>df &&
669 git add -u &&
670 git commit -m "Renamed and modified" &&
671
672 git checkout -b merge-branch-2 HEAD~1 &&
673 >unrelated-change &&
674 git add unrelated-change &&
675 git commit -m "Only unrelated changes"
676'
677
5b448b85 678test_expect_success 'avoid unnecessary update, with D/F conflict' '
f1a0f457 679 git checkout -q avoid-unnecessary-update-2^0 &&
deb9845a 680 test-tool chmtime --get =1000000000 df >expect &&
f1a0f457 681 git merge merge-branch-2 &&
deb9845a 682 test-tool chmtime --get df >actual &&
f1a0f457
EN
683 test_cmp expect actual # "df" should have stayed intact
684'
685
3e333a61
EN
686test_expect_success 'setup avoid unnecessary update, dir->(file,nothing)' '
687 git rm -rf . &&
688 git clean -fdqx &&
689 rm -rf .git &&
690 git init &&
691
692 >irrelevant &&
693 mkdir df &&
694 >df/file &&
695 git add -A &&
696 git commit -mA &&
697
99094a7a 698 git checkout -b side &&
3e333a61
EN
699 git rm -rf df &&
700 git commit -mB &&
701
702 git checkout master &&
703 git rm -rf df &&
704 echo bla >df &&
705 git add -A &&
706 git commit -m "Add a newfile"
707'
708
35a74abf 709test_expect_success 'avoid unnecessary update, dir->(file,nothing)' '
3e333a61 710 git checkout -q master^0 &&
deb9845a 711 test-tool chmtime --get =1000000000 df >expect &&
3e333a61 712 git merge side &&
deb9845a 713 test-tool chmtime --get df >actual &&
3e333a61
EN
714 test_cmp expect actual # "df" should have stayed intact
715'
716
717test_expect_success 'setup avoid unnecessary update, modify/delete' '
718 git rm -rf . &&
719 git clean -fdqx &&
720 rm -rf .git &&
721 git init &&
722
723 >irrelevant &&
724 >file &&
725 git add -A &&
726 git commit -mA &&
727
99094a7a 728 git checkout -b side &&
3e333a61
EN
729 git rm -f file &&
730 git commit -m "Delete file" &&
731
732 git checkout master &&
733 echo bla >file &&
734 git add -A &&
735 git commit -m "Modify file"
736'
737
35a74abf 738test_expect_success 'avoid unnecessary update, modify/delete' '
3e333a61 739 git checkout -q master^0 &&
deb9845a 740 test-tool chmtime --get =1000000000 file >expect &&
3e333a61 741 test_must_fail git merge side &&
deb9845a 742 test-tool chmtime --get file >actual &&
3e333a61
EN
743 test_cmp expect actual # "file" should have stayed intact
744'
745
746test_expect_success 'setup avoid unnecessary update, rename/add-dest' '
747 git rm -rf . &&
748 git clean -fdqx &&
749 rm -rf .git &&
750 git init &&
751
752 printf "1\n2\n3\n4\n5\n6\n7\n8\n" >file &&
753 git add -A &&
754 git commit -mA &&
755
99094a7a 756 git checkout -b side &&
3e333a61
EN
757 cp file newfile &&
758 git add -A &&
759 git commit -m "Add file copy" &&
760
761 git checkout master &&
762 git mv file newfile &&
763 git commit -m "Rename file"
764'
765
35a74abf 766test_expect_success 'avoid unnecessary update, rename/add-dest' '
3e333a61 767 git checkout -q master^0 &&
deb9845a 768 test-tool chmtime --get =1000000000 newfile >expect &&
3e333a61 769 git merge side &&
deb9845a 770 test-tool chmtime --get newfile >actual &&
3e333a61
EN
771 test_cmp expect actual # "file" should have stayed intact
772'
773
7dd9c304
EN
774test_expect_success 'setup merge of rename + small change' '
775 git reset --hard &&
776 git checkout --orphan rename-plus-small-change &&
777 git rm -rf . &&
778 git clean -fdqx &&
779
780 echo ORIGINAL >file &&
781 git add file &&
782
783 test_tick &&
784 git commit -m Initial &&
785 git checkout -b rename_branch &&
786 git mv file renamed_file &&
787 git commit -m Rename &&
788 git checkout rename-plus-small-change &&
789 echo NEW-VERSION >file &&
790 git commit -a -m Reformat
791'
792
793test_expect_success 'merge rename + small change' '
794 git merge rename_branch &&
795
796 test 1 -eq $(git ls-files -s | wc -l) &&
797 test 0 -eq $(git ls-files -o | wc -l) &&
798 test $(git rev-parse HEAD:renamed_file) = $(git rev-parse HEAD~1:file)
799'
800
3c217c07
EN
801test_expect_success 'setup for use of extended merge markers' '
802 git rm -rf . &&
803 git clean -fdqx &&
804 rm -rf .git &&
805 git init &&
806
807 printf "1\n2\n3\n4\n5\n6\n7\n8\n" >original_file &&
808 git add original_file &&
809 git commit -mA &&
810
811 git checkout -b rename &&
812 echo 9 >>original_file &&
813 git add original_file &&
814 git mv original_file renamed_file &&
815 git commit -mB &&
816
817 git checkout master &&
818 echo 8.5 >>original_file &&
819 git add original_file &&
820 git commit -mC
821'
822
3c217c07
EN
823test_expect_success 'merge master into rename has correct extended markers' '
824 git checkout rename^0 &&
825 test_must_fail git merge -s recursive master^0 &&
42d180dd
EN
826
827 cat >expected <<-\EOF &&
828 1
829 2
830 3
831 4
832 5
833 6
834 7
835 8
836 <<<<<<< HEAD:renamed_file
837 9
838 =======
839 8.5
840 >>>>>>> master^0:original_file
841 EOF
3c217c07
EN
842 test_cmp expected renamed_file
843'
844
3c217c07
EN
845test_expect_success 'merge rename into master has correct extended markers' '
846 git reset --hard &&
847 git checkout master^0 &&
848 test_must_fail git merge -s recursive rename^0 &&
42d180dd
EN
849
850 cat >expected <<-\EOF &&
851 1
852 2
853 3
854 4
855 5
856 6
857 7
858 8
859 <<<<<<< HEAD:original_file
860 8.5
861 =======
862 9
863 >>>>>>> rename^0:renamed_file
864 EOF
3c217c07
EN
865 test_cmp expected renamed_file
866'
867
3f680ff0
EN
868test_expect_success 'setup spurious "refusing to lose untracked" message' '
869 git rm -rf . &&
870 git clean -fdqx &&
871 rm -rf .git &&
872 git init &&
873
874 > irrelevant_file &&
875 printf "1\n2\n3\n4\n5\n6\n7\n8\n" >original_file &&
876 git add irrelevant_file original_file &&
877 git commit -mA &&
878
879 git checkout -b rename &&
880 git mv original_file renamed_file &&
881 git commit -mB &&
882
883 git checkout master &&
884 git rm original_file &&
885 git commit -mC
886'
887
f53d3977 888test_expect_success 'no spurious "refusing to lose untracked" message' '
3f680ff0
EN
889 git checkout master^0 &&
890 test_must_fail git merge rename^0 2>errors.txt &&
891 ! grep "refusing to lose untracked file" errors.txt
892'
893
4f7cb99a
JK
894test_expect_success 'do not follow renames for empty files' '
895 git checkout -f -b empty-base &&
896 >empty1 &&
897 git add empty1 &&
898 git commit -m base &&
899 echo content >empty1 &&
900 git add empty1 &&
901 git commit -m fill &&
902 git checkout -b empty-topic HEAD^ &&
903 git mv empty1 empty2 &&
904 git commit -m rename &&
905 test_must_fail git merge empty-base &&
d3c6751b 906 test_must_be_empty empty2
4f7cb99a
JK
907'
908
b825e6ff 909test_done