]> git.ipfire.org Git - thirdparty/git.git/blob - t/t1500-rev-parse.sh
Merge branch 'pb/ref-filter-with-crlf'
[thirdparty/git.git] / t / t1500-rev-parse.sh
1 #!/bin/sh
2
3 test_description='test git rev-parse'
4 . ./test-lib.sh
5
6 # usage: [options] label is-bare is-inside-git is-inside-work prefix git-dir absolute-git-dir
7 test_rev_parse () {
8 d=
9 bare=
10 gitdir=
11 while :
12 do
13 case "$1" in
14 -C) d="$2"; shift; shift ;;
15 -b) case "$2" in
16 [tfu]*) bare="$2"; shift; shift ;;
17 *) error "test_rev_parse: bogus core.bare value '$2'" ;;
18 esac ;;
19 -g) gitdir="$2"; shift; shift ;;
20 -*) error "test_rev_parse: unrecognized option '$1'" ;;
21 *) break ;;
22 esac
23 done
24
25 name=$1
26 shift
27
28 for o in --is-bare-repository \
29 --is-inside-git-dir \
30 --is-inside-work-tree \
31 --show-prefix \
32 --git-dir \
33 --absolute-git-dir
34 do
35 test $# -eq 0 && break
36 expect="$1"
37 test_expect_success "$name: $o" '
38 if test -n "$gitdir"
39 then
40 test_when_finished "unset GIT_DIR" &&
41 GIT_DIR="$gitdir" &&
42 export GIT_DIR
43 fi &&
44
45 case "$bare" in
46 t*) test_config ${d:+-C} ${d:+"$d"} core.bare true ;;
47 f*) test_config ${d:+-C} ${d:+"$d"} core.bare false ;;
48 u*) test_unconfig ${d:+-C} ${d:+"$d"} core.bare ;;
49 esac &&
50
51 echo "$expect" >expect &&
52 git ${d:+-C} ${d:+"$d"} rev-parse $o >actual &&
53 test_cmp expect actual
54 '
55 shift
56 done
57 }
58
59 ROOT=$(pwd)
60
61 test_expect_success 'setup' '
62 mkdir -p sub/dir work &&
63 cp -R .git repo.git
64 '
65
66 test_rev_parse toplevel false false true '' .git "$ROOT/.git"
67
68 test_rev_parse -C .git .git/ false true false '' . "$ROOT/.git"
69 test_rev_parse -C .git/objects .git/objects/ false true false '' "$ROOT/.git" "$ROOT/.git"
70
71 test_rev_parse -C sub/dir subdirectory false false true sub/dir/ "$ROOT/.git" "$ROOT/.git"
72
73 test_rev_parse -b t 'core.bare = true' true false false
74
75 test_rev_parse -b u 'core.bare undefined' false false true
76
77
78 test_rev_parse -C work -g ../.git -b f 'GIT_DIR=../.git, core.bare = false' false false true '' "../.git" "$ROOT/.git"
79
80 test_rev_parse -C work -g ../.git -b t 'GIT_DIR=../.git, core.bare = true' true false false ''
81
82 test_rev_parse -C work -g ../.git -b u 'GIT_DIR=../.git, core.bare undefined' false false true ''
83
84
85 test_rev_parse -C work -g ../repo.git -b f 'GIT_DIR=../repo.git, core.bare = false' false false true '' "../repo.git" "$ROOT/repo.git"
86
87 test_rev_parse -C work -g ../repo.git -b t 'GIT_DIR=../repo.git, core.bare = true' true false false ''
88
89 test_rev_parse -C work -g ../repo.git -b u 'GIT_DIR=../repo.git, core.bare undefined' false false true ''
90
91 test_expect_success 'git-common-dir from worktree root' '
92 echo .git >expect &&
93 git rev-parse --git-common-dir >actual &&
94 test_cmp expect actual
95 '
96
97 test_expect_success 'git-common-dir inside sub-dir' '
98 mkdir -p path/to/child &&
99 test_when_finished "rm -rf path" &&
100 echo "$(git -C path/to/child rev-parse --show-cdup).git" >expect &&
101 git -C path/to/child rev-parse --git-common-dir >actual &&
102 test_cmp expect actual
103 '
104
105 test_expect_success 'git-path from worktree root' '
106 echo .git/objects >expect &&
107 git rev-parse --git-path objects >actual &&
108 test_cmp expect actual
109 '
110
111 test_expect_success 'git-path inside sub-dir' '
112 mkdir -p path/to/child &&
113 test_when_finished "rm -rf path" &&
114 echo "$(git -C path/to/child rev-parse --show-cdup).git/objects" >expect &&
115 git -C path/to/child rev-parse --git-path objects >actual &&
116 test_cmp expect actual
117 '
118
119 test_expect_success 'rev-parse --is-shallow-repository in shallow repo' '
120 test_commit test_commit &&
121 echo true >expect &&
122 git clone --depth 1 --no-local . shallow &&
123 test_when_finished "rm -rf shallow" &&
124 git -C shallow rev-parse --is-shallow-repository >actual &&
125 test_cmp expect actual
126 '
127
128 test_expect_success 'rev-parse --is-shallow-repository in non-shallow repo' '
129 echo false >expect &&
130 git rev-parse --is-shallow-repository >actual &&
131 test_cmp expect actual
132 '
133
134 test_expect_success 'rev-parse --show-object-format in repo' '
135 echo "$(test_oid algo)" >expect &&
136 git rev-parse --show-object-format >actual &&
137 test_cmp expect actual &&
138 git rev-parse --show-object-format=storage >actual &&
139 test_cmp expect actual &&
140 git rev-parse --show-object-format=input >actual &&
141 test_cmp expect actual &&
142 git rev-parse --show-object-format=output >actual &&
143 test_cmp expect actual &&
144 test_must_fail git rev-parse --show-object-format=squeamish-ossifrage 2>err &&
145 grep "unknown mode for --show-object-format: squeamish-ossifrage" err
146 '
147
148 test_expect_success '--show-toplevel from subdir of working tree' '
149 pwd >expect &&
150 git -C sub/dir rev-parse --show-toplevel >actual &&
151 test_cmp expect actual
152 '
153
154 test_expect_success '--show-toplevel from inside .git' '
155 test_must_fail git -C .git rev-parse --show-toplevel
156 '
157
158 test_expect_success 'showing the superproject correctly' '
159 git rev-parse --show-superproject-working-tree >out &&
160 test_must_be_empty out &&
161
162 test_create_repo super &&
163 test_commit -C super test_commit &&
164 test_create_repo sub &&
165 test_commit -C sub test_commit &&
166 git -C super submodule add ../sub dir/sub &&
167 echo $(pwd)/super >expect &&
168 git -C super/dir/sub rev-parse --show-superproject-working-tree >out &&
169 test_cmp expect out &&
170
171 test_commit -C super submodule_add &&
172 git -C super checkout -b branch1 &&
173 git -C super/dir/sub checkout -b branch1 &&
174 test_commit -C super/dir/sub branch1_commit &&
175 git -C super add dir/sub &&
176 test_commit -C super branch1_commit &&
177 git -C super checkout -b branch2 master &&
178 git -C super/dir/sub checkout -b branch2 master &&
179 test_commit -C super/dir/sub branch2_commit &&
180 git -C super add dir/sub &&
181 test_commit -C super branch2_commit &&
182 test_must_fail git -C super merge branch1 &&
183
184 git -C super/dir/sub rev-parse --show-superproject-working-tree >out &&
185 test_cmp expect out
186 '
187
188 test_done