blob: bfef037e831f38b14f0548646de5ae8749ecc83c [file] [log] [blame]
#!/bin/sh -e
printUsage() {
echo "Usage : "
echo "./integration_tests.sh URL BRANCH JAMES_IP JAMES_IMAP_PORT"
echo " JAMES_IP: IP of the James server to be tests"
echo " JAMES_IMAP_PORT: Exposed IMAP port of this James server"
echo " SHA1(optional): Branch to build or master if none"
exit 1
}
ORIGIN=/origin
for arg in "$@"
do
case $arg in
-*)
echo "Invalid option: -$OPTARG"
printUsage
;;
*)
if ! [ -z "$1" ]; then
JAMES_ADDRESS=$1
fi
if ! [ -z "$2" ]; then
JAMES_IMAP_PORT=$2
fi
if ! [ -z "$3" ]; then
SHA1=$3
fi
;;
esac
done
if [ -z "$JAMES_ADDRESS" ]; then
echo "You must provide a JAMES_ADDRESS"
printUsage
fi
if [ -z "$JAMES_IMAP_PORT" ]; then
echo "You must provide a JAMES_IMAP_PORT"
printUsage
fi
if [ -z "$SHA1" ]; then
SHA1=master
fi
export JAMES_ADDRESS=$JAMES_ADDRESS
export JAMES_IMAP_PORT=$JAMES_IMAP_PORT
git clone $ORIGIN/.
git checkout $SHA1
mvn -DskipTests -pl org.apache.james:apache-james-mpt-external-james -am install
mvn -pl org.apache.james:apache-james-mpt-external-james test -Pintegration-tests