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 &&
|
2007-11-03 01:46:55 +01:00
|
|
|
echo "No problem" >>F
|
|
|
|
|
|
|
|
'
|
|
|
|
|
|
|
|
blue_grep='7;34m' ;# ESC [ 7 ; 3 4 m
|
|
|
|
|
|
|
|
test_expect_success default '
|
|
|
|
|
|
|
|
git diff --color >output
|
|
|
|
grep "$blue_grep" output >error
|
|
|
|
grep -v "$blue_grep" output >normal
|
|
|
|
|
|
|
|
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
|
|
|
|
git diff --color >output
|
|
|
|
grep "$blue_grep" output >error
|
|
|
|
grep -v "$blue_grep" output >normal
|
|
|
|
|
|
|
|
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
|
|
|
|
git diff --color >output
|
|
|
|
grep "$blue_grep" output >error
|
|
|
|
grep -v "$blue_grep" output >normal
|
|
|
|
|
|
|
|
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
|
|
|
|
git diff --color >output
|
|
|
|
grep "$blue_grep" output >error
|
|
|
|
grep -v "$blue_grep" output >normal
|
|
|
|
|
|
|
|
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
|
|
|
|
git diff --color >output
|
|
|
|
grep "$blue_grep" output >error
|
|
|
|
grep -v "$blue_grep" output >normal
|
|
|
|
|
|
|
|
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
|
|
|
|
git diff --color >output
|
|
|
|
grep "$blue_grep" output >error
|
|
|
|
grep -v "$blue_grep" output >normal
|
|
|
|
|
|
|
|
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
|
|
|
|
git diff --color >output
|
|
|
|
grep "$blue_grep" output >error
|
|
|
|
grep -v "$blue_grep" output >normal
|
|
|
|
|
|
|
|
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
|
|
|
|
git diff --color >output
|
|
|
|
grep "$blue_grep" output >error
|
|
|
|
grep -v "$blue_grep" output >normal
|
|
|
|
|
|
|
|
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
|
|
|
|
git diff --color >output
|
|
|
|
grep "$blue_grep" output >error
|
|
|
|
grep -v "$blue_grep" output >normal
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
'
|
|
|
|
|
2007-11-03 01:46:55 +01:00
|
|
|
test_done
|