Blame


1 d1c1ae5f 2019-08-12 stsp #!/bin/sh
2 d1c1ae5f 2019-08-12 stsp #
3 d1c1ae5f 2019-08-12 stsp # Copyright (c) 2019 Stefan Sperling <stsp@openbsd.org>
4 d1c1ae5f 2019-08-12 stsp #
5 d1c1ae5f 2019-08-12 stsp # Permission to use, copy, modify, and distribute this software for any
6 d1c1ae5f 2019-08-12 stsp # purpose with or without fee is hereby granted, provided that the above
7 d1c1ae5f 2019-08-12 stsp # copyright notice and this permission notice appear in all copies.
8 d1c1ae5f 2019-08-12 stsp #
9 d1c1ae5f 2019-08-12 stsp # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 d1c1ae5f 2019-08-12 stsp # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 d1c1ae5f 2019-08-12 stsp # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 d1c1ae5f 2019-08-12 stsp # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 d1c1ae5f 2019-08-12 stsp # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 d1c1ae5f 2019-08-12 stsp # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 d1c1ae5f 2019-08-12 stsp # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 d1c1ae5f 2019-08-12 stsp
17 d1c1ae5f 2019-08-12 stsp . ./common.sh
18 d1c1ae5f 2019-08-12 stsp
19 d1c1ae5f 2019-08-12 stsp function test_ref_create {
20 d1c1ae5f 2019-08-12 stsp local testroot=`test_init ref_create`
21 d1c1ae5f 2019-08-12 stsp local commit_id=`git_show_head $testroot/repo`
22 d1c1ae5f 2019-08-12 stsp
23 e31abbf2 2020-03-22 stsp # Create a ref pointing at a commit ID
24 e31abbf2 2020-03-22 stsp got ref -r $testroot/repo -c $commit_id refs/heads/commitref
25 d4fc9a62 2019-10-09 stsp ret="$?"
26 d4fc9a62 2019-10-09 stsp if [ "$ret" != "0" ]; then
27 d4fc9a62 2019-10-09 stsp echo "got ref command failed unexpectedly"
28 d4fc9a62 2019-10-09 stsp test_done "$testroot" "$ret"
29 d4fc9a62 2019-10-09 stsp return 1
30 d4fc9a62 2019-10-09 stsp fi
31 d4fc9a62 2019-10-09 stsp
32 d4fc9a62 2019-10-09 stsp # Create a ref based on repository's HEAD reference
33 e31abbf2 2020-03-22 stsp got ref -r $testroot/repo -c HEAD refs/heads/newref
34 d1c1ae5f 2019-08-12 stsp ret="$?"
35 d1c1ae5f 2019-08-12 stsp if [ "$ret" != "0" ]; then
36 d1c1ae5f 2019-08-12 stsp echo "got ref command failed unexpectedly"
37 d1c1ae5f 2019-08-12 stsp test_done "$testroot" "$ret"
38 d1c1ae5f 2019-08-12 stsp return 1
39 d1c1ae5f 2019-08-12 stsp fi
40 d1c1ae5f 2019-08-12 stsp
41 d1c1ae5f 2019-08-12 stsp # Ensure that Git recognizes the ref Got has created
42 d1c1ae5f 2019-08-12 stsp (cd $testroot/repo && git checkout -q newref)
43 d1c1ae5f 2019-08-12 stsp ret="$?"
44 d1c1ae5f 2019-08-12 stsp if [ "$ret" != "0" ]; then
45 d1c1ae5f 2019-08-12 stsp echo "git checkout command failed unexpectedly"
46 d1c1ae5f 2019-08-12 stsp test_done "$testroot" "$ret"
47 d1c1ae5f 2019-08-12 stsp return 1
48 d1c1ae5f 2019-08-12 stsp fi
49 d1c1ae5f 2019-08-12 stsp
50 a009df92 2019-08-22 stsp # Ensure Got recognizes the new ref
51 d1c1ae5f 2019-08-12 stsp got checkout -b newref $testroot/repo $testroot/wt >/dev/null
52 d1c1ae5f 2019-08-12 stsp ret="$?"
53 d1c1ae5f 2019-08-12 stsp if [ "$ret" != "0" ]; then
54 d1c1ae5f 2019-08-12 stsp echo "got checkout command failed unexpectedly"
55 d1c1ae5f 2019-08-12 stsp test_done "$testroot" "$ret"
56 d1c1ae5f 2019-08-12 stsp return 1
57 d1c1ae5f 2019-08-12 stsp fi
58 d1c1ae5f 2019-08-12 stsp
59 d1c1ae5f 2019-08-12 stsp # Create a head ref based on another specific ref
60 e31abbf2 2020-03-22 stsp (cd $testroot/wt && got ref -c refs/heads/master refs/heads/anotherref)
61 d1c1ae5f 2019-08-12 stsp ret="$?"
62 d1c1ae5f 2019-08-12 stsp if [ "$ret" != "0" ]; then
63 d1c1ae5f 2019-08-12 stsp test_done "$testroot" "$ret"
64 d1c1ae5f 2019-08-12 stsp return 1
65 d1c1ae5f 2019-08-12 stsp fi
66 d1c1ae5f 2019-08-12 stsp
67 d1c1ae5f 2019-08-12 stsp (cd $testroot/repo && git checkout -q anotherref)
68 d1c1ae5f 2019-08-12 stsp ret="$?"
69 d1c1ae5f 2019-08-12 stsp if [ "$ret" != "0" ]; then
70 d1c1ae5f 2019-08-12 stsp echo "git checkout command failed unexpectedly"
71 d1c1ae5f 2019-08-12 stsp test_done "$testroot" "$ret"
72 d1c1ae5f 2019-08-12 stsp fi
73 d1c1ae5f 2019-08-12 stsp
74 d1c1ae5f 2019-08-12 stsp # Create a symbolic ref
75 e31abbf2 2020-03-22 stsp (cd $testroot/wt && got ref -s refs/heads/master refs/heads/symbolicref)
76 d1c1ae5f 2019-08-12 stsp ret="$?"
77 d1c1ae5f 2019-08-12 stsp if [ "$ret" != "0" ]; then
78 d1c1ae5f 2019-08-12 stsp test_done "$testroot" "$ret"
79 d1c1ae5f 2019-08-12 stsp return 1
80 d1c1ae5f 2019-08-12 stsp fi
81 d1c1ae5f 2019-08-12 stsp
82 d1c1ae5f 2019-08-12 stsp (cd $testroot/repo && git checkout -q symbolicref)
83 d1c1ae5f 2019-08-12 stsp ret="$?"
84 d1c1ae5f 2019-08-12 stsp if [ "$ret" != "0" ]; then
85 d1c1ae5f 2019-08-12 stsp echo "git checkout command failed unexpectedly"
86 d1c1ae5f 2019-08-12 stsp test_done "$testroot" "$ret"
87 2d463f36 2019-08-12 stsp return 1
88 d1c1ae5f 2019-08-12 stsp fi
89 d1c1ae5f 2019-08-12 stsp
90 2d463f36 2019-08-12 stsp # Attempt to create a symbolic ref pointing at a non-reference
91 e31abbf2 2020-03-22 stsp (cd $testroot/wt && got ref -s $commit_id refs/heads/symbolicref \
92 2d463f36 2019-08-12 stsp 2> $testroot/stderr)
93 2d463f36 2019-08-12 stsp ret="$?"
94 2d463f36 2019-08-12 stsp if [ "$ret" == "0" ]; then
95 2d463f36 2019-08-12 stsp echo "git ref command succeeded unexpectedly"
96 2d463f36 2019-08-12 stsp test_done "$testroot" "1"
97 2d463f36 2019-08-12 stsp return 1
98 2d463f36 2019-08-12 stsp fi
99 2d463f36 2019-08-12 stsp
100 2d463f36 2019-08-12 stsp echo "got: reference $commit_id not found" > $testroot/stderr.expected
101 2d463f36 2019-08-12 stsp cmp -s $testroot/stderr $testroot/stderr.expected
102 2d463f36 2019-08-12 stsp ret="$?"
103 2d463f36 2019-08-12 stsp if [ "$ret" != "0" ]; then
104 2d463f36 2019-08-12 stsp diff -u $testroot/stderr.expected $testroot/stderr
105 2d463f36 2019-08-12 stsp test_done "$testroot" "$ret"
106 2d463f36 2019-08-12 stsp return 1
107 2d463f36 2019-08-12 stsp fi
108 2d463f36 2019-08-12 stsp
109 e31abbf2 2020-03-22 stsp # Attempt to create a reference without specifying a name
110 e31abbf2 2020-03-22 stsp (cd $testroot/wt && got ref -c $commit_id 2> $testroot/stderr)
111 e31abbf2 2020-03-22 stsp ret="$?"
112 e31abbf2 2020-03-22 stsp if [ "$ret" == "0" ]; then
113 e31abbf2 2020-03-22 stsp echo "git ref command succeeded unexpectedly"
114 e31abbf2 2020-03-22 stsp test_done "$testroot" "1"
115 e31abbf2 2020-03-22 stsp return 1
116 e31abbf2 2020-03-22 stsp fi
117 e31abbf2 2020-03-22 stsp
118 e31abbf2 2020-03-22 stsp grep -q '^usage: got ref' $testroot/stderr
119 e31abbf2 2020-03-22 stsp ret="$?"
120 e31abbf2 2020-03-22 stsp if [ "$ret" != "0" ]; then
121 e31abbf2 2020-03-22 stsp echo "unexpected usage error message: " >&2
122 e31abbf2 2020-03-22 stsp cat $testroot/stderr >&2
123 e31abbf2 2020-03-22 stsp test_done "$testroot" "$ret"
124 e31abbf2 2020-03-22 stsp return 1
125 e31abbf2 2020-03-22 stsp fi
126 e31abbf2 2020-03-22 stsp
127 e31abbf2 2020-03-22 stsp # Attempt to create a symbolic reference without specifying a name
128 e31abbf2 2020-03-22 stsp (cd $testroot/wt && got ref -s refs/heads/symbolicref \
129 e31abbf2 2020-03-22 stsp 2> $testroot/stderr)
130 e31abbf2 2020-03-22 stsp ret="$?"
131 e31abbf2 2020-03-22 stsp if [ "$ret" == "0" ]; then
132 e31abbf2 2020-03-22 stsp echo "git ref command succeeded unexpectedly"
133 e31abbf2 2020-03-22 stsp test_done "$testroot" "1"
134 e31abbf2 2020-03-22 stsp return 1
135 e31abbf2 2020-03-22 stsp fi
136 e31abbf2 2020-03-22 stsp
137 e31abbf2 2020-03-22 stsp grep -q '^usage: got ref' $testroot/stderr
138 e31abbf2 2020-03-22 stsp ret="$?"
139 e31abbf2 2020-03-22 stsp if [ "$ret" != "0" ]; then
140 e31abbf2 2020-03-22 stsp echo "unexpected usage error message: " >&2
141 e31abbf2 2020-03-22 stsp cat $testroot/stderr >&2
142 e31abbf2 2020-03-22 stsp test_done "$testroot" "$ret"
143 e31abbf2 2020-03-22 stsp return 1
144 e31abbf2 2020-03-22 stsp fi
145 e31abbf2 2020-03-22 stsp
146 7fa81f88 2020-02-21 stsp # Change HEAD
147 e31abbf2 2020-03-22 stsp got ref -r $testroot/repo -s refs/heads/newref HEAD
148 7fa81f88 2020-02-21 stsp ret="$?"
149 7fa81f88 2020-02-21 stsp if [ "$ret" != "0" ]; then
150 7fa81f88 2020-02-21 stsp echo "got ref command failed unexpectedly"
151 7fa81f88 2020-02-21 stsp test_done "$testroot" "$ret"
152 7fa81f88 2020-02-21 stsp return 1
153 7fa81f88 2020-02-21 stsp fi
154 7fa81f88 2020-02-21 stsp
155 7fa81f88 2020-02-21 stsp # Ensure that Git recognizes the ref Got has created
156 7fa81f88 2020-02-21 stsp (cd $testroot/repo && git checkout -q HEAD)
157 7fa81f88 2020-02-21 stsp ret="$?"
158 7fa81f88 2020-02-21 stsp if [ "$ret" != "0" ]; then
159 7fa81f88 2020-02-21 stsp echo "git checkout command failed unexpectedly"
160 7fa81f88 2020-02-21 stsp test_done "$testroot" "$ret"
161 7fa81f88 2020-02-21 stsp return 1
162 7fa81f88 2020-02-21 stsp fi
163 7fa81f88 2020-02-21 stsp
164 7fa81f88 2020-02-21 stsp # Ensure Got recognizes the new ref
165 7fa81f88 2020-02-21 stsp (cd $testroot/wt && got update -b HEAD >/dev/null)
166 7fa81f88 2020-02-21 stsp ret="$?"
167 7fa81f88 2020-02-21 stsp if [ "$ret" != "0" ]; then
168 7fa81f88 2020-02-21 stsp echo "got checkout command failed unexpectedly"
169 7fa81f88 2020-02-21 stsp test_done "$testroot" "$ret"
170 7fa81f88 2020-02-21 stsp return 1
171 7fa81f88 2020-02-21 stsp fi
172 d1c1ae5f 2019-08-12 stsp got ref -r $testroot/repo -l > $testroot/stdout
173 7fa81f88 2020-02-21 stsp echo "HEAD: refs/heads/newref" > $testroot/stdout.expected
174 d1c1ae5f 2019-08-12 stsp echo -n "refs/got/worktree/base-" >> $testroot/stdout.expected
175 d1c1ae5f 2019-08-12 stsp cat $testroot/wt/.got/uuid | tr -d '\n' >> $testroot/stdout.expected
176 d1c1ae5f 2019-08-12 stsp echo ": $commit_id" >> $testroot/stdout.expected
177 d1c1ae5f 2019-08-12 stsp echo "refs/heads/anotherref: $commit_id" >> $testroot/stdout.expected
178 d4fc9a62 2019-10-09 stsp echo "refs/heads/commitref: $commit_id" >> $testroot/stdout.expected
179 d1c1ae5f 2019-08-12 stsp echo "refs/heads/master: $commit_id" >> $testroot/stdout.expected
180 d1c1ae5f 2019-08-12 stsp echo "refs/heads/newref: $commit_id" >> $testroot/stdout.expected
181 d1c1ae5f 2019-08-12 stsp echo "refs/heads/symbolicref: refs/heads/master" \
182 d1c1ae5f 2019-08-12 stsp >> $testroot/stdout.expected
183 d1c1ae5f 2019-08-12 stsp cmp -s $testroot/stdout $testroot/stdout.expected
184 d1c1ae5f 2019-08-12 stsp ret="$?"
185 d1c1ae5f 2019-08-12 stsp if [ "$ret" != "0" ]; then
186 d1c1ae5f 2019-08-12 stsp diff -u $testroot/stdout.expected $testroot/stdout
187 d1c1ae5f 2019-08-12 stsp fi
188 d1c1ae5f 2019-08-12 stsp test_done "$testroot" "$ret"
189 d1c1ae5f 2019-08-12 stsp }
190 d1c1ae5f 2019-08-12 stsp
191 d1c1ae5f 2019-08-12 stsp function test_ref_delete {
192 d1c1ae5f 2019-08-12 stsp local testroot=`test_init ref_delete`
193 d1c1ae5f 2019-08-12 stsp local commit_id=`git_show_head $testroot/repo`
194 d1c1ae5f 2019-08-12 stsp
195 d1c1ae5f 2019-08-12 stsp for b in ref1 ref2 ref3; do
196 e31abbf2 2020-03-22 stsp got ref -r $testroot/repo -c refs/heads/master refs/heads/$b
197 d1c1ae5f 2019-08-12 stsp ret="$?"
198 d1c1ae5f 2019-08-12 stsp if [ "$ret" != "0" ]; then
199 d1c1ae5f 2019-08-12 stsp echo "got ref command failed unexpectedly"
200 d1c1ae5f 2019-08-12 stsp test_done "$testroot" "$ret"
201 d1c1ae5f 2019-08-12 stsp return 1
202 d1c1ae5f 2019-08-12 stsp fi
203 d1c1ae5f 2019-08-12 stsp done
204 d1c1ae5f 2019-08-12 stsp
205 e31abbf2 2020-03-22 stsp got ref -d -r $testroot/repo refs/heads/ref2 > $testroot/stdout
206 d1c1ae5f 2019-08-12 stsp ret="$?"
207 d1c1ae5f 2019-08-12 stsp if [ "$ret" != "0" ]; then
208 d1c1ae5f 2019-08-12 stsp echo "got ref command failed unexpectedly"
209 d1c1ae5f 2019-08-12 stsp test_done "$testroot" "$ret"
210 d1c1ae5f 2019-08-12 stsp return 1
211 d1c1ae5f 2019-08-12 stsp fi
212 d1c1ae5f 2019-08-12 stsp
213 d1c1ae5f 2019-08-12 stsp got ref -l -r $testroot/repo > $testroot/stdout
214 d1c1ae5f 2019-08-12 stsp echo "HEAD: refs/heads/master" > $testroot/stdout.expected
215 d1c1ae5f 2019-08-12 stsp echo "refs/heads/master: $commit_id" >> $testroot/stdout.expected
216 d1c1ae5f 2019-08-12 stsp echo "refs/heads/ref1: $commit_id" >> $testroot/stdout.expected
217 d1c1ae5f 2019-08-12 stsp echo "refs/heads/ref3: $commit_id" >> $testroot/stdout.expected
218 d1c1ae5f 2019-08-12 stsp cmp -s $testroot/stdout $testroot/stdout.expected
219 d1c1ae5f 2019-08-12 stsp ret="$?"
220 d1c1ae5f 2019-08-12 stsp if [ "$ret" != "0" ]; then
221 d1c1ae5f 2019-08-12 stsp diff -u $testroot/stdout.expected $testroot/stdout
222 d1c1ae5f 2019-08-12 stsp test_done "$testroot" "$ret"
223 d1c1ae5f 2019-08-12 stsp return 1
224 d1c1ae5f 2019-08-12 stsp fi
225 d1c1ae5f 2019-08-12 stsp
226 e31abbf2 2020-03-22 stsp got ref -r $testroot/repo -d refs/heads/bogus_ref_name \
227 d1c1ae5f 2019-08-12 stsp > $testroot/stdout 2> $testroot/stderr
228 d1c1ae5f 2019-08-12 stsp ret="$?"
229 d1c1ae5f 2019-08-12 stsp if [ "$ret" == "0" ]; then
230 d1c1ae5f 2019-08-12 stsp echo "got ref succeeded unexpectedly"
231 d1c1ae5f 2019-08-12 stsp test_done "$testroot" "$ret"
232 d1c1ae5f 2019-08-12 stsp return 1
233 d1c1ae5f 2019-08-12 stsp fi
234 d1c1ae5f 2019-08-12 stsp
235 d1c1ae5f 2019-08-12 stsp echo "got: reference refs/heads/bogus_ref_name not found" \
236 d1c1ae5f 2019-08-12 stsp > $testroot/stderr.expected
237 d1c1ae5f 2019-08-12 stsp cmp -s $testroot/stderr $testroot/stderr.expected
238 d1c1ae5f 2019-08-12 stsp ret="$?"
239 d1c1ae5f 2019-08-12 stsp if [ "$ret" != "0" ]; then
240 d1c1ae5f 2019-08-12 stsp diff -u $testroot/stderr.expected $testroot/stderr
241 b2070a3f 2020-03-22 stsp fi
242 b2070a3f 2020-03-22 stsp test_done "$testroot" "$ret"
243 b2070a3f 2020-03-22 stsp }
244 b2070a3f 2020-03-22 stsp
245 b2070a3f 2020-03-22 stsp function test_ref_list {
246 b2070a3f 2020-03-22 stsp local testroot=`test_init ref_list`
247 b2070a3f 2020-03-22 stsp local commit_id=`git_show_head $testroot/repo`
248 b2070a3f 2020-03-22 stsp
249 b2070a3f 2020-03-22 stsp # Create a tag pointing at a commit ID
250 b2070a3f 2020-03-22 stsp got tag -r $testroot/repo -c $commit_id -m "1.0" "1.0" >/dev/null
251 b2070a3f 2020-03-22 stsp ret="$?"
252 b2070a3f 2020-03-22 stsp if [ "$ret" != "0" ]; then
253 b2070a3f 2020-03-22 stsp echo "got tag command failed unexpectedly"
254 b2070a3f 2020-03-22 stsp test_done "$testroot" "$ret"
255 b2070a3f 2020-03-22 stsp return 1
256 b2070a3f 2020-03-22 stsp fi
257 b2070a3f 2020-03-22 stsp local tag_id=`got ref -r $testroot/repo -l \
258 b2070a3f 2020-03-22 stsp | grep "^refs/tags/$tag" | tr -d ' ' | cut -d: -f2`
259 b2070a3f 2020-03-22 stsp
260 b2070a3f 2020-03-22 stsp # Create a ref based on repository's HEAD reference
261 b2070a3f 2020-03-22 stsp got ref -r $testroot/repo -c HEAD refs/foo/zoo
262 b2070a3f 2020-03-22 stsp ret="$?"
263 b2070a3f 2020-03-22 stsp if [ "$ret" != "0" ]; then
264 b2070a3f 2020-03-22 stsp echo "got ref command failed unexpectedly"
265 b2070a3f 2020-03-22 stsp test_done "$testroot" "$ret"
266 b2070a3f 2020-03-22 stsp return 1
267 b2070a3f 2020-03-22 stsp fi
268 b2070a3f 2020-03-22 stsp
269 b2070a3f 2020-03-22 stsp # Create a head ref based on another specific ref
270 b2070a3f 2020-03-22 stsp (cd $testroot/repo && got ref -c refs/heads/master refs/foo/bar/baz)
271 b2070a3f 2020-03-22 stsp ret="$?"
272 b2070a3f 2020-03-22 stsp if [ "$ret" != "0" ]; then
273 b2070a3f 2020-03-22 stsp test_done "$testroot" "$ret"
274 b2070a3f 2020-03-22 stsp return 1
275 b2070a3f 2020-03-22 stsp fi
276 b2070a3f 2020-03-22 stsp
277 75236079 2020-03-25 stsp # Create a HEAD ref in the namespace of a remote repository
278 75236079 2020-03-25 stsp (cd $testroot/repo && got ref -s refs/heads/master \
279 75236079 2020-03-25 stsp refs/remotes/origin/HEAD)
280 75236079 2020-03-25 stsp ret="$?"
281 75236079 2020-03-25 stsp if [ "$ret" != "0" ]; then
282 75236079 2020-03-25 stsp test_done "$testroot" "$ret"
283 75236079 2020-03-25 stsp return 1
284 75236079 2020-03-25 stsp fi
285 75236079 2020-03-25 stsp
286 b2070a3f 2020-03-22 stsp got ref -r $testroot/repo -l > $testroot/stdout
287 b2070a3f 2020-03-22 stsp
288 b2070a3f 2020-03-22 stsp echo "HEAD: refs/heads/master" > $testroot/stdout.expected
289 b2070a3f 2020-03-22 stsp echo "refs/foo/bar/baz: $commit_id" >> $testroot/stdout.expected
290 b2070a3f 2020-03-22 stsp echo "refs/foo/zoo: $commit_id" >> $testroot/stdout.expected
291 b2070a3f 2020-03-22 stsp echo "refs/heads/master: $commit_id" >> $testroot/stdout.expected
292 75236079 2020-03-25 stsp echo "refs/remotes/origin/HEAD: refs/heads/master" \
293 75236079 2020-03-25 stsp >> $testroot/stdout.expected
294 b2070a3f 2020-03-22 stsp echo "refs/tags/1.0: $tag_id" >> $testroot/stdout.expected
295 b2070a3f 2020-03-22 stsp cmp -s $testroot/stdout $testroot/stdout.expected
296 b2070a3f 2020-03-22 stsp ret="$?"
297 b2070a3f 2020-03-22 stsp if [ "$ret" != "0" ]; then
298 b2070a3f 2020-03-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
299 b2070a3f 2020-03-22 stsp test_done "$testroot" "$ret"
300 b2070a3f 2020-03-22 stsp return 1
301 b2070a3f 2020-03-22 stsp fi
302 b2070a3f 2020-03-22 stsp
303 b2070a3f 2020-03-22 stsp got ref -r $testroot/repo -l refs > $testroot/stdout
304 b2070a3f 2020-03-22 stsp
305 b2070a3f 2020-03-22 stsp echo "refs/foo/bar/baz: $commit_id" > $testroot/stdout.expected
306 b2070a3f 2020-03-22 stsp echo "refs/foo/zoo: $commit_id" >> $testroot/stdout.expected
307 b2070a3f 2020-03-22 stsp echo "refs/heads/master: $commit_id" >> $testroot/stdout.expected
308 75236079 2020-03-25 stsp echo "refs/remotes/origin/HEAD: refs/heads/master" \
309 75236079 2020-03-25 stsp >> $testroot/stdout.expected
310 b2070a3f 2020-03-22 stsp echo "refs/tags/1.0: $tag_id" >> $testroot/stdout.expected
311 b2070a3f 2020-03-22 stsp cmp -s $testroot/stdout $testroot/stdout.expected
312 b2070a3f 2020-03-22 stsp ret="$?"
313 b2070a3f 2020-03-22 stsp if [ "$ret" != "0" ]; then
314 b2070a3f 2020-03-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
315 b2070a3f 2020-03-22 stsp test_done "$testroot" "$ret"
316 b2070a3f 2020-03-22 stsp return 1
317 b2070a3f 2020-03-22 stsp fi
318 b2070a3f 2020-03-22 stsp
319 b2070a3f 2020-03-22 stsp got ref -r $testroot/repo -l refs/tags > $testroot/stdout
320 b2070a3f 2020-03-22 stsp
321 b2070a3f 2020-03-22 stsp echo "refs/tags/1.0: $tag_id" > $testroot/stdout.expected
322 b2070a3f 2020-03-22 stsp cmp -s $testroot/stdout $testroot/stdout.expected
323 b2070a3f 2020-03-22 stsp ret="$?"
324 b2070a3f 2020-03-22 stsp if [ "$ret" != "0" ]; then
325 b2070a3f 2020-03-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
326 b2070a3f 2020-03-22 stsp test_done "$testroot" "$ret"
327 b2070a3f 2020-03-22 stsp return 1
328 d1c1ae5f 2019-08-12 stsp fi
329 b2070a3f 2020-03-22 stsp
330 b2070a3f 2020-03-22 stsp for r in refs/foo/bar/baz refs/foo/bar/baz foo/bar/baz foo/bar; do
331 b2070a3f 2020-03-22 stsp got ref -r $testroot/repo -l $r > $testroot/stdout
332 b2070a3f 2020-03-22 stsp
333 b2070a3f 2020-03-22 stsp echo "refs/foo/bar/baz: $commit_id" > $testroot/stdout.expected
334 b2070a3f 2020-03-22 stsp cmp -s $testroot/stdout $testroot/stdout.expected
335 b2070a3f 2020-03-22 stsp ret="$?"
336 b2070a3f 2020-03-22 stsp if [ "$ret" != "0" ]; then
337 b2070a3f 2020-03-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
338 b2070a3f 2020-03-22 stsp test_done "$testroot" "$ret"
339 b2070a3f 2020-03-22 stsp return 1
340 b2070a3f 2020-03-22 stsp fi
341 b2070a3f 2020-03-22 stsp done
342 b2070a3f 2020-03-22 stsp
343 b2070a3f 2020-03-22 stsp for r in refs/foo foo; do
344 b2070a3f 2020-03-22 stsp got ref -r $testroot/repo -l $r > $testroot/stdout
345 b2070a3f 2020-03-22 stsp
346 b2070a3f 2020-03-22 stsp echo "refs/foo/bar/baz: $commit_id" > $testroot/stdout.expected
347 b2070a3f 2020-03-22 stsp echo "refs/foo/zoo: $commit_id" >> $testroot/stdout.expected
348 b2070a3f 2020-03-22 stsp cmp -s $testroot/stdout $testroot/stdout.expected
349 b2070a3f 2020-03-22 stsp ret="$?"
350 b2070a3f 2020-03-22 stsp if [ "$ret" != "0" ]; then
351 b2070a3f 2020-03-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
352 b2070a3f 2020-03-22 stsp test_done "$testroot" "$ret"
353 b2070a3f 2020-03-22 stsp return 1
354 b2070a3f 2020-03-22 stsp fi
355 b2070a3f 2020-03-22 stsp done
356 b2070a3f 2020-03-22 stsp
357 b2070a3f 2020-03-22 stsp for r in refs//foo/bar refs//foo//bar refs////////foo//bar; do
358 b2070a3f 2020-03-22 stsp got ref -r $testroot/repo -l $r > $testroot/stdout
359 b2070a3f 2020-03-22 stsp
360 b2070a3f 2020-03-22 stsp echo "refs/foo/bar/baz: $commit_id" > $testroot/stdout.expected
361 b2070a3f 2020-03-22 stsp cmp -s $testroot/stdout $testroot/stdout.expected
362 b2070a3f 2020-03-22 stsp ret="$?"
363 b2070a3f 2020-03-22 stsp if [ "$ret" != "0" ]; then
364 b2070a3f 2020-03-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
365 b2070a3f 2020-03-22 stsp test_done "$testroot" "$ret"
366 b2070a3f 2020-03-22 stsp return 1
367 b2070a3f 2020-03-22 stsp fi
368 b2070a3f 2020-03-22 stsp done
369 b2070a3f 2020-03-22 stsp
370 b2070a3f 2020-03-22 stsp # attempt to list non-existing references
371 b2070a3f 2020-03-22 stsp for r in refs/fo bar baz moo riffs /refs/abc refs/foo/bar/baz/moo; do
372 b2070a3f 2020-03-22 stsp got ref -r $testroot/repo -l $r > $testroot/stdout
373 b2070a3f 2020-03-22 stsp
374 b2070a3f 2020-03-22 stsp echo -n > $testroot/stdout.expected
375 b2070a3f 2020-03-22 stsp cmp -s $testroot/stdout $testroot/stdout.expected
376 b2070a3f 2020-03-22 stsp ret="$?"
377 b2070a3f 2020-03-22 stsp if [ "$ret" != "0" ]; then
378 b2070a3f 2020-03-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
379 b2070a3f 2020-03-22 stsp test_done "$testroot" "$ret"
380 b2070a3f 2020-03-22 stsp return 1
381 b2070a3f 2020-03-22 stsp fi
382 b2070a3f 2020-03-22 stsp done
383 b2070a3f 2020-03-22 stsp
384 d1c1ae5f 2019-08-12 stsp test_done "$testroot" "$ret"
385 d1c1ae5f 2019-08-12 stsp }
386 d1c1ae5f 2019-08-12 stsp
387 d1c1ae5f 2019-08-12 stsp run_test test_ref_create
388 d1c1ae5f 2019-08-12 stsp run_test test_ref_delete
389 b2070a3f 2020-03-22 stsp run_test test_ref_list