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 0e673013 2019-01-02 stsp function git_init
18 0e673013 2019-01-02 stsp {
19 0e673013 2019-01-02 stsp git init -q "$@"
20 0e673013 2019-01-02 stsp }
21 0e673013 2019-01-02 stsp
22 0e673013 2019-01-02 stsp function git_commit
23 0e673013 2019-01-02 stsp {
24 0e673013 2019-01-02 stsp local repo="$1"
25 0e673013 2019-01-02 stsp shift
26 0e673013 2019-01-02 stsp (cd $repo && git commit -q -a "$@")
27 0e673013 2019-01-02 stsp }
28 0e673013 2019-01-02 stsp
29 9c4b8182 2019-01-02 stsp function git_show_head
30 9c4b8182 2019-01-02 stsp {
31 9c4b8182 2019-01-02 stsp local repo="$1"
32 9c4b8182 2019-01-02 stsp (cd $repo && git show --no-patch --pretty='format:%H')
33 9c4b8182 2019-01-02 stsp }
34 9c4b8182 2019-01-02 stsp
35 0e673013 2019-01-02 stsp function make_test_tree
36 0e673013 2019-01-02 stsp {
37 0e673013 2019-01-02 stsp repo="$1"
38 0e673013 2019-01-02 stsp
39 0e673013 2019-01-02 stsp echo alpha > $repo/alpha
40 0e673013 2019-01-02 stsp echo beta > $repo/beta
41 0e673013 2019-01-02 stsp mkdir $repo/gamma
42 0e673013 2019-01-02 stsp echo delta > $repo/gamma/delta
43 0e673013 2019-01-02 stsp mkdir $repo/epsilon
44 0e673013 2019-01-02 stsp echo zeta > $repo/epsilon/zeta
45 0e673013 2019-01-02 stsp (cd $repo && git add .)
46 0e673013 2019-01-02 stsp }
47 0e673013 2019-01-02 stsp
48 0e673013 2019-01-02 stsp function test_init
49 0e673013 2019-01-02 stsp {
50 0e673013 2019-01-02 stsp local testname="$1"
51 0e673013 2019-01-02 stsp if [ -z "$testname" ]; then
52 0e673013 2019-01-02 stsp echo "No test name provided" >&2
53 0e673013 2019-01-02 stsp return 1
54 0e673013 2019-01-02 stsp fi
55 0e673013 2019-01-02 stsp local testroot=`mktemp -p /tmp -d got-test-$testname-XXXXXXXX`
56 0e673013 2019-01-02 stsp mkdir $testroot/repo
57 0e673013 2019-01-02 stsp git_init $testroot/repo
58 0e673013 2019-01-02 stsp make_test_tree $testroot/repo
59 0e673013 2019-01-02 stsp git_commit $testroot/repo -m "adding the test tree"
60 0e673013 2019-01-02 stsp echo "$testroot"
61 0e673013 2019-01-02 stsp }
62 0e673013 2019-01-02 stsp
63 0e673013 2019-01-02 stsp function test_cleanup
64 0e673013 2019-01-02 stsp {
65 0e673013 2019-01-02 stsp local testroot="$1"
66 0e673013 2019-01-02 stsp rm -rf "$testroot"
67 0e673013 2019-01-02 stsp }
68 0e673013 2019-01-02 stsp
69 0e673013 2019-01-02 stsp function run_test
70 0e673013 2019-01-02 stsp {
71 0e673013 2019-01-02 stsp testfunc="$1"
72 370629d7 2019-01-02 stsp echo -n "$testfunc "
73 0e673013 2019-01-02 stsp $testfunc
74 0e673013 2019-01-02 stsp }
75 0e673013 2019-01-02 stsp
76 0e673013 2019-01-02 stsp function test_done
77 0e673013 2019-01-02 stsp {
78 0e673013 2019-01-02 stsp local testroot="$1"
79 0e673013 2019-01-02 stsp local result="$2"
80 0e673013 2019-01-02 stsp if [ "$result" == "0" ]; then
81 0e673013 2019-01-02 stsp test_cleanup "$testroot"
82 370629d7 2019-01-02 stsp echo "ok"
83 0e673013 2019-01-02 stsp else
84 0e673013 2019-01-02 stsp echo "test failed; leaving test data in $testroot"
85 0e673013 2019-01-02 stsp fi
86 0e673013 2019-01-02 stsp }