dockerized_openAger/nodered/rootfs/data/node_modules/poplib/tests/runner.sh

101 lines
2.5 KiB
Bash
Raw Normal View History

2020-10-17 16:42:50 +00:00
#!/bin/sh
# Test runner
#
# Copyright (C) 2011 by Ditesh Shashikant Gathani <ditesh@gathani.org>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
print_title() {
echo -e "\033[1;30mTesting ${1}\033[0;30m";
}
print_test() {
printf "%-60s" "$1";
}
print_result() {
echo $* | grep -q "fail"
# $1: 0 is expecting no failure, 1 is expecting failure
if [ $? -eq $1 ]; then
FAILCOUNT=`expr $FAILCOUNT + 1`
echo -e " [\033[1;31mFAIL\033[0;30m]";
else
PASSCOUNT=`expr $PASSCOUNT + 1`
echo -e " [\033[1;32mPASS\033[0;30m]";
fi
}
echo "runner.sh v0.1 - a test runner utility"
echo "Copyright (c) 2011 Ditesh Shashikant Gathani <ditesh@gathani.org>"
if [ $# -lt 6 ]; then
echo "Usage:"
echo " runner.sh username password host standard-port tls-port testemail@example.com [test]"
echo
echo " username: POP3 username"
echo " password: POP3 password"
echo " host: POP3 host"
echo " standard-port: POP3 port (eg 110)"
echo " tls-port: POP3 TLS port (eg 995)"
echo " email: valid email address on POP3 server which can receive emails"
echo " test: which test to run (default all)"
echo
exit 1
fi
USER=$1
PASS=$2
HOST=$3
PORT=$4
TLSPORT=$5
EMAIL=$6
FAILCOUNT=0
PASSCOUNT=0
if [ $# -eq 7 ]; then
echo
source ./$7
else
echo
source ./login.sh
echo
source ./basic.sh
echo
source ./apop.sh
echo
source ./stls.sh
echo
source ./tls.sh
fi
echo
echo -e "\033[1;30mSummary:"
echo -e " \033[1;32mPassed tests: ${PASSCOUNT}\033[0;30m"
echo -e " \033[1;31mFailed tests: ${FAILCOUNT}\033[0;30m"
echo