Blame


1 0e673013 2019-01-02 stsp #!/bin/sh
2 0e673013 2019-01-02 stsp #
3 5aa81393 2020-01-06 stsp # Copyright (c) 2019, 2020 Stefan Sperling <stsp@openbsd.org>
4 0e673013 2019-01-02 stsp #
5 0e673013 2019-01-02 stsp # Permission to use, copy, modify, and distribute this software for any
6 0e673013 2019-01-02 stsp # purpose with or without fee is hereby granted, provided that the above
7 0e673013 2019-01-02 stsp # copyright notice and this permission notice appear in all copies.
8 0e673013 2019-01-02 stsp #
9 0e673013 2019-01-02 stsp # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 0e673013 2019-01-02 stsp # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 0e673013 2019-01-02 stsp # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 0e673013 2019-01-02 stsp # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 0e673013 2019-01-02 stsp # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 0e673013 2019-01-02 stsp # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 0e673013 2019-01-02 stsp # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 0e673013 2019-01-02 stsp
17 cde544b2 2023-02-17 op regress_run_only=""
18 cde544b2 2023-02-17 op
19 0b2899f8 2019-08-18 stsp export GIT_AUTHOR_NAME="Flan Hacker"
20 0b2899f8 2019-08-18 stsp export GIT_AUTHOR_EMAIL="flan_hacker@openbsd.org"
21 0b2899f8 2019-08-18 stsp export GIT_COMMITTER_NAME="$GIT_AUTHOR_NAME"
22 0b2899f8 2019-08-18 stsp export GIT_COMMITTER_EMAIL="$GIT_AUTHOR_EMAIL"
23 0b2899f8 2019-08-18 stsp export GOT_AUTHOR="$GIT_AUTHOR_NAME <$GIT_AUTHOR_EMAIL>"
24 82f6abb8 2019-08-14 stsp export GOT_AUTHOR_8="flan_hac"
25 e600f124 2021-03-21 stsp export GOT_AUTHOR_11="flan_hacker"
26 b1ebc001 2019-08-13 stsp export GOT_LOG_DEFAULT_LIMIT=0
27 11f4fa81 2020-10-01 stsp export GOT_TEST_ROOT="/tmp"
28 7370f802 2022-07-24 op export GOT_IGNORE_GITCONFIG=1
29 96afb0d6 2023-01-21 stsp export GOT_VERSION_STR=`got --version | cut -d ' ' -f2`
30 f6592003 2024-04-17 stsp export GOT_TEST_HTTP_PORT=8080
31 99a97f80 2023-03-04 naddy
32 99a97f80 2023-03-04 naddy export LC_ALL=C
33 c3754a5b 2019-05-10 stsp
34 7b67836a 2019-05-10 stsp export MALLOC_OPTIONS=S
35 7b67836a 2019-05-10 stsp
36 f6cae3ed 2020-09-13 naddy git_init()
37 0e673013 2019-01-02 stsp {
38 0b2899f8 2019-08-18 stsp git init -q "$1"
39 78caff98 2021-09-30 stsp
40 78caff98 2021-09-30 stsp # Switch the default branch to match our test expectations if needed.
41 78caff98 2021-09-30 stsp # Only need to change HEAD since 'git init' did not create any refs.
42 78caff98 2021-09-30 stsp # Relying on implementation details of 'git init' is no problem for us.
43 78caff98 2021-09-30 stsp # We want to be alerted when Git changes fundamental assumptions such
44 78caff98 2021-09-30 stsp # as what an empty repository looks like and where the default branch
45 78caff98 2021-09-30 stsp # is set. In such cases Got's own tooling might well need to change
46 78caff98 2021-09-30 stsp # its behaviour, too, and our tests should fail.
47 78caff98 2021-09-30 stsp # TODO: Update all tests to assume 'main' instead of 'master' and
48 78caff98 2021-09-30 stsp # switch to main here, to match Got's own default.
49 78caff98 2021-09-30 stsp echo "ref: refs/heads/master" > "$1/.git/HEAD"
50 0e673013 2019-01-02 stsp }
51 0e673013 2019-01-02 stsp
52 f6cae3ed 2020-09-13 naddy maybe_pack_repo()
53 b32c4525 2020-01-05 stsp {
54 b32c4525 2020-01-05 stsp local repo="$1"
55 b32c4525 2020-01-05 stsp if [ -n "$GOT_TEST_PACK" ]; then
56 c498e6d8 2023-02-17 op arg=""
57 c498e6d8 2023-02-17 op if [ "$GOT_TEST_PACK" = "ref-delta" ]; then
58 c498e6d8 2023-02-17 op arg="-D"
59 c498e6d8 2023-02-17 op fi
60 c498e6d8 2023-02-17 op
61 c498e6d8 2023-02-17 op (cd $repo && gotadmin pack -a $arg > /dev/null)
62 6fa5c67c 2022-01-03 stsp (cd $repo && gotadmin cleanup -a -q)
63 b32c4525 2020-01-05 stsp fi
64 b32c4525 2020-01-05 stsp }
65 b32c4525 2020-01-05 stsp
66 f6cae3ed 2020-09-13 naddy git_commit()
67 0e673013 2019-01-02 stsp {
68 0e673013 2019-01-02 stsp local repo="$1"
69 0e673013 2019-01-02 stsp shift
70 f73bf5bd 2023-10-01 naddy git -C $repo commit --author="$GOT_AUTHOR" -q -a "$@"
71 b32c4525 2020-01-05 stsp maybe_pack_repo $repo
72 0e673013 2019-01-02 stsp }
73 0e673013 2019-01-02 stsp
74 f6cae3ed 2020-09-13 naddy git_rm()
75 512f0d0e 2019-01-02 stsp {
76 512f0d0e 2019-01-02 stsp local repo="$1"
77 512f0d0e 2019-01-02 stsp shift
78 f73bf5bd 2023-10-01 naddy git -C $repo rm -q "$@"
79 512f0d0e 2019-01-02 stsp }
80 512f0d0e 2019-01-02 stsp
81 760a1ec3 2023-03-10 stsp git_rmdir()
82 760a1ec3 2023-03-10 stsp {
83 760a1ec3 2023-03-10 stsp local repo="$1"
84 760a1ec3 2023-03-10 stsp shift
85 f73bf5bd 2023-10-01 naddy git -C $repo rm -q -r "$@"
86 760a1ec3 2023-03-10 stsp }
87 760a1ec3 2023-03-10 stsp
88 f6cae3ed 2020-09-13 naddy git_show_head()
89 9c4b8182 2019-01-02 stsp {
90 9c4b8182 2019-01-02 stsp local repo="$1"
91 f73bf5bd 2023-10-01 naddy git -C $repo show --no-patch --pretty='format:%H'
92 9c4b8182 2019-01-02 stsp }
93 9c4b8182 2019-01-02 stsp
94 f6cae3ed 2020-09-13 naddy git_show_branch_head()
95 db32465d 2020-02-07 stsp {
96 db32465d 2020-02-07 stsp local repo="$1"
97 db32465d 2020-02-07 stsp local branch="$2"
98 f73bf5bd 2023-10-01 naddy git -C $repo show --no-patch --pretty='format:%H' $branch
99 db32465d 2020-02-07 stsp }
100 db32465d 2020-02-07 stsp
101 db32465d 2020-02-07 stsp
102 f6cae3ed 2020-09-13 naddy git_show_author_time()
103 bcb49d15 2019-08-14 stsp {
104 bcb49d15 2019-08-14 stsp local repo="$1"
105 01073a5d 2019-08-22 stsp local object="$2"
106 f73bf5bd 2023-10-01 naddy git -C $repo show --no-patch --pretty='format:%at' $object
107 bcb49d15 2019-08-14 stsp }
108 bcb49d15 2019-08-14 stsp
109 f6cae3ed 2020-09-13 naddy git_show_tagger_time()
110 8e7bd50a 2019-08-22 stsp {
111 8e7bd50a 2019-08-22 stsp local repo="$1"
112 8e7bd50a 2019-08-22 stsp local tag="$2"
113 f73bf5bd 2023-10-01 naddy git -C $repo cat-file tag $tag | grep ^tagger | \
114 f73bf5bd 2023-10-01 naddy sed -e "s/^tagger $GOT_AUTHOR//" | cut -d' ' -f2
115 8e7bd50a 2019-08-22 stsp }
116 8e7bd50a 2019-08-22 stsp
117 f6cae3ed 2020-09-13 naddy git_show_parent_commit()
118 818c7501 2019-07-11 stsp {
119 818c7501 2019-07-11 stsp local repo="$1"
120 70551d57 2020-04-24 stsp local commit="$2"
121 f73bf5bd 2023-10-01 naddy git -C $repo show --no-patch --pretty='format:%P' $commit
122 818c7501 2019-07-11 stsp }
123 818c7501 2019-07-11 stsp
124 f6cae3ed 2020-09-13 naddy git_show_tree()
125 03415a1a 2019-06-02 stsp {
126 03415a1a 2019-06-02 stsp local repo="$1"
127 f73bf5bd 2023-10-01 naddy git -C $repo show --no-patch --pretty='format:%T'
128 03415a1a 2019-06-02 stsp }
129 03415a1a 2019-06-02 stsp
130 f6cae3ed 2020-09-13 naddy trim_obj_id()
131 818c7501 2019-07-11 stsp {
132 9439a990 2020-09-16 naddy local trimcount=$1
133 9439a990 2020-09-16 naddy local id=$2
134 818c7501 2019-07-11 stsp
135 9439a990 2020-09-16 naddy local pat=""
136 9439a990 2020-09-16 naddy while [ "$trimcount" -gt 0 ]; do
137 818c7501 2019-07-11 stsp pat="[0-9a-f]$pat"
138 9439a990 2020-09-16 naddy trimcount=$((trimcount - 1))
139 818c7501 2019-07-11 stsp done
140 818c7501 2019-07-11 stsp
141 818c7501 2019-07-11 stsp echo ${id%$pat}
142 fd7552d2 2023-07-17 mark }
143 fd7552d2 2023-07-17 mark
144 79c49d84 2023-07-24 mark pop_idx()
145 fd7552d2 2023-07-17 mark {
146 fd7552d2 2023-07-17 mark shift "$1"
147 fd7552d2 2023-07-17 mark printf '%s' "${1:-index-out-of-bounds}"
148 818c7501 2019-07-11 stsp }
149 818c7501 2019-07-11 stsp
150 f6cae3ed 2020-09-13 naddy git_commit_tree()
151 03415a1a 2019-06-02 stsp {
152 03415a1a 2019-06-02 stsp local repo="$1"
153 03415a1a 2019-06-02 stsp local msg="$2"
154 03415a1a 2019-06-02 stsp local tree="$3"
155 f73bf5bd 2023-10-01 naddy git -C $repo commit-tree -m "$msg" "$tree"
156 03415a1a 2019-06-02 stsp }
157 03415a1a 2019-06-02 stsp
158 f0fd0aaf 2021-09-14 stsp git_fsck()
159 f0fd0aaf 2021-09-14 stsp {
160 f0fd0aaf 2021-09-14 stsp local testroot="$1"
161 f0fd0aaf 2021-09-14 stsp local repo="$2"
162 f0fd0aaf 2021-09-14 stsp
163 f73bf5bd 2023-10-01 naddy git -C $repo fsck --strict \
164 f73bf5bd 2023-10-01 naddy > $testroot/fsck.stdout 2> $testroot/fsck.stderr
165 49c543a6 2022-03-31 naddy ret=$?
166 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
167 f0fd0aaf 2021-09-14 stsp echo -n "git fsck: "
168 f0fd0aaf 2021-09-14 stsp cat $testroot/fsck.stderr
169 f0fd0aaf 2021-09-14 stsp echo "git fsck failed; leaving test data in $testroot"
170 f0fd0aaf 2021-09-14 stsp return 1
171 f0fd0aaf 2021-09-14 stsp fi
172 f0fd0aaf 2021-09-14 stsp
173 f0fd0aaf 2021-09-14 stsp return 0
174 f0fd0aaf 2021-09-14 stsp }
175 f0fd0aaf 2021-09-14 stsp
176 f6cae3ed 2020-09-13 naddy make_test_tree()
177 0e673013 2019-01-02 stsp {
178 0e673013 2019-01-02 stsp repo="$1"
179 0e673013 2019-01-02 stsp
180 0e673013 2019-01-02 stsp echo alpha > $repo/alpha
181 0e673013 2019-01-02 stsp echo beta > $repo/beta
182 0e673013 2019-01-02 stsp mkdir $repo/gamma
183 0e673013 2019-01-02 stsp echo delta > $repo/gamma/delta
184 0e673013 2019-01-02 stsp mkdir $repo/epsilon
185 0e673013 2019-01-02 stsp echo zeta > $repo/epsilon/zeta
186 0e673013 2019-01-02 stsp }
187 0e673013 2019-01-02 stsp
188 f6cae3ed 2020-09-13 naddy make_single_file_repo()
189 e7303626 2020-05-14 stsp {
190 e7303626 2020-05-14 stsp repo="$1"
191 e7303626 2020-05-14 stsp file="$2"
192 e7303626 2020-05-14 stsp
193 e7303626 2020-05-14 stsp mkdir $repo
194 e7303626 2020-05-14 stsp git_init $repo
195 e7303626 2020-05-14 stsp echo "this is file $file" > $repo/$file
196 f73bf5bd 2023-10-01 naddy git -C $repo add .
197 e7303626 2020-05-14 stsp git_commit $repo -m "intialize $repo with file $file"
198 e7303626 2020-05-14 stsp }
199 e7303626 2020-05-14 stsp
200 f6cae3ed 2020-09-13 naddy get_loose_object_path()
201 e7303626 2020-05-14 stsp {
202 e7303626 2020-05-14 stsp local repo="$1"
203 e7303626 2020-05-14 stsp local id="$2"
204 e7303626 2020-05-14 stsp local id0=`trim_obj_id 38 $id`
205 e7303626 2020-05-14 stsp local idrest=`echo ${id#[0-9a-f][0-9a-f]}`
206 e7303626 2020-05-14 stsp echo "$repo/.git/objects/$id0/$idrest"
207 e7303626 2020-05-14 stsp }
208 e7303626 2020-05-14 stsp
209 f6cae3ed 2020-09-13 naddy get_blob_id()
210 3ce1b845 2019-07-15 stsp {
211 3ce1b845 2019-07-15 stsp repo="$1"
212 3ce1b845 2019-07-15 stsp tree_path="$2"
213 3ce1b845 2019-07-15 stsp filename="$3"
214 3ce1b845 2019-07-15 stsp
215 e8863bdc 2020-07-23 stsp got tree -r $repo -i $tree_path | grep "[0-9a-f] ${filename}$" | \
216 e8863bdc 2020-07-23 stsp cut -d' ' -f 1
217 3ce1b845 2019-07-15 stsp }
218 3ce1b845 2019-07-15 stsp
219 f6cae3ed 2020-09-13 naddy test_init()
220 0e673013 2019-01-02 stsp {
221 0e673013 2019-01-02 stsp local testname="$1"
222 4a1ddfc2 2019-01-12 stsp local no_tree="$2"
223 0e673013 2019-01-02 stsp if [ -z "$testname" ]; then
224 0e673013 2019-01-02 stsp echo "No test name provided" >&2
225 0e673013 2019-01-02 stsp return 1
226 0e673013 2019-01-02 stsp fi
227 ea2819be 2023-05-29 op local testroot=`mktemp -d \
228 ea2819be 2023-05-29 op "$GOT_TEST_ROOT/got-test-$testname-XXXXXXXXXX"`
229 0e673013 2019-01-02 stsp mkdir $testroot/repo
230 0e673013 2019-01-02 stsp git_init $testroot/repo
231 4a1ddfc2 2019-01-12 stsp if [ -z "$no_tree" ]; then
232 4a1ddfc2 2019-01-12 stsp make_test_tree $testroot/repo
233 f73bf5bd 2023-10-01 naddy git -C $repo add .
234 4a1ddfc2 2019-01-12 stsp git_commit $testroot/repo -m "adding the test tree"
235 4a1ddfc2 2019-01-12 stsp fi
236 c8c71e6e 2020-03-21 stsp touch $testroot/repo/.git/git-daemon-export-ok
237 0e673013 2019-01-02 stsp echo "$testroot"
238 0e673013 2019-01-02 stsp }
239 0e673013 2019-01-02 stsp
240 f6cae3ed 2020-09-13 naddy test_cleanup()
241 0e673013 2019-01-02 stsp {
242 0e673013 2019-01-02 stsp local testroot="$1"
243 fe7842f5 2019-07-14 stsp
244 f0fd0aaf 2021-09-14 stsp git_fsck $testroot $testroot/repo
245 49c543a6 2022-03-31 naddy ret=$?
246 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
247 f0fd0aaf 2021-09-14 stsp return $ret
248 fe7842f5 2019-07-14 stsp fi
249 fe7842f5 2019-07-14 stsp
250 0e673013 2019-01-02 stsp rm -rf "$testroot"
251 0e673013 2019-01-02 stsp }
252 0e673013 2019-01-02 stsp
253 f6cae3ed 2020-09-13 naddy test_parseargs()
254 7fb414ae 2020-08-08 stsp {
255 6c8da0c6 2020-10-03 naddy while getopts qr: flag; do
256 6c8da0c6 2020-10-03 naddy case $flag in
257 6c8da0c6 2020-10-03 naddy q) export GOT_TEST_QUIET=1
258 6c8da0c6 2020-10-03 naddy ;;
259 75b17c2a 2023-01-10 op r) export GOT_TEST_ROOT=${OPTARG%/}
260 6c8da0c6 2020-10-03 naddy ;;
261 6c8da0c6 2020-10-03 naddy ?) echo "Supported options:"
262 6c8da0c6 2020-10-03 naddy echo " -q: quiet mode"
263 6c8da0c6 2020-10-03 naddy echo " -r PATH: use PATH as test data root directory"
264 6c8da0c6 2020-10-03 naddy exit 2
265 6c8da0c6 2020-10-03 naddy ;;
266 7fb414ae 2020-08-08 stsp esac
267 7fb414ae 2020-08-08 stsp done
268 cde544b2 2023-02-17 op shift $(($OPTIND - 1))
269 cde544b2 2023-02-17 op regress_run_only="$@"
270 6c8da0c6 2020-10-03 naddy } >&2
271 7fb414ae 2020-08-08 stsp
272 f6cae3ed 2020-09-13 naddy run_test()
273 0e673013 2019-01-02 stsp {
274 0e673013 2019-01-02 stsp testfunc="$1"
275 cde544b2 2023-02-17 op
276 cde544b2 2023-02-17 op if [ -n "$regress_run_only" ]; then
277 cde544b2 2023-02-17 op case "$regress_run_only" in
278 cde544b2 2023-02-17 op *$testfunc*) ;;
279 cde544b2 2023-02-17 op *) return ;;
280 cde544b2 2023-02-17 op esac
281 cde544b2 2023-02-17 op fi
282 cde544b2 2023-02-17 op
283 7fb414ae 2020-08-08 stsp if [ -z "$GOT_TEST_QUIET" ]; then
284 7fb414ae 2020-08-08 stsp echo -n "$testfunc "
285 7fb414ae 2020-08-08 stsp fi
286 0e673013 2019-01-02 stsp $testfunc
287 0e673013 2019-01-02 stsp }
288 0e673013 2019-01-02 stsp
289 f6cae3ed 2020-09-13 naddy test_done()
290 0e673013 2019-01-02 stsp {
291 0e673013 2019-01-02 stsp local testroot="$1"
292 0e673013 2019-01-02 stsp local result="$2"
293 54c39596 2020-12-28 stsp if [ "$result" = "0" ]; then
294 fe7842f5 2019-07-14 stsp test_cleanup "$testroot" || return 1
295 7fb414ae 2020-08-08 stsp if [ -z "$GOT_TEST_QUIET" ]; then
296 7fb414ae 2020-08-08 stsp echo "ok"
297 7fb414ae 2020-08-08 stsp fi
298 3941b73a 2019-05-14 stsp elif echo "$result" | grep -q "^xfail"; then
299 3941b73a 2019-05-14 stsp # expected test failure; test reproduces an unfixed bug
300 3941b73a 2019-05-14 stsp echo "$result"
301 17201126 2019-07-14 stsp test_cleanup "$testroot" || return 1
302 0e673013 2019-01-02 stsp else
303 0e673013 2019-01-02 stsp echo "test failed; leaving test data in $testroot"
304 0e673013 2019-01-02 stsp fi
305 0e673013 2019-01-02 stsp }