Blame


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