3 # Copyright (c) 2005 Junio C Hamano
6 test_description
='Test rename detection in diff engine.
10 .
"$TEST_DIRECTORY"/diff-lib.sh
12 test_expect_success
'setup' '
30 cat >expected <<-\EOF &&
31 diff --git a/path0 b/path1
36 @@ -8,7 +8,7 @@ Line 7
46 cat >no-rename <<-\EOF
47 diff --git a/path0 b/path0
48 deleted file mode 100644
49 index fdbec44..0000000
68 diff --git a/path1 b/path1
70 index 0000000..752c50e
93 'update-index --add a file.' \
94 'git update-index --add path0'
98 'tree=$(git write-tree) && echo $tree'
100 sed -e 's/line/Line/' <path0
>path1
102 test_expect_success \
103 'renamed and edited the file.' \
104 'git update-index --add --remove path0 path1'
106 test_expect_success \
107 'git diff-index -p -M after rename and editing.' \
108 'git diff-index -p -M $tree >current'
111 test_expect_success \
112 'validate the output.' \
113 'compare_diff_patch current expected'
115 test_expect_success
'test diff.renames=true' '
116 git -c diff.renames=true diff --cached $tree >current &&
117 compare_diff_patch current expected
120 test_expect_success
'test diff.renames=false' '
121 git -c diff.renames=false diff --cached $tree >current &&
122 compare_diff_patch current no-rename
125 test_expect_success
'test diff.renames unset' '
126 git diff --cached $tree >current &&
127 compare_diff_patch current expected
130 test_expect_success
'favour same basenames over different ones' '
131 cp path1 another-path &&
132 git add another-path &&
136 git mv another-path subdir/path1 &&
138 test_i18ngrep "renamed: .*path1 -> subdir/path1" out
141 test_expect_success
'favour same basenames even with minor differences' '
142 git show HEAD:path1 | sed "s/15/16/" > subdir/path1 &&
144 test_i18ngrep "renamed: .*path1 -> subdir/path1" out
147 test_expect_success
'two files with same basename and same content' '
149 mkdir -p dir/A dir/B &&
150 cp path1 dir/A/file &&
151 cp path1 dir/B/file &&
154 git mv dir other-dir &&
156 test_i18ngrep "renamed: .*dir/A/file -> other-dir/A/file" out
159 test_expect_success
'setup for many rename source candidates' '
161 for i in 0 1 2 3 4 5 6 7 8 9;
163 for j in 0 1 2 3 4 5 6 7 8 9;
165 echo "$i$j" >"path$i$j"
170 git commit -m "hundred" &&
171 (cat path1; echo new) >new-path &&
173 git add new-path path1 &&
174 git diff -l 4 -C -C --cached --name-status >actual 2>actual.err &&
175 sed -e "s/^\([CM]\)[0-9]* /\1 /" actual >actual.munged &&
176 cat >expect <<-EOF &&
180 test_cmp expect actual.munged &&
181 grep warning actual.err
184 test_expect_success
'rename pretty print with nothing in common' '
188 git commit -m "create a/b/c" &&
190 git mv a/b/c c/b/a &&
191 git commit -m "a/b/c -> c/b/a" &&
192 git diff -M --summary HEAD^ HEAD >output &&
193 test_i18ngrep " a/b/c => c/b/a " output &&
194 git diff -M --stat HEAD^ HEAD >output &&
195 test_i18ngrep " a/b/c => c/b/a " output
198 test_expect_success
'rename pretty print with common prefix' '
200 git mv c/b/a c/d/e &&
201 git commit -m "c/b/a -> c/d/e" &&
202 git diff -M --summary HEAD^ HEAD >output &&
203 test_i18ngrep " c/{b/a => d/e} " output &&
204 git diff -M --stat HEAD^ HEAD >output &&
205 test_i18ngrep " c/{b/a => d/e} " output
208 test_expect_success
'rename pretty print with common suffix' '
211 git commit -m "c/d/e -> d/e" &&
212 git diff -M --summary HEAD^ HEAD >output &&
213 test_i18ngrep " {c/d => d}/e " output &&
214 git diff -M --stat HEAD^ HEAD >output &&
215 test_i18ngrep " {c/d => d}/e " output
218 test_expect_success
'rename pretty print with common prefix and suffix' '
221 git commit -m "d/e -> d/f/e" &&
222 git diff -M --summary HEAD^ HEAD >output &&
223 test_i18ngrep " d/{ => f}/e " output &&
224 git diff -M --stat HEAD^ HEAD >output &&
225 test_i18ngrep " d/{ => f}/e " output
228 test_expect_success
'rename pretty print common prefix and suffix overlap' '
230 git mv d/f/e d/f/f/e &&
231 git commit -m "d/f/e d/f/f/e" &&
232 git diff -M --summary HEAD^ HEAD >output &&
233 test_i18ngrep " d/f/{ => f}/e " output &&
234 git diff -M --stat HEAD^ HEAD >output &&
235 test_i18ngrep " d/f/{ => f}/e " output
238 test_expect_success
'diff-tree -l0 defaults to a big rename limit, not zero' '
239 test_write_lines line1 line2 line3 >myfile &&
243 test_write_lines line1 line2 line4 >myotherfile &&
245 git add myotherfile &&
248 git diff-tree -M -l0 HEAD HEAD^ >actual &&
249 # Verify that a rename from myotherfile to myfile was detected
250 grep "myotherfile.*myfile" actual