1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-03 00:07:05 +00:00
mailinabox/tests/runner.sh
downtownallday 8e4c48bae1 Merge branch 'main' of https://github.com/mail-in-a-box/mailinabox
# Conflicts:
#	management/backup.py
2023-09-02 16:44:42 -04:00

147 lines
3.1 KiB
Bash
Executable File

#!/bin/bash
# -*- indent-tabs-mode: t; tab-width: 4; -*-
#####
##### This file is part of Mail-in-a-Box-LDAP which is released under the
##### terms of the GNU Affero General Public License as published by the
##### Free Software Foundation, either version 3 of the License, or (at
##### your option) any later version. See file LICENSE or go to
##### https://github.com/downtownallday/mailinabox-ldap for full license
##### details.
#####
#
# Runner for test suites
#
# operate from the runner's directory
cd "$(dirname $0)"
# load global functions and variables
. suites/_init.sh
. suites/_init_miabldap.sh
default_suites=(
ldap-connection
ldap-access
dns-basic
mail-basic
mail-from
mail-aliases
mail-access
management-users
management
z-push
roundcube # browser tests
)
extra_suites=(
ehdd
remote-nextcloud
"upgrade-<name>"
)
usage() {
echo ""
echo "Usage: $(basename $0) [options] [suite-name ...]"
echo "Run QA tests"
echo ""
echo "Default test suites:"
echo "--------------------"
for runner_suite in ${default_suites[@]}; do
echo " $runner_suite"
done
echo ""
echo "Extra test suites:"
echo "------------------"
echo " ehdd : test encryption-at-rest"
echo " remote-nextcloud : test the setup mod for remote Nextcloud"
echo " upgrade-<name> : verify an upgrade using named populate data"
echo ""
echo "If no suite-name(s) are given, all default suites are run"
echo ""
echo "Options:"
echo "--------"
echo " -failfatal The runner will stop if any test fails"
echo " -dumpoutput After all tests have run, dump all failed test output"
echo " -no-smtp-remote Skip tests requiring a remote SMTP server"
echo ""
echo "Output directory: ${BASE_OUTPUTDIR}"
echo ""
exit 1
}
# process command line
while [ $# -gt 0 ]; do
case "$1" in
-failfatal )
# failure is fatal (via global option, see _init.sh)
FAILURE_IS_FATAL=yes
;;
-dumpoutput )
DUMP_FAILED_TESTS_OUTPUT="yes"
;;
-no-smtp-remote )
SKIP_REMOTE_SMTP_TESTS="yes"
;;
-* )
echo "Invalid argument $1" 1>&2
usage
;;
* )
# run named suite
if [ $OVERALL_COUNT_SUITES -eq 0 ]; then
rm -rf "${BASE_OUTPUTDIR}"
fi
case "$1" in
default )
# run all default suites
for suite in ${default_suites[@]}; do
. suites/$suite.sh
done
;;
upgrade-* )
# run upgrade suite with named populate data
. "suites/upgrade.sh" "$(awk -F- '{print $2}' <<< "$1")"
;;
* )
if array_contains "$1" "${default_suites[@]}" || \
array_contains "$1" "${extra_suites[@]}"
then
# run specified suite
. "suites/$1.sh"
else
echo "Unknown suite '$1'" 1>&2
usage
fi
;;
esac
esac
shift
done
# if no suites specified on command line, run all default suites
if [ $OVERALL_COUNT_SUITES -eq 0 ]; then
rm -rf "${BASE_OUTPUTDIR}"
for suite in ${default_suites[@]}; do
. suites/$suite.sh
done
fi
echo ""
echo "Done"
echo "$OVERALL_COUNT tests ($OVERALL_SUCCESSES success/$OVERALL_FAILURES failures/$OVERALL_SKIPPED skipped) in $OVERALL_COUNT_SUITES test suites"
if [ $OVERALL_FAILURES -gt 0 ]; then
dump_failed_tests_output
exit 1
else
exit 0
fi