3 # Copyright (c) 2005 Junio C Hamano
6 test_description
='Test rename detection in diff engine.
10 .
"$TEST_DIRECTORY"/diff-lib.sh
30 'update-index --add a file.' \
31 'git update-index --add path0'
35 'tree=$(git write-tree) && echo $tree'
37 sed -e 's/line/Line/' <path0
>path1
40 'renamed and edited the file.' \
41 'git update-index --add --remove path0 path1'
44 'git diff-index -p -M after rename and editing.' \
45 'git diff-index -p -M $tree >current'
47 diff --git a
/path0 b
/path1
52 @@
-8,7 +8,7 @@ Line
7
64 'validate the output.' \
65 'compare_diff_patch current expected'
67 test_expect_success
'favour same basenames over different ones' '
68 cp path1 another-path &&
69 git add another-path &&
73 git mv another-path subdir/path1 &&
74 git status | test_i18ngrep "renamed: .*path1 -> subdir/path1"'
76 test_expect_success
'favour same basenames even with minor differences' '
77 git show HEAD:path1 | sed "s/15/16/" > subdir/path1 &&
78 git status | test_i18ngrep "renamed: .*path1 -> subdir/path1"'
80 test_expect_success
'setup for many rename source candidates' '
82 for i in 0 1 2 3 4 5 6 7 8 9;
84 for j in 0 1 2 3 4 5 6 7 8 9;
86 echo "$i$j" >"path$i$j"
91 git commit -m "hundred" &&
92 (cat path1; echo new) >new-path &&
94 git add new-path path1 &&
95 git diff -l 4 -C -C --cached --name-status >actual 2>actual.err &&
96 sed -e "s/^\([CM]\)[0-9]* /\1 /" actual >actual.munged &&
101 test_cmp expect actual.munged &&
102 grep warning actual.err
105 test_expect_success
'rename pretty print with nothing in common' '
109 git commit -m "create a/b/c" &&
111 git mv a/b/c c/b/a &&
112 git commit -m "a/b/c -> c/b/a" &&
113 git diff -M --summary HEAD^ HEAD >output &&
114 test_i18ngrep " a/b/c => c/b/a " output &&
115 git diff -M --stat HEAD^ HEAD >output &&
116 test_i18ngrep " a/b/c => c/b/a " output
119 test_expect_success
'rename pretty print with common prefix' '
121 git mv c/b/a c/d/e &&
122 git commit -m "c/b/a -> c/d/e" &&
123 git diff -M --summary HEAD^ HEAD >output &&
124 test_i18ngrep " c/{b/a => d/e} " output &&
125 git diff -M --stat HEAD^ HEAD >output &&
126 test_i18ngrep " c/{b/a => d/e} " output
129 test_expect_success
'rename pretty print with common suffix' '
132 git commit -m "c/d/e -> d/e" &&
133 git diff -M --summary HEAD^ HEAD >output &&
134 test_i18ngrep " {c/d => d}/e " output &&
135 git diff -M --stat HEAD^ HEAD >output &&
136 test_i18ngrep " {c/d => d}/e " output
139 test_expect_success
'rename pretty print with common prefix and suffix' '
142 git commit -m "d/e -> d/f/e" &&
143 git diff -M --summary HEAD^ HEAD >output &&
144 test_i18ngrep " d/{ => f}/e " output &&
145 git diff -M --stat HEAD^ HEAD >output &&
146 test_i18ngrep " d/{ => f}/e " output
149 test_expect_success
'rename pretty print common prefix and suffix overlap' '
151 git mv d/f/e d/f/f/e &&
152 git commit -m "d/f/e d/f/f/e" &&
153 git diff -M --summary HEAD^ HEAD >output &&
154 test_i18ngrep " d/f/{ => f}/e " output &&
155 git diff -M --stat HEAD^ HEAD >output &&
156 test_i18ngrep " d/f/{ => f}/e " output