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
|
#!/bin/bash
#----------------------------------------------------------------------
# Test suite for InterIMAP
# Copyright © 2019 Guilhem Moulin <guilhem@fripost.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#----------------------------------------------------------------------
set -ue
PATH=/usr/bin:/bin
export PATH
BASEDIR="$(dirname -- "$0")"
RUN="$BASEDIR/run"
list="$1"
failed=0
while IFS="" read -r x; do
if [[ "$x" =~ ^([[:blank:]]*)([^[:blank:]#]+)[[:blank:]]+(.*)$ ]]; then
indent="${BASH_REMATCH[1]}"
t="${BASH_REMATCH[2]}"
desc="${BASH_REMATCH[3]}"
if [ "$t" = "." ]; then
printf "%s%s:\\n" "$indent" "$desc"
continue
elif [ "$t" = "..." ]; then
t="$desc"
desc="..."
fi
elif [[ "$x" =~ ^([[:blank:]]*)([^[:blank:]#]+)$ ]]; then
indent="${BASH_REMATCH[1]}"
t="${BASH_REMATCH[2]}"
unset desc
else
continue
fi
if [ ! -d "$BASEDIR/$t" ]; then
printf "WARN: %s does doesn't exist, skipping\\n" "$t" >&2
continue
fi
INDENT="$indent" "$RUN" "$t" ${desc+"$desc"} || failed=$(( failed+1 ))
done <"$BASEDIR/$list"
if [ $failed -eq 0 ]; then
printf "All tests passed.\\n"
exit 0
else
printf "%d test(s) failed.\\n" $failed
exit 1
fi
|