-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Matthias Lederhofer <matled@gmx.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
- Loading branch information
Matthias Lederhofer
authored and
Junio C Hamano
committed
Jun 6, 2007
1 parent
493c774
commit dace6e4
Showing
1 changed file
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
#!/bin/sh | ||
|
||
test_description='test git rev-parse' | ||
. ./test-lib.sh | ||
|
||
test_rev_parse() { | ||
name=$1 | ||
shift | ||
|
||
test_expect_success "$name: is-bare-repository" \ | ||
"test '$1' = \"\$(git rev-parse --is-bare-repository)\"" | ||
shift | ||
[ $# -eq 0 ] && return | ||
|
||
test_expect_success "$name: is-inside-git-dir" \ | ||
"test '$1' = \"\$(git rev-parse --is-inside-git-dir)\"" | ||
shift | ||
[ $# -eq 0 ] && return | ||
|
||
test_expect_success "$name: prefix" \ | ||
"test '$1' = \"\$(git rev-parse --show-prefix)\"" | ||
shift | ||
[ $# -eq 0 ] && return | ||
} | ||
|
||
test_rev_parse toplevel false false '' | ||
|
||
cd .git || exit 1 | ||
test_rev_parse .git/ false true .git/ | ||
cd objects || exit 1 | ||
test_rev_parse .git/objects/ false true .git/objects/ | ||
cd ../.. || exit 1 | ||
|
||
mkdir -p sub/dir || exit 1 | ||
cd sub/dir || exit 1 | ||
test_rev_parse subdirectory false false sub/dir/ | ||
cd ../.. || exit 1 | ||
|
||
git config core.bare true | ||
test_rev_parse 'core.bare = true' true | ||
|
||
git config --unset core.bare | ||
test_rev_parse 'core.bare undefined' false | ||
|
||
mkdir work || exit 1 | ||
cd work || exit 1 | ||
export GIT_DIR=../.git | ||
export GIT_CONFIG="$GIT_DIR"/config | ||
|
||
git config core.bare false | ||
test_rev_parse 'GIT_DIR=../.git, core.bare = false' false false '' | ||
|
||
git config core.bare true | ||
test_rev_parse 'GIT_DIR=../.git, core.bare = true' true | ||
|
||
git config --unset core.bare | ||
test_rev_parse 'GIT_DIR=../.git, core.bare undefined' false false '' | ||
|
||
mv ../.git ../repo.git || exit 1 | ||
export GIT_DIR=../repo.git | ||
export GIT_CONFIG="$GIT_DIR"/config | ||
|
||
git config core.bare false | ||
test_rev_parse 'GIT_DIR=../repo.git, core.bare = false' false false '' | ||
|
||
git config core.bare true | ||
test_rev_parse 'GIT_DIR=../repo.git, core.bare = true' true | ||
|
||
git config --unset core.bare | ||
test_rev_parse 'GIT_DIR=../repo.git, core.bare undefined' true | ||
|
||
test_done |