2017-02-04 17:46:12 +01:00
|
|
|
#!/bin/bash
|
2017-10-24 09:57:06 +02:00
|
|
|
# Run package_check tests against the app in the working directory on a Vagrant virtual machine.
|
2017-02-04 17:46:12 +01:00
|
|
|
|
|
|
|
# Fail on first error
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Configuration constants
|
2017-10-12 14:34:51 +02:00
|
|
|
APP_DIR="/vagrant"
|
2017-02-04 17:46:12 +01:00
|
|
|
|
|
|
|
function _usage() {
|
2017-10-24 09:57:06 +02:00
|
|
|
echo "Run package_check tests against the app in the working directory on a Vagrant virtual machine."
|
|
|
|
echo "Usage: test.sh [--verbose] [--help]"
|
2017-02-04 17:46:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# Configuration arguments
|
|
|
|
function _parse_args() {
|
|
|
|
VERBOSE=false
|
|
|
|
VERBOSE_OPT=''
|
|
|
|
while [ "$1" != "" ]; do
|
|
|
|
case $1 in
|
|
|
|
"-v" | "--verbose")
|
|
|
|
shift
|
|
|
|
VERBOSE=true
|
|
|
|
VERBOSE_OPT='--verbose';;
|
|
|
|
"--help")
|
|
|
|
_usage
|
|
|
|
exit;;
|
|
|
|
*)
|
|
|
|
_usage
|
|
|
|
exit 1;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
# Execute an ssh command on the vagrant box
|
|
|
|
function _vagrant_ssh() {
|
|
|
|
local command="$1"
|
|
|
|
local tty_output=$([ $VERBOSE ] && echo '/dev/stdout' || echo '/dev/null')
|
|
|
|
|
|
|
|
[ $VERBOSE == true ] && echo "vagrant ssh -c \"$command\""
|
|
|
|
|
|
|
|
vagrant ssh -c "$command" \
|
|
|
|
> $tty_output \
|
|
|
|
2> >(grep --invert-match 'Connection to 127.0.0.1 closed.' 1>&2) # Filter out the SSH deconnection message printed on stderr
|
2017-10-11 12:03:37 +02:00
|
|
|
local exit_code=$?
|
|
|
|
return $exit_code
|
2017-02-04 17:46:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function setup() {
|
2017-10-24 09:57:06 +02:00
|
|
|
echo "--- Setting up Vagrant VM ---"
|
|
|
|
vagrant up --provision
|
2017-02-04 17:46:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function test_package_check() {
|
2017-09-11 12:14:49 +02:00
|
|
|
echo "--- Running package_check ---"
|
2017-10-24 10:07:01 +02:00
|
|
|
_vagrant_ssh "package_check/package_check.sh --bash-mode '$APP_DIR'"
|
2017-02-04 17:46:12 +01:00
|
|
|
}
|
|
|
|
|
2017-10-24 13:28:39 +02:00
|
|
|
function abort() {
|
|
|
|
trap - SIGINT SIGTERM
|
|
|
|
echo "--- Aborting ---"
|
|
|
|
if (vagrant status | grep -q "running"); then
|
|
|
|
echo "Removing package_check lock…"
|
|
|
|
_vagrant_ssh "rm -f package_check/pcheck.lock"
|
|
|
|
fi
|
|
|
|
teardown
|
|
|
|
}
|
|
|
|
trap abort SIGINT SIGTERM
|
|
|
|
|
2017-02-04 17:46:12 +01:00
|
|
|
function teardown() {
|
|
|
|
echo "--- Cleaning up ---"
|
|
|
|
}
|
|
|
|
|
|
|
|
_parse_args $*
|
|
|
|
setup
|
2017-10-23 16:06:40 +02:00
|
|
|
test_package_check
|
2017-02-04 17:46:12 +01:00
|
|
|
teardown
|