2008-01-01 07:17:34 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='Test wacky input to git config'
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
setup() {
|
|
|
|
(printf "[section]\n" &&
|
|
|
|
printf " key = foo") >.git/config
|
|
|
|
}
|
|
|
|
|
|
|
|
check() {
|
|
|
|
echo "$2" >expected
|
2009-04-17 14:05:11 +02:00
|
|
|
git config --get "$1" >actual 2>&1
|
2008-05-24 07:28:56 +02:00
|
|
|
test_cmp actual expected
|
2008-01-01 07:17:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
test_expect_success 'modify same key' '
|
|
|
|
setup &&
|
|
|
|
git config section.key bar &&
|
|
|
|
check section.key bar
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'add key in same section' '
|
|
|
|
setup &&
|
|
|
|
git config section.other bar &&
|
|
|
|
check section.key foo &&
|
|
|
|
check section.other bar
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'add key in different section' '
|
|
|
|
setup &&
|
|
|
|
git config section2.key bar &&
|
|
|
|
check section.key foo &&
|
|
|
|
check section2.key bar
|
|
|
|
'
|
|
|
|
|
2008-05-04 07:37:52 +02:00
|
|
|
SECTION="test.q\"s\\sq'sp e.key"
|
2008-09-03 10:59:27 +02:00
|
|
|
test_expect_success 'make sure git config escapes section names properly' '
|
2008-05-04 07:37:52 +02:00
|
|
|
git config "$SECTION" bar &&
|
|
|
|
check "$SECTION" bar
|
|
|
|
'
|
|
|
|
|
2009-04-17 14:05:11 +02:00
|
|
|
LONG_VALUE=$(printf "x%01021dx a" 7)
|
|
|
|
test_expect_success 'do not crash on special long config line' '
|
|
|
|
setup &&
|
|
|
|
git config section.key "$LONG_VALUE" &&
|
2011-04-10 22:54:18 +02:00
|
|
|
check section.key "$LONG_VALUE"
|
2009-04-17 14:05:11 +02:00
|
|
|
'
|
|
|
|
|
2008-01-01 07:17:34 +01:00
|
|
|
test_done
|