nextcloud/build/integration/run.sh

66 lines
1.5 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
2016-06-14 16:03:59 +02:00
COMPOSER=$(which composer)
if [ -x "$COMPOSER" ]; then
echo "Using composer executable $COMPOSER"
else
echo "Could not find composer executable" >&2
exit 1
fi
# Disable bruteforce protection because the integration tests do trigger them
../../occ config:system:set auth.bruteforce.protection.enabled --value false --type bool
composer install
2015-12-04 13:43:08 +01:00
SCENARIO_TO_RUN=$1
HIDE_OC_LOGS=$2
# avoid port collision on jenkins - use $EXECUTOR_NUMBER
if [ -z "$EXECUTOR_NUMBER" ]; then
EXECUTOR_NUMBER=0
fi
PORT=$((8080 + $EXECUTOR_NUMBER))
echo $PORT
php -S localhost:$PORT -t ../.. &
PHPPID=$!
echo $PHPPID
PORT_FED=$((8180 + $EXECUTOR_NUMBER))
echo $PORT_FED
php -S localhost:$PORT_FED -t ../.. &
PHPPID_FED=$!
echo $PHPPID_FED
export TEST_SERVER_URL="http://localhost:$PORT/ocs/"
export TEST_SERVER_FED_URL="http://localhost:$PORT_FED/ocs/"
#Enable external storage app
../../occ app:enable files_external
2016-08-30 12:53:19 +02:00
mkdir -p work/local_storage
OUTPUT_CREATE_STORAGE=`../../occ files_external:create local_storage local null::null -c datadir=./build/integration/work/local_storage`
ID_STORAGE=`echo $OUTPUT_CREATE_STORAGE | awk {'print $5'}`
2016-08-10 09:26:35 +02:00
../../occ files_external:option $ID_STORAGE enable_sharing true
2015-12-04 13:53:11 +01:00
vendor/bin/behat -f junit -f pretty $SCENARIO_TO_RUN
RESULT=$?
kill $PHPPID
kill $PHPPID_FED
2016-08-10 09:26:35 +02:00
../../occ files_external:delete -y $ID_STORAGE
#Disable external storage app
../../occ app:disable files_external
2015-12-04 13:43:08 +01:00
if [ -z $HIDE_OC_LOGS ]; then
tail "../../data/nextcloud.log"
2015-12-04 13:43:08 +01:00
fi
exit $RESULT