2015-10-07 22:08:30 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-10-10 22:24:20 +02:00
|
|
|
if [[ -z $TMPDIR ]]; then
|
|
|
|
TMPDIR=/tmp
|
|
|
|
else
|
|
|
|
echo "Using TMPDIR=$TMPDIR"
|
|
|
|
fi
|
|
|
|
|
2015-11-03 21:11:07 +01:00
|
|
|
set -eu
|
2015-10-07 22:08:30 +02:00
|
|
|
|
2016-01-09 14:20:04 +01:00
|
|
|
cd "$(dirname "$0")"
|
2016-11-26 13:43:50 +01:00
|
|
|
MYNAME=$(basename "$0")
|
2019-05-01 13:06:52 +02:00
|
|
|
TESTDIR=$TMPDIR/gocryptfs-test-parent-$UID
|
2018-03-06 21:35:10 +01:00
|
|
|
mkdir -p $TESTDIR
|
2016-11-26 13:43:50 +01:00
|
|
|
LOCKFILE=$TESTDIR/$MYNAME.lock
|
2016-01-09 14:20:04 +01:00
|
|
|
|
2018-03-06 21:35:10 +01:00
|
|
|
function unmount_leftovers {
|
2018-03-06 21:45:49 +01:00
|
|
|
RET=0
|
2018-03-06 21:35:10 +01:00
|
|
|
for i in $(mount | grep $TESTDIR | cut -f3 -d" "); do
|
|
|
|
echo "Warning: unmounting leftover filesystem: $i"
|
|
|
|
tests/fuse-unmount.bash $i
|
2018-03-06 21:45:49 +01:00
|
|
|
RET=1
|
2018-03-06 21:35:10 +01:00
|
|
|
done
|
2018-03-06 21:45:49 +01:00
|
|
|
return $RET
|
2018-03-06 21:35:10 +01:00
|
|
|
}
|
2016-11-26 13:43:50 +01:00
|
|
|
|
|
|
|
(
|
|
|
|
# Prevent multiple parallel test.bash instances as this causes
|
|
|
|
# all kinds of mayham
|
2018-03-05 21:11:46 +01:00
|
|
|
if ! command -v flock > /dev/null ; then
|
|
|
|
echo "flock is not available, skipping"
|
|
|
|
elif ! flock -n 200 ; then
|
2016-11-26 13:43:50 +01:00
|
|
|
echo "Could not acquire lock on $LOCKFILE - already running?"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2018-03-06 21:45:49 +01:00
|
|
|
# Clean up dangling filesystems and don't exit if we found some
|
|
|
|
unmount_leftovers || true
|
2016-10-08 21:59:21 +02:00
|
|
|
|
2017-03-05 13:32:28 +01:00
|
|
|
./build-without-openssl.bash
|
2018-03-05 23:00:36 +01:00
|
|
|
# Don't build with openssl if we were passed "-tags without_openssl"
|
|
|
|
if [[ "$@" != *without_openssl* ]] ; then
|
2017-03-05 13:32:28 +01:00
|
|
|
./build.bash
|
2017-02-17 19:41:29 +01:00
|
|
|
fi
|
2016-02-06 20:22:45 +01:00
|
|
|
|
2017-11-12 13:04:31 +01:00
|
|
|
if ! go tool | grep vet > /dev/null ; then
|
2017-10-22 15:00:19 +02:00
|
|
|
echo "'go tool vet' not available - skipping"
|
2017-11-12 13:04:31 +01:00
|
|
|
elif [[ -d vendor ]] ; then
|
|
|
|
echo "vendor directory exists, skipping 'go tool vet'"
|
|
|
|
else
|
2019-03-31 15:16:20 +02:00
|
|
|
go vet "$@" .
|
2016-10-04 22:42:30 +02:00
|
|
|
fi
|
2016-11-26 13:43:50 +01:00
|
|
|
|
2018-02-26 23:18:12 +01:00
|
|
|
# We don't want all the subprocesses
|
|
|
|
# holding the lock file open
|
|
|
|
# vvvvv
|
2018-03-05 21:46:33 +01:00
|
|
|
go test -count 1 ./... "$@" 200>&-
|
2018-02-26 23:18:12 +01:00
|
|
|
# ^^^^^^^^
|
|
|
|
# Disable result caching
|
2016-12-10 14:53:04 +01:00
|
|
|
|
2018-03-06 21:45:49 +01:00
|
|
|
# Clean up dangling filesystems but do exit with an error if we found one
|
|
|
|
unmount_leftovers || { echo "Error: the tests left mounted filesystems behind" ; exit 1 ; }
|
|
|
|
|
2016-12-10 14:53:04 +01:00
|
|
|
# The tests cannot to this themselves as they are run in parallel.
|
|
|
|
# Don't descend into possibly still mounted example filesystems.
|
2018-03-05 23:40:08 +01:00
|
|
|
if [[ $OSTYPE == *linux* ]] ; then
|
|
|
|
rm -Rf --one-file-system $TESTDIR
|
|
|
|
else
|
|
|
|
# MacOS "rm" does not understand "--one-file-system"
|
|
|
|
rm -Rf $TESTDIR
|
|
|
|
fi
|
2016-12-10 14:53:04 +01:00
|
|
|
|
2018-06-25 22:45:44 +02:00
|
|
|
if grep -R "panic(" *.go internal ; then
|
2016-12-10 11:54:54 +01:00
|
|
|
echo "Please use log.Panic instead of naked panic!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2016-11-26 13:43:50 +01:00
|
|
|
) 200> $LOCKFILE
|