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 f6cae3ed 2020-09-13 naddy 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 49c543a6 2022-03-31 naddy ret=$?
26 49c543a6 2022-03-31 naddy if [ $ret -ne 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 49c543a6 2022-03-31 naddy ret=$?
35 49c543a6 2022-03-31 naddy if [ $ret -ne 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 49c543a6 2022-03-31 naddy ret=$?
44 49c543a6 2022-03-31 naddy if [ $ret -ne 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 49c543a6 2022-03-31 naddy ret=$?
53 49c543a6 2022-03-31 naddy if [ $ret -ne 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 49c543a6 2022-03-31 naddy ret=$?
62 49c543a6 2022-03-31 naddy if [ $ret -ne 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 49c543a6 2022-03-31 naddy ret=$?
69 49c543a6 2022-03-31 naddy if [ $ret -ne 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 a9662115 2021-08-29 naddy return 1
73 d1c1ae5f 2019-08-12 stsp fi
74 d1c1ae5f 2019-08-12 stsp
75 d1c1ae5f 2019-08-12 stsp # Create a symbolic ref
76 e31abbf2 2020-03-22 stsp (cd $testroot/wt && got ref -s refs/heads/master refs/heads/symbolicref)
77 49c543a6 2022-03-31 naddy ret=$?
78 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
79 d1c1ae5f 2019-08-12 stsp test_done "$testroot" "$ret"
80 d1c1ae5f 2019-08-12 stsp return 1
81 d1c1ae5f 2019-08-12 stsp fi
82 d1c1ae5f 2019-08-12 stsp
83 d1c1ae5f 2019-08-12 stsp (cd $testroot/repo && git checkout -q symbolicref)
84 49c543a6 2022-03-31 naddy ret=$?
85 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
86 d1c1ae5f 2019-08-12 stsp echo "git checkout command failed unexpectedly"
87 d1c1ae5f 2019-08-12 stsp test_done "$testroot" "$ret"
88 2d463f36 2019-08-12 stsp return 1
89 d1c1ae5f 2019-08-12 stsp fi
90 d1c1ae5f 2019-08-12 stsp
91 2d463f36 2019-08-12 stsp # Attempt to create a symbolic ref pointing at a non-reference
92 e31abbf2 2020-03-22 stsp (cd $testroot/wt && got ref -s $commit_id refs/heads/symbolicref \
93 2d463f36 2019-08-12 stsp 2> $testroot/stderr)
94 49c543a6 2022-03-31 naddy ret=$?
95 49c543a6 2022-03-31 naddy if [ $ret -eq 0 ]; then
96 81a19701 2022-03-10 naddy echo "got ref command succeeded unexpectedly"
97 2d463f36 2019-08-12 stsp test_done "$testroot" "1"
98 2d463f36 2019-08-12 stsp return 1
99 2d463f36 2019-08-12 stsp fi
100 2d463f36 2019-08-12 stsp
101 2d463f36 2019-08-12 stsp echo "got: reference $commit_id not found" > $testroot/stderr.expected
102 2d463f36 2019-08-12 stsp cmp -s $testroot/stderr $testroot/stderr.expected
103 49c543a6 2022-03-31 naddy ret=$?
104 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
105 2d463f36 2019-08-12 stsp diff -u $testroot/stderr.expected $testroot/stderr
106 2d463f36 2019-08-12 stsp test_done "$testroot" "$ret"
107 2d463f36 2019-08-12 stsp return 1
108 2d463f36 2019-08-12 stsp fi
109 2d463f36 2019-08-12 stsp
110 e31abbf2 2020-03-22 stsp # Attempt to create a reference without specifying a name
111 e31abbf2 2020-03-22 stsp (cd $testroot/wt && got ref -c $commit_id 2> $testroot/stderr)
112 49c543a6 2022-03-31 naddy ret=$?
113 49c543a6 2022-03-31 naddy if [ $ret -eq 0 ]; then
114 81a19701 2022-03-10 naddy echo "got ref command succeeded unexpectedly"
115 e31abbf2 2020-03-22 stsp test_done "$testroot" "1"
116 e31abbf2 2020-03-22 stsp return 1
117 e31abbf2 2020-03-22 stsp fi
118 e31abbf2 2020-03-22 stsp
119 e31abbf2 2020-03-22 stsp grep -q '^usage: got ref' $testroot/stderr
120 49c543a6 2022-03-31 naddy ret=$?
121 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
122 e31abbf2 2020-03-22 stsp echo "unexpected usage error message: " >&2
123 e31abbf2 2020-03-22 stsp cat $testroot/stderr >&2
124 e31abbf2 2020-03-22 stsp test_done "$testroot" "$ret"
125 e31abbf2 2020-03-22 stsp return 1
126 e31abbf2 2020-03-22 stsp fi
127 e31abbf2 2020-03-22 stsp
128 e31abbf2 2020-03-22 stsp # Attempt to create a symbolic reference without specifying a name
129 e31abbf2 2020-03-22 stsp (cd $testroot/wt && got ref -s refs/heads/symbolicref \
130 e31abbf2 2020-03-22 stsp 2> $testroot/stderr)
131 49c543a6 2022-03-31 naddy ret=$?
132 49c543a6 2022-03-31 naddy if [ $ret -eq 0 ]; then
133 81a19701 2022-03-10 naddy echo "got ref command succeeded unexpectedly"
134 e31abbf2 2020-03-22 stsp test_done "$testroot" "1"
135 e31abbf2 2020-03-22 stsp return 1
136 e31abbf2 2020-03-22 stsp fi
137 e31abbf2 2020-03-22 stsp
138 e31abbf2 2020-03-22 stsp grep -q '^usage: got ref' $testroot/stderr
139 49c543a6 2022-03-31 naddy ret=$?
140 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
141 e31abbf2 2020-03-22 stsp echo "unexpected usage error message: " >&2
142 e31abbf2 2020-03-22 stsp cat $testroot/stderr >&2
143 e31abbf2 2020-03-22 stsp test_done "$testroot" "$ret"
144 e31abbf2 2020-03-22 stsp return 1
145 e31abbf2 2020-03-22 stsp fi
146 e31abbf2 2020-03-22 stsp
147 7fa81f88 2020-02-21 stsp # Change HEAD
148 e31abbf2 2020-03-22 stsp got ref -r $testroot/repo -s refs/heads/newref HEAD
149 49c543a6 2022-03-31 naddy ret=$?
150 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
151 7fa81f88 2020-02-21 stsp echo "got ref command failed unexpectedly"
152 7fa81f88 2020-02-21 stsp test_done "$testroot" "$ret"
153 7fa81f88 2020-02-21 stsp return 1
154 7fa81f88 2020-02-21 stsp fi
155 7fa81f88 2020-02-21 stsp
156 7fa81f88 2020-02-21 stsp # Ensure that Git recognizes the ref Got has created
157 7fa81f88 2020-02-21 stsp (cd $testroot/repo && git checkout -q HEAD)
158 49c543a6 2022-03-31 naddy ret=$?
159 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
160 7fa81f88 2020-02-21 stsp echo "git checkout command failed unexpectedly"
161 7fa81f88 2020-02-21 stsp test_done "$testroot" "$ret"
162 7fa81f88 2020-02-21 stsp return 1
163 7fa81f88 2020-02-21 stsp fi
164 7fa81f88 2020-02-21 stsp
165 7fa81f88 2020-02-21 stsp # Ensure Got recognizes the new ref
166 7fa81f88 2020-02-21 stsp (cd $testroot/wt && got update -b HEAD >/dev/null)
167 49c543a6 2022-03-31 naddy ret=$?
168 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
169 81a19701 2022-03-10 naddy echo "got update command failed unexpectedly"
170 7fa81f88 2020-02-21 stsp test_done "$testroot" "$ret"
171 7fa81f88 2020-02-21 stsp return 1
172 7fa81f88 2020-02-21 stsp fi
173 d1c1ae5f 2019-08-12 stsp got ref -r $testroot/repo -l > $testroot/stdout
174 7fa81f88 2020-02-21 stsp echo "HEAD: refs/heads/newref" > $testroot/stdout.expected
175 d1c1ae5f 2019-08-12 stsp echo -n "refs/got/worktree/base-" >> $testroot/stdout.expected
176 d1c1ae5f 2019-08-12 stsp cat $testroot/wt/.got/uuid | tr -d '\n' >> $testroot/stdout.expected
177 d1c1ae5f 2019-08-12 stsp echo ": $commit_id" >> $testroot/stdout.expected
178 d1c1ae5f 2019-08-12 stsp echo "refs/heads/anotherref: $commit_id" >> $testroot/stdout.expected
179 d4fc9a62 2019-10-09 stsp echo "refs/heads/commitref: $commit_id" >> $testroot/stdout.expected
180 d1c1ae5f 2019-08-12 stsp echo "refs/heads/master: $commit_id" >> $testroot/stdout.expected
181 d1c1ae5f 2019-08-12 stsp echo "refs/heads/newref: $commit_id" >> $testroot/stdout.expected
182 d1c1ae5f 2019-08-12 stsp echo "refs/heads/symbolicref: refs/heads/master" \
183 d1c1ae5f 2019-08-12 stsp >> $testroot/stdout.expected
184 d1c1ae5f 2019-08-12 stsp cmp -s $testroot/stdout $testroot/stdout.expected
185 49c543a6 2022-03-31 naddy ret=$?
186 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
187 d1c1ae5f 2019-08-12 stsp diff -u $testroot/stdout.expected $testroot/stdout
188 d1c1ae5f 2019-08-12 stsp fi
189 d1c1ae5f 2019-08-12 stsp test_done "$testroot" "$ret"
190 d1c1ae5f 2019-08-12 stsp }
191 d1c1ae5f 2019-08-12 stsp
192 f6cae3ed 2020-09-13 naddy test_ref_delete() {
193 d1c1ae5f 2019-08-12 stsp local testroot=`test_init ref_delete`
194 d1c1ae5f 2019-08-12 stsp local commit_id=`git_show_head $testroot/repo`
195 d1c1ae5f 2019-08-12 stsp
196 d1c1ae5f 2019-08-12 stsp for b in ref1 ref2 ref3; do
197 e31abbf2 2020-03-22 stsp got ref -r $testroot/repo -c refs/heads/master refs/heads/$b
198 49c543a6 2022-03-31 naddy ret=$?
199 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
200 d1c1ae5f 2019-08-12 stsp echo "got ref command failed unexpectedly"
201 d1c1ae5f 2019-08-12 stsp test_done "$testroot" "$ret"
202 d1c1ae5f 2019-08-12 stsp return 1
203 d1c1ae5f 2019-08-12 stsp fi
204 d1c1ae5f 2019-08-12 stsp done
205 d1c1ae5f 2019-08-12 stsp
206 e31abbf2 2020-03-22 stsp got ref -d -r $testroot/repo refs/heads/ref2 > $testroot/stdout
207 49c543a6 2022-03-31 naddy ret=$?
208 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
209 d1c1ae5f 2019-08-12 stsp echo "got ref command failed unexpectedly"
210 993f033b 2021-07-16 stsp test_done "$testroot" "$ret"
211 993f033b 2021-07-16 stsp return 1
212 993f033b 2021-07-16 stsp fi
213 993f033b 2021-07-16 stsp echo "Deleted refs/heads/ref2: $commit_id" > $testroot/stdout.expected
214 993f033b 2021-07-16 stsp cmp -s $testroot/stdout $testroot/stdout.expected
215 49c543a6 2022-03-31 naddy ret=$?
216 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
217 993f033b 2021-07-16 stsp diff -u $testroot/stdout.expected $testroot/stdout
218 d1c1ae5f 2019-08-12 stsp test_done "$testroot" "$ret"
219 d1c1ae5f 2019-08-12 stsp return 1
220 d1c1ae5f 2019-08-12 stsp fi
221 d1c1ae5f 2019-08-12 stsp
222 d1c1ae5f 2019-08-12 stsp got ref -l -r $testroot/repo > $testroot/stdout
223 d1c1ae5f 2019-08-12 stsp echo "HEAD: refs/heads/master" > $testroot/stdout.expected
224 d1c1ae5f 2019-08-12 stsp echo "refs/heads/master: $commit_id" >> $testroot/stdout.expected
225 d1c1ae5f 2019-08-12 stsp echo "refs/heads/ref1: $commit_id" >> $testroot/stdout.expected
226 d1c1ae5f 2019-08-12 stsp echo "refs/heads/ref3: $commit_id" >> $testroot/stdout.expected
227 d1c1ae5f 2019-08-12 stsp cmp -s $testroot/stdout $testroot/stdout.expected
228 49c543a6 2022-03-31 naddy ret=$?
229 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
230 d1c1ae5f 2019-08-12 stsp diff -u $testroot/stdout.expected $testroot/stdout
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 e31abbf2 2020-03-22 stsp got ref -r $testroot/repo -d refs/heads/bogus_ref_name \
236 d1c1ae5f 2019-08-12 stsp > $testroot/stdout 2> $testroot/stderr
237 49c543a6 2022-03-31 naddy ret=$?
238 49c543a6 2022-03-31 naddy if [ $ret -eq 0 ]; then
239 d1c1ae5f 2019-08-12 stsp echo "got ref succeeded unexpectedly"
240 a19f439c 2022-06-03 op test_done "$testroot" "1"
241 d1c1ae5f 2019-08-12 stsp return 1
242 d1c1ae5f 2019-08-12 stsp fi
243 d1c1ae5f 2019-08-12 stsp
244 d1c1ae5f 2019-08-12 stsp echo "got: reference refs/heads/bogus_ref_name not found" \
245 d1c1ae5f 2019-08-12 stsp > $testroot/stderr.expected
246 d1c1ae5f 2019-08-12 stsp cmp -s $testroot/stderr $testroot/stderr.expected
247 49c543a6 2022-03-31 naddy ret=$?
248 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
249 d1c1ae5f 2019-08-12 stsp diff -u $testroot/stderr.expected $testroot/stderr
250 2a104ff6 2020-09-21 stsp test_done "$testroot" "$ret"
251 2a104ff6 2020-09-21 stsp return 1
252 2a104ff6 2020-09-21 stsp fi
253 2a104ff6 2020-09-21 stsp
254 2a104ff6 2020-09-21 stsp (cd $testroot/repo && git pack-refs --all)
255 2a104ff6 2020-09-21 stsp
256 2a104ff6 2020-09-21 stsp echo "modified alpha" > $testroot/repo/alpha
257 2a104ff6 2020-09-21 stsp git_commit $testroot/repo -m "modified alpha"
258 2a104ff6 2020-09-21 stsp local commit_id2=`git_show_head $testroot/repo`
259 2a104ff6 2020-09-21 stsp
260 2a104ff6 2020-09-21 stsp # ref 'master' now exists in both packed and loose forms
261 2a104ff6 2020-09-21 stsp
262 2a104ff6 2020-09-21 stsp got ref -l -r $testroot/repo > $testroot/stdout
263 2a104ff6 2020-09-21 stsp echo "HEAD: refs/heads/master" > $testroot/stdout.expected
264 2a104ff6 2020-09-21 stsp echo "refs/heads/master: $commit_id2" >> $testroot/stdout.expected
265 2a104ff6 2020-09-21 stsp echo "refs/heads/ref1: $commit_id" >> $testroot/stdout.expected
266 2a104ff6 2020-09-21 stsp echo "refs/heads/ref3: $commit_id" >> $testroot/stdout.expected
267 2a104ff6 2020-09-21 stsp cmp -s $testroot/stdout $testroot/stdout.expected
268 49c543a6 2022-03-31 naddy ret=$?
269 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
270 2a104ff6 2020-09-21 stsp diff -u $testroot/stdout.expected $testroot/stdout
271 2a104ff6 2020-09-21 stsp test_done "$testroot" "$ret"
272 2a104ff6 2020-09-21 stsp return 1
273 b2070a3f 2020-03-22 stsp fi
274 2a104ff6 2020-09-21 stsp
275 993f033b 2021-07-16 stsp got ref -r $testroot/repo -d master >/dev/null
276 2a104ff6 2020-09-21 stsp
277 2a104ff6 2020-09-21 stsp got ref -l -r $testroot/repo > $testroot/stdout
278 48cae60d 2020-09-22 stsp echo "HEAD: refs/heads/master" > $testroot/stdout.expected
279 48cae60d 2020-09-22 stsp echo "refs/heads/ref1: $commit_id" >> $testroot/stdout.expected
280 2a104ff6 2020-09-21 stsp echo "refs/heads/ref3: $commit_id" >> $testroot/stdout.expected
281 2a104ff6 2020-09-21 stsp cmp -s $testroot/stdout $testroot/stdout.expected
282 49c543a6 2022-03-31 naddy ret=$?
283 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
284 2a104ff6 2020-09-21 stsp diff -u $testroot/stdout.expected $testroot/stdout
285 2a104ff6 2020-09-21 stsp fi
286 b2070a3f 2020-03-22 stsp test_done "$testroot" "$ret"
287 b2070a3f 2020-03-22 stsp }
288 b2070a3f 2020-03-22 stsp
289 f6cae3ed 2020-09-13 naddy test_ref_list() {
290 b2070a3f 2020-03-22 stsp local testroot=`test_init ref_list`
291 b2070a3f 2020-03-22 stsp local commit_id=`git_show_head $testroot/repo`
292 b2070a3f 2020-03-22 stsp
293 b2070a3f 2020-03-22 stsp # Create a tag pointing at a commit ID
294 b2070a3f 2020-03-22 stsp got tag -r $testroot/repo -c $commit_id -m "1.0" "1.0" >/dev/null
295 49c543a6 2022-03-31 naddy ret=$?
296 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
297 b2070a3f 2020-03-22 stsp echo "got tag command failed unexpectedly"
298 b2070a3f 2020-03-22 stsp test_done "$testroot" "$ret"
299 b2070a3f 2020-03-22 stsp return 1
300 b2070a3f 2020-03-22 stsp fi
301 b2070a3f 2020-03-22 stsp local tag_id=`got ref -r $testroot/repo -l \
302 b2070a3f 2020-03-22 stsp | grep "^refs/tags/$tag" | tr -d ' ' | cut -d: -f2`
303 b2070a3f 2020-03-22 stsp
304 b2070a3f 2020-03-22 stsp # Create a ref based on repository's HEAD reference
305 b2070a3f 2020-03-22 stsp got ref -r $testroot/repo -c HEAD refs/foo/zoo
306 49c543a6 2022-03-31 naddy ret=$?
307 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
308 b2070a3f 2020-03-22 stsp echo "got ref command failed unexpectedly"
309 b2070a3f 2020-03-22 stsp test_done "$testroot" "$ret"
310 b2070a3f 2020-03-22 stsp return 1
311 b2070a3f 2020-03-22 stsp fi
312 b2070a3f 2020-03-22 stsp
313 b2070a3f 2020-03-22 stsp # Create a head ref based on another specific ref
314 b2070a3f 2020-03-22 stsp (cd $testroot/repo && got ref -c refs/heads/master refs/foo/bar/baz)
315 49c543a6 2022-03-31 naddy ret=$?
316 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
317 b2070a3f 2020-03-22 stsp test_done "$testroot" "$ret"
318 b2070a3f 2020-03-22 stsp return 1
319 b2070a3f 2020-03-22 stsp fi
320 b2070a3f 2020-03-22 stsp
321 75236079 2020-03-25 stsp # Create a HEAD ref in the namespace of a remote repository
322 75236079 2020-03-25 stsp (cd $testroot/repo && got ref -s refs/heads/master \
323 75236079 2020-03-25 stsp refs/remotes/origin/HEAD)
324 49c543a6 2022-03-31 naddy ret=$?
325 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
326 75236079 2020-03-25 stsp test_done "$testroot" "$ret"
327 75236079 2020-03-25 stsp return 1
328 75236079 2020-03-25 stsp fi
329 75236079 2020-03-25 stsp
330 b2070a3f 2020-03-22 stsp got ref -r $testroot/repo -l > $testroot/stdout
331 b2070a3f 2020-03-22 stsp
332 b2070a3f 2020-03-22 stsp echo "HEAD: refs/heads/master" > $testroot/stdout.expected
333 b2070a3f 2020-03-22 stsp echo "refs/foo/bar/baz: $commit_id" >> $testroot/stdout.expected
334 b2070a3f 2020-03-22 stsp echo "refs/foo/zoo: $commit_id" >> $testroot/stdout.expected
335 b2070a3f 2020-03-22 stsp echo "refs/heads/master: $commit_id" >> $testroot/stdout.expected
336 75236079 2020-03-25 stsp echo "refs/remotes/origin/HEAD: refs/heads/master" \
337 75236079 2020-03-25 stsp >> $testroot/stdout.expected
338 b2070a3f 2020-03-22 stsp echo "refs/tags/1.0: $tag_id" >> $testroot/stdout.expected
339 b2070a3f 2020-03-22 stsp cmp -s $testroot/stdout $testroot/stdout.expected
340 49c543a6 2022-03-31 naddy ret=$?
341 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
342 b2070a3f 2020-03-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
343 b2070a3f 2020-03-22 stsp test_done "$testroot" "$ret"
344 b2070a3f 2020-03-22 stsp return 1
345 b2070a3f 2020-03-22 stsp fi
346 b2070a3f 2020-03-22 stsp
347 b2070a3f 2020-03-22 stsp got ref -r $testroot/repo -l refs > $testroot/stdout
348 b2070a3f 2020-03-22 stsp
349 b2070a3f 2020-03-22 stsp echo "refs/foo/bar/baz: $commit_id" > $testroot/stdout.expected
350 b2070a3f 2020-03-22 stsp echo "refs/foo/zoo: $commit_id" >> $testroot/stdout.expected
351 b2070a3f 2020-03-22 stsp echo "refs/heads/master: $commit_id" >> $testroot/stdout.expected
352 75236079 2020-03-25 stsp echo "refs/remotes/origin/HEAD: refs/heads/master" \
353 75236079 2020-03-25 stsp >> $testroot/stdout.expected
354 b2070a3f 2020-03-22 stsp echo "refs/tags/1.0: $tag_id" >> $testroot/stdout.expected
355 b2070a3f 2020-03-22 stsp cmp -s $testroot/stdout $testroot/stdout.expected
356 49c543a6 2022-03-31 naddy ret=$?
357 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
358 b2070a3f 2020-03-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
359 b2070a3f 2020-03-22 stsp test_done "$testroot" "$ret"
360 b2070a3f 2020-03-22 stsp return 1
361 b2070a3f 2020-03-22 stsp fi
362 b2070a3f 2020-03-22 stsp
363 b2070a3f 2020-03-22 stsp got ref -r $testroot/repo -l refs/tags > $testroot/stdout
364 b2070a3f 2020-03-22 stsp
365 b2070a3f 2020-03-22 stsp echo "refs/tags/1.0: $tag_id" > $testroot/stdout.expected
366 b2070a3f 2020-03-22 stsp cmp -s $testroot/stdout $testroot/stdout.expected
367 49c543a6 2022-03-31 naddy ret=$?
368 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
369 b2070a3f 2020-03-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
370 b2070a3f 2020-03-22 stsp test_done "$testroot" "$ret"
371 b2070a3f 2020-03-22 stsp return 1
372 d1c1ae5f 2019-08-12 stsp fi
373 b2070a3f 2020-03-22 stsp
374 b2070a3f 2020-03-22 stsp for r in refs/foo/bar/baz refs/foo/bar/baz foo/bar/baz foo/bar; do
375 b2070a3f 2020-03-22 stsp got ref -r $testroot/repo -l $r > $testroot/stdout
376 b2070a3f 2020-03-22 stsp
377 b2070a3f 2020-03-22 stsp echo "refs/foo/bar/baz: $commit_id" > $testroot/stdout.expected
378 b2070a3f 2020-03-22 stsp cmp -s $testroot/stdout $testroot/stdout.expected
379 49c543a6 2022-03-31 naddy ret=$?
380 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
381 b2070a3f 2020-03-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
382 b2070a3f 2020-03-22 stsp test_done "$testroot" "$ret"
383 b2070a3f 2020-03-22 stsp return 1
384 b2070a3f 2020-03-22 stsp fi
385 b2070a3f 2020-03-22 stsp done
386 b2070a3f 2020-03-22 stsp
387 b2070a3f 2020-03-22 stsp for r in refs/foo foo; do
388 b2070a3f 2020-03-22 stsp got ref -r $testroot/repo -l $r > $testroot/stdout
389 b2070a3f 2020-03-22 stsp
390 b2070a3f 2020-03-22 stsp echo "refs/foo/bar/baz: $commit_id" > $testroot/stdout.expected
391 b2070a3f 2020-03-22 stsp echo "refs/foo/zoo: $commit_id" >> $testroot/stdout.expected
392 b2070a3f 2020-03-22 stsp cmp -s $testroot/stdout $testroot/stdout.expected
393 49c543a6 2022-03-31 naddy ret=$?
394 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
395 b2070a3f 2020-03-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
396 b2070a3f 2020-03-22 stsp test_done "$testroot" "$ret"
397 b2070a3f 2020-03-22 stsp return 1
398 b2070a3f 2020-03-22 stsp fi
399 b2070a3f 2020-03-22 stsp done
400 b2070a3f 2020-03-22 stsp
401 57c18198 2021-05-24 stsp for r in /refs/abc refs//foo/bar refs//foo//bar refs////////foo//bar; do
402 57c18198 2021-05-24 stsp got ref -r $testroot/repo -l $r > $testroot/stdout \
403 57c18198 2021-05-24 stsp 2> $testroot/stderr
404 b2070a3f 2020-03-22 stsp
405 57c18198 2021-05-24 stsp echo -n > $testroot/stdout.expected
406 b2070a3f 2020-03-22 stsp cmp -s $testroot/stdout $testroot/stdout.expected
407 49c543a6 2022-03-31 naddy ret=$?
408 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
409 b2070a3f 2020-03-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
410 57c18198 2021-05-24 stsp test_done "$testroot" "$ret"
411 57c18198 2021-05-24 stsp return 1
412 57c18198 2021-05-24 stsp fi
413 57c18198 2021-05-24 stsp
414 57c18198 2021-05-24 stsp echo "got: $r: bad reference name" > $testroot/stderr.expected
415 57c18198 2021-05-24 stsp cmp -s $testroot/stderr $testroot/stderr.expected
416 49c543a6 2022-03-31 naddy ret=$?
417 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
418 57c18198 2021-05-24 stsp diff -u $testroot/stderr.expected $testroot/stderr
419 b2070a3f 2020-03-22 stsp test_done "$testroot" "$ret"
420 b2070a3f 2020-03-22 stsp return 1
421 b2070a3f 2020-03-22 stsp fi
422 b2070a3f 2020-03-22 stsp done
423 b2070a3f 2020-03-22 stsp
424 b2070a3f 2020-03-22 stsp # attempt to list non-existing references
425 57c18198 2021-05-24 stsp for r in refs/fo bar baz moo riffs refs/abc refs/foo/bar/baz/moo; do
426 b2070a3f 2020-03-22 stsp got ref -r $testroot/repo -l $r > $testroot/stdout
427 b2070a3f 2020-03-22 stsp
428 b2070a3f 2020-03-22 stsp echo -n > $testroot/stdout.expected
429 b2070a3f 2020-03-22 stsp cmp -s $testroot/stdout $testroot/stdout.expected
430 49c543a6 2022-03-31 naddy ret=$?
431 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
432 b2070a3f 2020-03-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
433 b2070a3f 2020-03-22 stsp test_done "$testroot" "$ret"
434 b2070a3f 2020-03-22 stsp return 1
435 b2070a3f 2020-03-22 stsp fi
436 5e91dae4 2022-08-30 stsp done
437 b2070a3f 2020-03-22 stsp
438 d1c1ae5f 2019-08-12 stsp test_done "$testroot" "$ret"
439 d1c1ae5f 2019-08-12 stsp }
440 d1c1ae5f 2019-08-12 stsp
441 7fb414ae 2020-08-08 stsp test_parseargs "$@"
442 d1c1ae5f 2019-08-12 stsp run_test test_ref_create
443 d1c1ae5f 2019-08-12 stsp run_test test_ref_delete
444 b2070a3f 2020-03-22 stsp run_test test_ref_list