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 0b2899f8 2019-08-18 stsp export GIT_AUTHOR_NAME="Flan Hacker"
18 0b2899f8 2019-08-18 stsp export GIT_AUTHOR_EMAIL="flan_hacker@openbsd.org"
19 0b2899f8 2019-08-18 stsp export GIT_COMMITTER_NAME="$GIT_AUTHOR_NAME"
20 0b2899f8 2019-08-18 stsp export GIT_COMMITTER_EMAIL="$GIT_AUTHOR_EMAIL"
21 0b2899f8 2019-08-18 stsp export GOT_AUTHOR="$GIT_AUTHOR_NAME <$GIT_AUTHOR_EMAIL>"
22 82f6abb8 2019-08-14 stsp export GOT_AUTHOR_8="flan_hac"
23 b1ebc001 2019-08-13 stsp export GOT_LOG_DEFAULT_LIMIT=0
24 c3754a5b 2019-05-10 stsp
25 7b67836a 2019-05-10 stsp export MALLOC_OPTIONS=S
26 7b67836a 2019-05-10 stsp
27 0e673013 2019-01-02 stsp function git_init
28 0e673013 2019-01-02 stsp {
29 0b2899f8 2019-08-18 stsp git init -q "$1"
30 0e673013 2019-01-02 stsp }
31 0e673013 2019-01-02 stsp
32 b32c4525 2020-01-05 stsp function maybe_pack_repo
33 b32c4525 2020-01-05 stsp {
34 b32c4525 2020-01-05 stsp local repo="$1"
35 b32c4525 2020-01-05 stsp if [ -n "$GOT_TEST_PACK" ]; then
36 b32c4525 2020-01-05 stsp (cd $repo && git repack -a -q)
37 b32c4525 2020-01-05 stsp fi
38 b32c4525 2020-01-05 stsp }
39 b32c4525 2020-01-05 stsp
40 0e673013 2019-01-02 stsp function git_commit
41 0e673013 2019-01-02 stsp {
42 0e673013 2019-01-02 stsp local repo="$1"
43 0e673013 2019-01-02 stsp shift
44 0b2899f8 2019-08-18 stsp (cd $repo && git commit --author="$GOT_AUTHOR" -q -a "$@")
45 b32c4525 2020-01-05 stsp maybe_pack_repo $repo
46 0e673013 2019-01-02 stsp }
47 0e673013 2019-01-02 stsp
48 512f0d0e 2019-01-02 stsp function git_rm
49 512f0d0e 2019-01-02 stsp {
50 512f0d0e 2019-01-02 stsp local repo="$1"
51 512f0d0e 2019-01-02 stsp shift
52 512f0d0e 2019-01-02 stsp (cd $repo && git rm -q "$@")
53 512f0d0e 2019-01-02 stsp }
54 512f0d0e 2019-01-02 stsp
55 9c4b8182 2019-01-02 stsp function git_show_head
56 9c4b8182 2019-01-02 stsp {
57 9c4b8182 2019-01-02 stsp local repo="$1"
58 9c4b8182 2019-01-02 stsp (cd $repo && git show --no-patch --pretty='format:%H')
59 9c4b8182 2019-01-02 stsp }
60 9c4b8182 2019-01-02 stsp
61 db32465d 2020-02-07 stsp function git_show_branch_head
62 db32465d 2020-02-07 stsp {
63 db32465d 2020-02-07 stsp local repo="$1"
64 db32465d 2020-02-07 stsp local branch="$2"
65 db32465d 2020-02-07 stsp (cd $repo && git show --no-patch --pretty='format:%H' $branch)
66 db32465d 2020-02-07 stsp }
67 db32465d 2020-02-07 stsp
68 db32465d 2020-02-07 stsp
69 bcb49d15 2019-08-14 stsp function git_show_author_time
70 bcb49d15 2019-08-14 stsp {
71 bcb49d15 2019-08-14 stsp local repo="$1"
72 01073a5d 2019-08-22 stsp local object="$2"
73 01073a5d 2019-08-22 stsp (cd $repo && git show --no-patch --pretty='format:%at' $object)
74 bcb49d15 2019-08-14 stsp }
75 bcb49d15 2019-08-14 stsp
76 8e7bd50a 2019-08-22 stsp function git_show_tagger_time
77 8e7bd50a 2019-08-22 stsp {
78 8e7bd50a 2019-08-22 stsp local repo="$1"
79 8e7bd50a 2019-08-22 stsp local tag="$2"
80 8e7bd50a 2019-08-22 stsp (cd $repo && git cat-file tag $tag | grep ^tagger | \
81 8e7bd50a 2019-08-22 stsp sed -e "s/^tagger $GOT_AUTHOR//" | cut -d' ' -f2)
82 8e7bd50a 2019-08-22 stsp }
83 8e7bd50a 2019-08-22 stsp
84 818c7501 2019-07-11 stsp function git_show_parent_commit
85 818c7501 2019-07-11 stsp {
86 818c7501 2019-07-11 stsp local repo="$1"
87 818c7501 2019-07-11 stsp (cd $repo && git show --no-patch --pretty='format:%P')
88 818c7501 2019-07-11 stsp }
89 818c7501 2019-07-11 stsp
90 03415a1a 2019-06-02 stsp function git_show_tree
91 03415a1a 2019-06-02 stsp {
92 03415a1a 2019-06-02 stsp local repo="$1"
93 03415a1a 2019-06-02 stsp (cd $repo && git show --no-patch --pretty='format:%T')
94 03415a1a 2019-06-02 stsp }
95 03415a1a 2019-06-02 stsp
96 818c7501 2019-07-11 stsp function trim_obj_id
97 818c7501 2019-07-11 stsp {
98 818c7501 2019-07-11 stsp let trimcount=$1
99 818c7501 2019-07-11 stsp id=$2
100 818c7501 2019-07-11 stsp
101 818c7501 2019-07-11 stsp pat=""
102 818c7501 2019-07-11 stsp while [ trimcount -gt 0 ]; do
103 818c7501 2019-07-11 stsp pat="[0-9a-f]$pat"
104 818c7501 2019-07-11 stsp let trimcount--
105 818c7501 2019-07-11 stsp done
106 818c7501 2019-07-11 stsp
107 818c7501 2019-07-11 stsp echo ${id%$pat}
108 818c7501 2019-07-11 stsp }
109 818c7501 2019-07-11 stsp
110 03415a1a 2019-06-02 stsp function git_commit_tree
111 03415a1a 2019-06-02 stsp {
112 03415a1a 2019-06-02 stsp local repo="$1"
113 03415a1a 2019-06-02 stsp local msg="$2"
114 03415a1a 2019-06-02 stsp local tree="$3"
115 03415a1a 2019-06-02 stsp (cd $repo && git commit-tree -m "$msg" "$tree")
116 b32c4525 2020-01-05 stsp maybe_pack_repo $repo
117 03415a1a 2019-06-02 stsp }
118 03415a1a 2019-06-02 stsp
119 0e673013 2019-01-02 stsp function make_test_tree
120 0e673013 2019-01-02 stsp {
121 0e673013 2019-01-02 stsp repo="$1"
122 0e673013 2019-01-02 stsp
123 0e673013 2019-01-02 stsp echo alpha > $repo/alpha
124 0e673013 2019-01-02 stsp echo beta > $repo/beta
125 0e673013 2019-01-02 stsp mkdir $repo/gamma
126 0e673013 2019-01-02 stsp echo delta > $repo/gamma/delta
127 0e673013 2019-01-02 stsp mkdir $repo/epsilon
128 0e673013 2019-01-02 stsp echo zeta > $repo/epsilon/zeta
129 0e673013 2019-01-02 stsp }
130 0e673013 2019-01-02 stsp
131 3ce1b845 2019-07-15 stsp function get_blob_id
132 3ce1b845 2019-07-15 stsp {
133 3ce1b845 2019-07-15 stsp repo="$1"
134 3ce1b845 2019-07-15 stsp tree_path="$2"
135 3ce1b845 2019-07-15 stsp filename="$3"
136 3ce1b845 2019-07-15 stsp
137 3ce1b845 2019-07-15 stsp got tree -r $repo -i $tree_path | grep ${filename}$ | cut -d' ' -f 1
138 3ce1b845 2019-07-15 stsp }
139 3ce1b845 2019-07-15 stsp
140 0e673013 2019-01-02 stsp function test_init
141 0e673013 2019-01-02 stsp {
142 0e673013 2019-01-02 stsp local testname="$1"
143 4a1ddfc2 2019-01-12 stsp local no_tree="$2"
144 0e673013 2019-01-02 stsp if [ -z "$testname" ]; then
145 0e673013 2019-01-02 stsp echo "No test name provided" >&2
146 0e673013 2019-01-02 stsp return 1
147 0e673013 2019-01-02 stsp fi
148 0e673013 2019-01-02 stsp local testroot=`mktemp -p /tmp -d got-test-$testname-XXXXXXXX`
149 0e673013 2019-01-02 stsp mkdir $testroot/repo
150 0e673013 2019-01-02 stsp git_init $testroot/repo
151 4a1ddfc2 2019-01-12 stsp if [ -z "$no_tree" ]; then
152 4a1ddfc2 2019-01-12 stsp make_test_tree $testroot/repo
153 3ce1b845 2019-07-15 stsp (cd $repo && git add .)
154 4a1ddfc2 2019-01-12 stsp git_commit $testroot/repo -m "adding the test tree"
155 4a1ddfc2 2019-01-12 stsp fi
156 c8c71e6e 2020-03-21 stsp touch $testroot/repo/.git/git-daemon-export-ok
157 0e673013 2019-01-02 stsp echo "$testroot"
158 0e673013 2019-01-02 stsp }
159 0e673013 2019-01-02 stsp
160 0e673013 2019-01-02 stsp function test_cleanup
161 0e673013 2019-01-02 stsp {
162 0e673013 2019-01-02 stsp local testroot="$1"
163 fe7842f5 2019-07-14 stsp
164 fe7842f5 2019-07-14 stsp (cd $testroot/repo && git fsck --strict \
165 fe7842f5 2019-07-14 stsp > $testroot/fsck.stdout 2> $testroot/fsck.stderr)
166 fe7842f5 2019-07-14 stsp ret="$?"
167 fe7842f5 2019-07-14 stsp if [ "$ret" != "0" ]; then
168 fe7842f5 2019-07-14 stsp echo -n "git fsck: "
169 fe7842f5 2019-07-14 stsp cat $testroot/fsck.stderr
170 fe7842f5 2019-07-14 stsp echo "git fsck failed; leaving test data in $testroot"
171 fe7842f5 2019-07-14 stsp return 1
172 fe7842f5 2019-07-14 stsp fi
173 fe7842f5 2019-07-14 stsp
174 0e673013 2019-01-02 stsp rm -rf "$testroot"
175 0e673013 2019-01-02 stsp }
176 0e673013 2019-01-02 stsp
177 0e673013 2019-01-02 stsp function run_test
178 0e673013 2019-01-02 stsp {
179 0e673013 2019-01-02 stsp testfunc="$1"
180 370629d7 2019-01-02 stsp echo -n "$testfunc "
181 0e673013 2019-01-02 stsp $testfunc
182 0e673013 2019-01-02 stsp }
183 0e673013 2019-01-02 stsp
184 0e673013 2019-01-02 stsp function test_done
185 0e673013 2019-01-02 stsp {
186 0e673013 2019-01-02 stsp local testroot="$1"
187 0e673013 2019-01-02 stsp local result="$2"
188 0e673013 2019-01-02 stsp if [ "$result" == "0" ]; then
189 fe7842f5 2019-07-14 stsp test_cleanup "$testroot" || return 1
190 370629d7 2019-01-02 stsp echo "ok"
191 3941b73a 2019-05-14 stsp elif echo "$result" | grep -q "^xfail"; then
192 3941b73a 2019-05-14 stsp # expected test failure; test reproduces an unfixed bug
193 3941b73a 2019-05-14 stsp echo "$result"
194 17201126 2019-07-14 stsp test_cleanup "$testroot" || return 1
195 0e673013 2019-01-02 stsp else
196 0e673013 2019-01-02 stsp echo "test failed; leaving test data in $testroot"
197 0e673013 2019-01-02 stsp fi
198 0e673013 2019-01-02 stsp }