2016-02-27 00:26:32 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='check that certain rev-parse options work outside repo'
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
test_expect_success 'set up non-repo directory' '
|
|
|
|
GIT_CEILING_DIRECTORIES=$(pwd) &&
|
|
|
|
export GIT_CEILING_DIRECTORIES &&
|
|
|
|
mkdir non-repo &&
|
|
|
|
cd non-repo &&
|
|
|
|
# confirm that git does not find a repo
|
|
|
|
test_must_fail git rev-parse --git-dir
|
|
|
|
'
|
|
|
|
|
|
|
|
# Rather than directly test the output of sq-quote directly,
|
|
|
|
# make sure the shell can read back a tricky case, since
|
|
|
|
# that's what we really care about anyway.
|
|
|
|
tricky="really tricky with \\ and \" and '"
|
|
|
|
dump_args () {
|
|
|
|
for i in "$@"; do
|
|
|
|
echo "arg: $i"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
test_expect_success 'rev-parse --sq-quote' '
|
|
|
|
dump_args "$tricky" easy >expect &&
|
|
|
|
eval "dump_args $(git rev-parse --sq-quote "$tricky" easy)" >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
2016-02-29 12:01:56 +01:00
|
|
|
test_expect_success 'rev-parse --local-env-vars' '
|
2016-02-27 00:26:32 +01:00
|
|
|
git rev-parse --local-env-vars >actual &&
|
|
|
|
# we do not want to depend on the complete list here,
|
|
|
|
# so just look for something plausible
|
|
|
|
grep ^GIT_DIR actual
|
|
|
|
'
|
|
|
|
|
2016-02-29 12:01:56 +01:00
|
|
|
test_expect_success 'rev-parse --resolve-git-dir' '
|
2016-02-27 00:26:32 +01:00
|
|
|
git init --separate-git-dir repo dir &&
|
|
|
|
test_must_fail git rev-parse --resolve-git-dir . &&
|
|
|
|
echo "$(pwd)/repo" >expect &&
|
|
|
|
git rev-parse --resolve-git-dir dir/.git >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
|
|
|
test_done
|