2008-02-24 18:19:09 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='Various filesystem issues'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
2010-12-21 21:27:55 +01:00
|
|
|
auml=$(printf '\303\244')
|
|
|
|
aumlcdiar=$(printf '\141\314\210')
|
2008-02-24 18:19:09 +01:00
|
|
|
|
2012-07-26 15:39:54 +02:00
|
|
|
if test_have_prereq CASE_INSENSITIVE_FS
|
|
|
|
then
|
2009-03-17 22:45:22 +01:00
|
|
|
say "will test on a case insensitive filesystem"
|
2012-07-26 15:39:54 +02:00
|
|
|
test_case=test_expect_failure
|
|
|
|
else
|
|
|
|
test_case=test_expect_success
|
|
|
|
fi
|
|
|
|
|
2012-07-26 15:39:56 +02:00
|
|
|
if test_have_prereq UTF8_NFD_TO_NFC
|
|
|
|
then
|
2009-03-17 22:45:22 +01:00
|
|
|
say "will test on a unicode corrupting filesystem"
|
2012-07-26 15:39:56 +02:00
|
|
|
test_unicode=test_expect_failure
|
|
|
|
else
|
|
|
|
test_unicode=test_expect_success
|
|
|
|
fi
|
|
|
|
|
2012-07-26 15:39:55 +02:00
|
|
|
test_have_prereq SYMLINKS ||
|
2009-03-04 19:40:27 +01:00
|
|
|
say "will test on a filesystem lacking symbolic links"
|
2009-03-17 22:45:22 +01:00
|
|
|
|
2012-07-26 15:39:54 +02:00
|
|
|
if test_have_prereq CASE_INSENSITIVE_FS
|
2008-05-11 18:16:40 +02:00
|
|
|
then
|
|
|
|
test_expect_success "detection of case insensitive filesystem during repo init" '
|
|
|
|
test $(git config --bool core.ignorecase) = true
|
|
|
|
'
|
|
|
|
else
|
|
|
|
test_expect_success "detection of case insensitive filesystem during repo init" '
|
2008-07-12 17:47:52 +02:00
|
|
|
test_must_fail git config --bool core.ignorecase >/dev/null ||
|
2008-05-11 18:16:40 +02:00
|
|
|
test $(git config --bool core.ignorecase) = false
|
|
|
|
'
|
|
|
|
fi
|
|
|
|
|
2012-07-26 15:39:55 +02:00
|
|
|
if test_have_prereq SYMLINKS
|
2009-03-04 19:40:27 +01:00
|
|
|
then
|
|
|
|
test_expect_success "detection of filesystem w/o symlink support during repo init" '
|
2012-07-26 15:39:55 +02:00
|
|
|
test_must_fail git config --bool core.symlinks ||
|
|
|
|
test "$(git config --bool core.symlinks)" = true
|
2009-03-04 19:40:27 +01:00
|
|
|
'
|
|
|
|
else
|
|
|
|
test_expect_success "detection of filesystem w/o symlink support during repo init" '
|
2012-07-26 15:39:55 +02:00
|
|
|
v=$(git config --bool core.symlinks) &&
|
|
|
|
test "$v" = false
|
2009-03-04 19:40:27 +01:00
|
|
|
'
|
|
|
|
fi
|
|
|
|
|
2008-02-24 18:19:09 +01:00
|
|
|
test_expect_success "setup case tests" '
|
2008-05-11 18:16:41 +02:00
|
|
|
git config core.ignorecase true &&
|
2008-02-24 18:19:09 +01:00
|
|
|
touch camelcase &&
|
|
|
|
git add camelcase &&
|
|
|
|
git commit -m "initial" &&
|
|
|
|
git tag initial &&
|
|
|
|
git checkout -b topic &&
|
|
|
|
git mv camelcase tmp &&
|
|
|
|
git mv tmp CamelCase &&
|
|
|
|
git commit -m "rename" &&
|
|
|
|
git checkout -f master
|
|
|
|
'
|
|
|
|
|
|
|
|
$test_case 'rename (case change)' '
|
|
|
|
git mv camelcase CamelCase &&
|
|
|
|
git commit -m "rename"
|
|
|
|
'
|
|
|
|
|
2013-01-21 17:45:43 +01:00
|
|
|
test_expect_success 'merge (case change)' '
|
2008-05-15 07:19:54 +02:00
|
|
|
rm -f CamelCase &&
|
|
|
|
rm -f camelcase &&
|
2008-02-24 18:19:09 +01:00
|
|
|
git reset --hard initial &&
|
|
|
|
git merge topic
|
|
|
|
'
|
|
|
|
|
2010-03-01 08:31:21 +01:00
|
|
|
|
|
|
|
|
2013-01-21 17:46:15 +01:00
|
|
|
test_expect_failure CASE_INSENSITIVE_FS 'add (with different case)' '
|
2008-05-11 18:16:42 +02:00
|
|
|
git reset --hard initial &&
|
|
|
|
rm camelcase &&
|
|
|
|
echo 1 >CamelCase &&
|
|
|
|
git add CamelCase &&
|
2010-03-01 08:31:21 +01:00
|
|
|
camel=$(git ls-files | grep -i camelcase) &&
|
|
|
|
test $(echo "$camel" | wc -l) = 1 &&
|
|
|
|
test "z$(git cat-file blob :$camel)" = z1
|
2008-05-11 18:16:42 +02:00
|
|
|
'
|
|
|
|
|
2008-02-24 18:19:09 +01:00
|
|
|
test_expect_success "setup unicode normalization tests" '
|
2013-01-21 17:46:31 +01:00
|
|
|
test_create_repo unicode &&
|
|
|
|
cd unicode &&
|
2013-08-27 15:50:40 +02:00
|
|
|
git config core.precomposeunicode false &&
|
2013-01-21 17:46:31 +01:00
|
|
|
touch "$aumlcdiar" &&
|
|
|
|
git add "$aumlcdiar" &&
|
|
|
|
git commit -m initial &&
|
|
|
|
git tag initial &&
|
|
|
|
git checkout -b topic &&
|
|
|
|
git mv $aumlcdiar tmp &&
|
|
|
|
git mv tmp "$auml" &&
|
|
|
|
git commit -m rename &&
|
|
|
|
git checkout -f master
|
2008-02-24 18:19:09 +01:00
|
|
|
'
|
|
|
|
|
|
|
|
$test_unicode 'rename (silent unicode normalization)' '
|
2013-01-21 17:46:31 +01:00
|
|
|
git mv "$aumlcdiar" "$auml" &&
|
|
|
|
git commit -m rename
|
2008-02-24 18:19:09 +01:00
|
|
|
'
|
|
|
|
|
|
|
|
$test_unicode 'merge (silent unicode normalization)' '
|
2013-01-21 17:46:31 +01:00
|
|
|
git reset --hard initial &&
|
|
|
|
git merge topic
|
2008-02-24 18:19:09 +01:00
|
|
|
'
|
|
|
|
|
|
|
|
test_done
|