]> git.ipfire.org Git - thirdparty/git.git/blob - t/t4015-diff-whitespace.sh
test local clone by copying
[thirdparty/git.git] / t / t4015-diff-whitespace.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2006 Johannes E. Schindelin
4 #
5
6 test_description='Test special whitespace in diff engine.
7
8 '
9 . ./test-lib.sh
10 . "$TEST_DIRECTORY"/diff-lib.sh
11
12 # Ray Lehtiniemi's example
13
14 cat << EOF > x
15 do {
16 nothing;
17 } while (0);
18 EOF
19
20 git update-index --add x
21
22 cat << EOF > x
23 do
24 {
25 nothing;
26 }
27 while (0);
28 EOF
29
30 cat << EOF > expect
31 diff --git a/x b/x
32 index adf3937..6edc172 100644
33 --- a/x
34 +++ b/x
35 @@ -1,3 +1,5 @@
36 -do {
37 +do
38 +{
39 nothing;
40 -} while (0);
41 +}
42 +while (0);
43 EOF
44
45 git diff > out
46 test_expect_success "Ray's example without options" 'test_cmp expect out'
47
48 git diff -w > out
49 test_expect_success "Ray's example with -w" 'test_cmp expect out'
50
51 git diff -b > out
52 test_expect_success "Ray's example with -b" 'test_cmp expect out'
53
54 tr 'Q' '\015' << EOF > x
55 whitespace at beginning
56 whitespace change
57 whitespace in the middle
58 whitespace at end
59 unchanged line
60 CR at endQ
61 EOF
62
63 git update-index x
64
65 tr '_' ' ' << EOF > x
66 whitespace at beginning
67 whitespace change
68 white space in the middle
69 whitespace at end__
70 unchanged line
71 CR at end
72 EOF
73
74 tr 'Q_' '\015 ' << EOF > expect
75 diff --git a/x b/x
76 index d99af23..8b32fb5 100644
77 --- a/x
78 +++ b/x
79 @@ -1,6 +1,6 @@
80 -whitespace at beginning
81 -whitespace change
82 -whitespace in the middle
83 -whitespace at end
84 + whitespace at beginning
85 +whitespace change
86 +white space in the middle
87 +whitespace at end__
88 unchanged line
89 -CR at endQ
90 +CR at end
91 EOF
92 git diff > out
93 test_expect_success 'another test, without options' 'test_cmp expect out'
94
95 cat << EOF > expect
96 diff --git a/x b/x
97 index d99af23..8b32fb5 100644
98 EOF
99 git diff -w > out
100 test_expect_success 'another test, with -w' 'test_cmp expect out'
101 git diff -w -b > out
102 test_expect_success 'another test, with -w -b' 'test_cmp expect out'
103 git diff -w --ignore-space-at-eol > out
104 test_expect_success 'another test, with -w --ignore-space-at-eol' 'test_cmp expect out'
105 git diff -w -b --ignore-space-at-eol > out
106 test_expect_success 'another test, with -w -b --ignore-space-at-eol' 'test_cmp expect out'
107
108 tr 'Q' '\015' << EOF > expect
109 diff --git a/x b/x
110 index d99af23..8b32fb5 100644
111 --- a/x
112 +++ b/x
113 @@ -1,6 +1,6 @@
114 -whitespace at beginning
115 + whitespace at beginning
116 whitespace change
117 -whitespace in the middle
118 +white space in the middle
119 whitespace at end
120 unchanged line
121 CR at endQ
122 EOF
123 git diff -b > out
124 test_expect_success 'another test, with -b' 'test_cmp expect out'
125 git diff -b --ignore-space-at-eol > out
126 test_expect_success 'another test, with -b --ignore-space-at-eol' 'test_cmp expect out'
127
128 tr 'Q' '\015' << EOF > expect
129 diff --git a/x b/x
130 index d99af23..8b32fb5 100644
131 --- a/x
132 +++ b/x
133 @@ -1,6 +1,6 @@
134 -whitespace at beginning
135 -whitespace change
136 -whitespace in the middle
137 + whitespace at beginning
138 +whitespace change
139 +white space in the middle
140 whitespace at end
141 unchanged line
142 CR at endQ
143 EOF
144 git diff --ignore-space-at-eol > out
145 test_expect_success 'another test, with --ignore-space-at-eol' 'test_cmp expect out'
146
147 test_expect_success 'check mixed spaces and tabs in indent' '
148
149 # This is indented with SP HT SP.
150 echo " foo();" > x &&
151 git diff --check | grep "space before tab in indent"
152
153 '
154
155 test_expect_success 'check mixed tabs and spaces in indent' '
156
157 # This is indented with HT SP HT.
158 echo " foo();" > x &&
159 git diff --check | grep "space before tab in indent"
160
161 '
162
163 test_expect_success 'check with no whitespace errors' '
164
165 git commit -m "snapshot" &&
166 echo "foo();" > x &&
167 git diff --check
168
169 '
170
171 test_expect_success 'check with trailing whitespace' '
172
173 echo "foo(); " > x &&
174 test_must_fail git diff --check
175
176 '
177
178 test_expect_success 'check with space before tab in indent' '
179
180 # indent has space followed by hard tab
181 echo " foo();" > x &&
182 test_must_fail git diff --check
183
184 '
185
186 test_expect_success '--check and --exit-code are not exclusive' '
187
188 git checkout x &&
189 git diff --check --exit-code
190
191 '
192
193 test_expect_success '--check and --quiet are not exclusive' '
194
195 git diff --check --quiet
196
197 '
198
199 test_expect_success 'check staged with no whitespace errors' '
200
201 echo "foo();" > x &&
202 git add x &&
203 git diff --cached --check
204
205 '
206
207 test_expect_success 'check staged with trailing whitespace' '
208
209 echo "foo(); " > x &&
210 git add x &&
211 test_must_fail git diff --cached --check
212
213 '
214
215 test_expect_success 'check staged with space before tab in indent' '
216
217 # indent has space followed by hard tab
218 echo " foo();" > x &&
219 git add x &&
220 test_must_fail git diff --cached --check
221
222 '
223
224 test_expect_success 'check with no whitespace errors (diff-index)' '
225
226 echo "foo();" > x &&
227 git add x &&
228 git diff-index --check HEAD
229
230 '
231
232 test_expect_success 'check with trailing whitespace (diff-index)' '
233
234 echo "foo(); " > x &&
235 git add x &&
236 test_must_fail git diff-index --check HEAD
237
238 '
239
240 test_expect_success 'check with space before tab in indent (diff-index)' '
241
242 # indent has space followed by hard tab
243 echo " foo();" > x &&
244 git add x &&
245 test_must_fail git diff-index --check HEAD
246
247 '
248
249 test_expect_success 'check staged with no whitespace errors (diff-index)' '
250
251 echo "foo();" > x &&
252 git add x &&
253 git diff-index --cached --check HEAD
254
255 '
256
257 test_expect_success 'check staged with trailing whitespace (diff-index)' '
258
259 echo "foo(); " > x &&
260 git add x &&
261 test_must_fail git diff-index --cached --check HEAD
262
263 '
264
265 test_expect_success 'check staged with space before tab in indent (diff-index)' '
266
267 # indent has space followed by hard tab
268 echo " foo();" > x &&
269 git add x &&
270 test_must_fail git diff-index --cached --check HEAD
271
272 '
273
274 test_expect_success 'check with no whitespace errors (diff-tree)' '
275
276 echo "foo();" > x &&
277 git commit -m "new commit" x &&
278 git diff-tree --check HEAD^ HEAD
279
280 '
281
282 test_expect_success 'check with trailing whitespace (diff-tree)' '
283
284 echo "foo(); " > x &&
285 git commit -m "another commit" x &&
286 test_must_fail git diff-tree --check HEAD^ HEAD
287
288 '
289
290 test_expect_success 'check with space before tab in indent (diff-tree)' '
291
292 # indent has space followed by hard tab
293 echo " foo();" > x &&
294 git commit -m "yet another" x &&
295 test_must_fail git diff-tree --check HEAD^ HEAD
296
297 '
298
299 test_expect_success 'check trailing whitespace (trailing-space: off)' '
300
301 git config core.whitespace "-trailing-space" &&
302 echo "foo (); " > x &&
303 git diff --check
304
305 '
306
307 test_expect_success 'check trailing whitespace (trailing-space: on)' '
308
309 git config core.whitespace "trailing-space" &&
310 echo "foo (); " > x &&
311 test_must_fail git diff --check
312
313 '
314
315 test_expect_success 'check space before tab in indent (space-before-tab: off)' '
316
317 # indent contains space followed by HT
318 git config core.whitespace "-space-before-tab" &&
319 echo " foo ();" > x &&
320 git diff --check
321
322 '
323
324 test_expect_success 'check space before tab in indent (space-before-tab: on)' '
325
326 # indent contains space followed by HT
327 git config core.whitespace "space-before-tab" &&
328 echo " foo (); " > x &&
329 test_must_fail git diff --check
330
331 '
332
333 test_expect_success 'check spaces as indentation (indent-with-non-tab: off)' '
334
335 git config core.whitespace "-indent-with-non-tab"
336 echo " foo ();" > x &&
337 git diff --check
338
339 '
340
341 test_expect_success 'check spaces as indentation (indent-with-non-tab: on)' '
342
343 git config core.whitespace "indent-with-non-tab" &&
344 echo " foo ();" > x &&
345 test_must_fail git diff --check
346
347 '
348
349 test_expect_success 'check tabs and spaces as indentation (indent-with-non-tab: on)' '
350
351 git config core.whitespace "indent-with-non-tab" &&
352 echo " foo ();" > x &&
353 test_must_fail git diff --check
354
355 '
356
357 test_expect_success 'line numbers in --check output are correct' '
358
359 echo "" > x &&
360 echo "foo(); " >> x &&
361 git diff --check | grep "x:2:"
362
363 '
364
365 test_expect_success 'checkdiff detects trailing blank lines' '
366 echo "foo();" >x &&
367 echo "" >>x &&
368 git diff --check | grep "ends with blank"
369 '
370
371 test_expect_success 'checkdiff allows new blank lines' '
372 git checkout x &&
373 mv x y &&
374 (
375 echo "/* This is new */" &&
376 echo "" &&
377 cat y
378 ) >x &&
379 git diff --check
380 '
381
382 test_expect_success 'combined diff with autocrlf conversion' '
383
384 git reset --hard &&
385 echo >x hello &&
386 git commit -m "one side" x &&
387 git checkout HEAD^ &&
388 echo >x goodbye &&
389 git commit -m "the other side" x &&
390 git config core.autocrlf true &&
391 test_must_fail git merge master &&
392
393 git diff | sed -e "1,/^@@@/d" >actual &&
394 ! grep "^-" actual
395
396 '
397
398 test_done