Blob


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