1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
#!/bin/sh
#
# Copyright (c) 2019 Stefan Sperling <stsp@openbsd.org>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
name=$(getent passwd $USER | cut -d: -f5)
export GOT_AUTHOR="$name <$(whoami)@$(hostname)>"
export MALLOC_OPTIONS=S
function git_init
{
git init -q "$@"
}
function git_commit
{
local repo="$1"
shift
(cd $repo && git commit -q -a "$@")
}
function git_rm
{
local repo="$1"
shift
(cd $repo && git rm -q "$@")
}
function git_show_head
{
local repo="$1"
(cd $repo && git show --no-patch --pretty='format:%H')
}
function make_test_tree
{
repo="$1"
echo alpha > $repo/alpha
echo beta > $repo/beta
mkdir $repo/gamma
echo delta > $repo/gamma/delta
mkdir $repo/epsilon
echo zeta > $repo/epsilon/zeta
(cd $repo && git add .)
}
function test_init
{
local testname="$1"
local no_tree="$2"
if [ -z "$testname" ]; then
echo "No test name provided" >&2
return 1
fi
local testroot=`mktemp -p /tmp -d got-test-$testname-XXXXXXXX`
mkdir $testroot/repo
git_init $testroot/repo
if [ -z "$no_tree" ]; then
make_test_tree $testroot/repo
git_commit $testroot/repo -m "adding the test tree"
fi
echo "$testroot"
}
function test_cleanup
{
local testroot="$1"
rm -rf "$testroot"
}
function run_test
{
testfunc="$1"
echo -n "$testfunc "
$testfunc
}
function test_done
{
local testroot="$1"
local result="$2"
if [ "$result" == "0" ]; then
test_cleanup "$testroot"
echo "ok"
else
echo "test failed; leaving test data in $testroot"
fi
}