2007-11-03 01:46:55 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='diff whitespace error detection'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
test_expect_success setup '
|
|
|
|
|
|
|
|
git config diff.color.whitespace "blue reverse" &&
|
|
|
|
>F &&
|
|
|
|
git add F &&
|
|
|
|
echo " Eight SP indent" >>F &&
|
|
|
|
echo " HT and SP indent" >>F &&
|
|
|
|
echo "With trailing SP " >>F &&
|
2008-01-15 09:59:05 +01:00
|
|
|
echo "Carriage ReturnQ" | tr Q "\015" >>F &&
|
2008-08-12 07:15:28 +02:00
|
|
|
echo "No problem" >>F &&
|
|
|
|
echo >>F
|
2007-11-03 01:46:55 +01:00
|
|
|
|
|
|
|
'
|
|
|
|
|
|
|
|
blue_grep='7;34m' ;# ESC [ 7 ; 3 4 m
|
|
|
|
|
2009-12-26 22:53:17 +01:00
|
|
|
printf "\033[%s" "$blue_grep" >check-grep
|
|
|
|
if (grep "$blue_grep" <check-grep | grep "$blue_grep") >/dev/null 2>&1
|
|
|
|
then
|
|
|
|
grep_a=grep
|
|
|
|
elif (grep -a "$blue_grep" <check-grep | grep -a "$blue_grep") >/dev/null 2>&1
|
|
|
|
then
|
|
|
|
grep_a='grep -a'
|
|
|
|
else
|
|
|
|
grep_a=grep ;# expected to fail...
|
|
|
|
fi
|
|
|
|
rm -f check-grep
|
|
|
|
|
|
|
|
prepare_output () {
|
|
|
|
git diff --color >output
|
|
|
|
$grep_a "$blue_grep" output >error
|
|
|
|
$grep_a -v "$blue_grep" output >normal
|
|
|
|
}
|
|
|
|
|
2007-11-03 01:46:55 +01:00
|
|
|
test_expect_success default '
|
|
|
|
|
2009-12-26 22:53:17 +01:00
|
|
|
prepare_output
|
2007-11-03 01:46:55 +01:00
|
|
|
|
|
|
|
grep Eight normal >/dev/null &&
|
|
|
|
grep HT error >/dev/null &&
|
|
|
|
grep With error >/dev/null &&
|
2008-01-15 09:59:05 +01:00
|
|
|
grep Return error >/dev/null &&
|
2007-11-03 01:46:55 +01:00
|
|
|
grep No normal >/dev/null
|
|
|
|
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'without -trail' '
|
|
|
|
|
|
|
|
git config core.whitespace -trail
|
2009-12-26 22:53:17 +01:00
|
|
|
prepare_output
|
2007-11-03 01:46:55 +01:00
|
|
|
|
|
|
|
grep Eight normal >/dev/null &&
|
|
|
|
grep HT error >/dev/null &&
|
|
|
|
grep With normal >/dev/null &&
|
2008-01-15 09:59:05 +01:00
|
|
|
grep Return normal >/dev/null &&
|
2007-11-03 01:46:55 +01:00
|
|
|
grep No normal >/dev/null
|
|
|
|
|
|
|
|
'
|
|
|
|
|
2007-12-06 09:14:14 +01:00
|
|
|
test_expect_success 'without -trail (attribute)' '
|
|
|
|
|
|
|
|
git config --unset core.whitespace
|
|
|
|
echo "F whitespace=-trail" >.gitattributes
|
2009-12-26 22:53:17 +01:00
|
|
|
prepare_output
|
2007-12-06 09:14:14 +01:00
|
|
|
|
|
|
|
grep Eight normal >/dev/null &&
|
|
|
|
grep HT error >/dev/null &&
|
|
|
|
grep With normal >/dev/null &&
|
2008-01-15 09:59:05 +01:00
|
|
|
grep Return normal >/dev/null &&
|
2007-12-06 09:14:14 +01:00
|
|
|
grep No normal >/dev/null
|
|
|
|
|
|
|
|
'
|
|
|
|
|
2007-11-03 01:46:55 +01:00
|
|
|
test_expect_success 'without -space' '
|
|
|
|
|
2007-12-06 09:14:14 +01:00
|
|
|
rm -f .gitattributes
|
2007-11-03 01:46:55 +01:00
|
|
|
git config core.whitespace -space
|
2009-12-26 22:53:17 +01:00
|
|
|
prepare_output
|
2007-11-03 01:46:55 +01:00
|
|
|
|
|
|
|
grep Eight normal >/dev/null &&
|
|
|
|
grep HT normal >/dev/null &&
|
|
|
|
grep With error >/dev/null &&
|
2008-01-15 09:59:05 +01:00
|
|
|
grep Return error >/dev/null &&
|
2007-11-03 01:46:55 +01:00
|
|
|
grep No normal >/dev/null
|
|
|
|
|
|
|
|
'
|
|
|
|
|
2007-12-06 09:14:14 +01:00
|
|
|
test_expect_success 'without -space (attribute)' '
|
|
|
|
|
|
|
|
git config --unset core.whitespace
|
|
|
|
echo "F whitespace=-space" >.gitattributes
|
2009-12-26 22:53:17 +01:00
|
|
|
prepare_output
|
2007-12-06 09:14:14 +01:00
|
|
|
|
|
|
|
grep Eight normal >/dev/null &&
|
|
|
|
grep HT normal >/dev/null &&
|
|
|
|
grep With error >/dev/null &&
|
2008-01-15 09:59:05 +01:00
|
|
|
grep Return error >/dev/null &&
|
2007-12-06 09:14:14 +01:00
|
|
|
grep No normal >/dev/null
|
|
|
|
|
|
|
|
'
|
|
|
|
|
2007-11-03 01:46:55 +01:00
|
|
|
test_expect_success 'with indent-non-tab only' '
|
|
|
|
|
2007-12-06 09:14:14 +01:00
|
|
|
rm -f .gitattributes
|
2007-11-03 01:46:55 +01:00
|
|
|
git config core.whitespace indent,-trailing,-space
|
2009-12-26 22:53:17 +01:00
|
|
|
prepare_output
|
2007-11-03 01:46:55 +01:00
|
|
|
|
|
|
|
grep Eight error >/dev/null &&
|
|
|
|
grep HT normal >/dev/null &&
|
|
|
|
grep With normal >/dev/null &&
|
2008-01-15 09:59:05 +01:00
|
|
|
grep Return normal >/dev/null &&
|
2007-11-03 01:46:55 +01:00
|
|
|
grep No normal >/dev/null
|
|
|
|
|
|
|
|
'
|
|
|
|
|
2007-12-06 09:14:14 +01:00
|
|
|
test_expect_success 'with indent-non-tab only (attribute)' '
|
|
|
|
|
|
|
|
git config --unset core.whitespace
|
|
|
|
echo "F whitespace=indent,-trailing,-space" >.gitattributes
|
2009-12-26 22:53:17 +01:00
|
|
|
prepare_output
|
2007-12-06 09:14:14 +01:00
|
|
|
|
|
|
|
grep Eight error >/dev/null &&
|
|
|
|
grep HT normal >/dev/null &&
|
|
|
|
grep With normal >/dev/null &&
|
2008-01-15 09:59:05 +01:00
|
|
|
grep Return normal >/dev/null &&
|
|
|
|
grep No normal >/dev/null
|
|
|
|
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'with cr-at-eol' '
|
|
|
|
|
|
|
|
rm -f .gitattributes
|
|
|
|
git config core.whitespace cr-at-eol
|
2009-12-26 22:53:17 +01:00
|
|
|
prepare_output
|
2008-01-15 09:59:05 +01:00
|
|
|
|
|
|
|
grep Eight normal >/dev/null &&
|
|
|
|
grep HT error >/dev/null &&
|
|
|
|
grep With error >/dev/null &&
|
|
|
|
grep Return normal >/dev/null &&
|
|
|
|
grep No normal >/dev/null
|
|
|
|
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'with cr-at-eol (attribute)' '
|
|
|
|
|
|
|
|
git config --unset core.whitespace
|
|
|
|
echo "F whitespace=trailing,cr-at-eol" >.gitattributes
|
2009-12-26 22:53:17 +01:00
|
|
|
prepare_output
|
2008-01-15 09:59:05 +01:00
|
|
|
|
|
|
|
grep Eight normal >/dev/null &&
|
|
|
|
grep HT error >/dev/null &&
|
|
|
|
grep With error >/dev/null &&
|
|
|
|
grep Return normal >/dev/null &&
|
2007-12-06 09:14:14 +01:00
|
|
|
grep No normal >/dev/null
|
|
|
|
|
|
|
|
'
|
|
|
|
|
2008-08-12 07:15:28 +02:00
|
|
|
test_expect_success 'trailing empty lines (1)' '
|
|
|
|
|
|
|
|
rm -f .gitattributes &&
|
|
|
|
test_must_fail git diff --check >output &&
|
2009-09-04 07:30:27 +02:00
|
|
|
grep "new blank line at" output &&
|
2008-08-12 07:15:28 +02:00
|
|
|
grep "trailing whitespace" output
|
|
|
|
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'trailing empty lines (2)' '
|
|
|
|
|
|
|
|
echo "F -whitespace" >.gitattributes &&
|
|
|
|
git diff --check >output &&
|
|
|
|
! test -s output
|
|
|
|
|
|
|
|
'
|
|
|
|
|
2008-08-28 04:48:01 +02:00
|
|
|
test_expect_success 'do not color trailing cr in context' '
|
|
|
|
git config --unset core.whitespace
|
|
|
|
rm -f .gitattributes &&
|
|
|
|
echo AAAQ | tr Q "\015" >G &&
|
|
|
|
git add G &&
|
|
|
|
echo BBBQ | tr Q "\015" >>G
|
|
|
|
git diff --color G | tr "\015" Q >output &&
|
|
|
|
grep "BBB.*${blue_grep}Q" output &&
|
|
|
|
grep "AAA.*\[mQ" output
|
|
|
|
|
|
|
|
'
|
|
|
|
|
2009-09-04 09:41:15 +02:00
|
|
|
test_expect_success 'color new trailing blank lines' '
|
|
|
|
{ echo a; echo b; echo; echo; } >x &&
|
|
|
|
git add x &&
|
2009-09-15 07:05:57 +02:00
|
|
|
{ echo a; echo; echo; echo; echo c; echo; echo; echo; echo; } >x &&
|
2009-09-04 09:41:15 +02:00
|
|
|
git diff --color x >output &&
|
2009-12-26 22:53:17 +01:00
|
|
|
cnt=$($grep_a "${blue_grep}" output | wc -l) &&
|
2009-09-04 09:41:15 +02:00
|
|
|
test $cnt = 2
|
|
|
|
'
|
|
|
|
|
2007-11-03 01:46:55 +01:00
|
|
|
test_done
|