summaryrefslogtreecommitdiff
path: root/t/t1500-rev-parse.sh
blob: bea40cba8d1bcd61f98d3861665c806be6bc6e89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/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: is-inside-work-tree" \
	"test '$1' = \"\$(git rev-parse --is-inside-work-tree)\""
	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 true ''
 
cd .git || exit 1
test_rev_parse .git/ true true false ''
cd objects || exit 1
test_rev_parse .git/objects/ true true false ''
cd ../.. || exit 1
 
mkdir -p sub/dir || exit 1
cd sub/dir || exit 1
test_rev_parse subdirectory false false true sub/dir/
cd ../.. || exit 1
 
git config core.bare true
test_rev_parse 'core.bare = true' true false false
 
git config --unset core.bare
test_rev_parse 'core.bare undefined' false false true
 
mkdir work || exit 1
cd work || exit 1
export GIT_DIR=../.git
export GIT_CONFIG="$(pwd)"/../.git/config
 
git config core.bare false
test_rev_parse 'GIT_DIR=../.git, core.bare = false' false false true work/
 
git config core.bare true
test_rev_parse 'GIT_DIR=../.git, core.bare = true' true false false ''
 
git config --unset core.bare
test_rev_parse 'GIT_DIR=../.git, core.bare undefined' false false true work/
 
mv ../.git ../repo.git || exit 1
export GIT_DIR=../repo.git
export GIT_CONFIG="$(pwd)"/../repo.git/config
 
git config core.bare false
test_rev_parse 'GIT_DIR=../repo.git, core.bare = false' false false true ''
 
git config core.bare true
test_rev_parse 'GIT_DIR=../repo.git, core.bare = true' true false false ''
 
git config --unset core.bare
test_rev_parse 'GIT_DIR=../repo.git, core.bare undefined' false false true ''
 
test_done