2015-08-06 16:44:24 +03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2016-11-08 00:52:07 +03:00
|
|
|
OC_PATH=../../
|
|
|
|
OCC=${OC_PATH}occ
|
2016-11-21 16:00:54 +03:00
|
|
|
SCENARIO_TO_RUN=$1
|
|
|
|
HIDE_OC_LOGS=$2
|
|
|
|
|
2016-12-16 19:29:27 +03:00
|
|
|
INSTALLED=$($OCC status | grep installed: | cut -d " " -f 5)
|
|
|
|
|
|
|
|
if [ "$INSTALLED" == "true" ]; then
|
|
|
|
# Disable bruteforce protection because the integration tests do trigger them
|
|
|
|
$OCC config:system:set auth.bruteforce.protection.enabled --value false --type bool
|
|
|
|
else
|
|
|
|
if [ "$SCENARIO_TO_RUN" != "setup_features/setup.feature" ]; then
|
|
|
|
echo "Nextcloud instance needs to be installed" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
composer install
|
|
|
|
|
2015-12-01 11:24:40 +03:00
|
|
|
# avoid port collision on jenkins - use $EXECUTOR_NUMBER
|
2015-09-29 14:56:56 +03:00
|
|
|
if [ -z "$EXECUTOR_NUMBER" ]; then
|
|
|
|
EXECUTOR_NUMBER=0
|
|
|
|
fi
|
|
|
|
PORT=$((8080 + $EXECUTOR_NUMBER))
|
2015-08-06 16:44:24 +03:00
|
|
|
echo $PORT
|
|
|
|
php -S localhost:$PORT -t ../.. &
|
|
|
|
PHPPID=$!
|
|
|
|
echo $PHPPID
|
|
|
|
|
2015-11-24 15:48:06 +03:00
|
|
|
PORT_FED=$((8180 + $EXECUTOR_NUMBER))
|
|
|
|
echo $PORT_FED
|
|
|
|
php -S localhost:$PORT_FED -t ../.. &
|
|
|
|
PHPPID_FED=$!
|
|
|
|
echo $PHPPID_FED
|
|
|
|
|
2015-09-29 14:56:56 +03:00
|
|
|
export TEST_SERVER_URL="http://localhost:$PORT/ocs/"
|
2015-11-24 15:48:06 +03:00
|
|
|
export TEST_SERVER_FED_URL="http://localhost:$PORT_FED/ocs/"
|
|
|
|
|
2016-12-16 19:29:27 +03:00
|
|
|
if [ "$INSTALLED" == "true" ]; then
|
|
|
|
|
|
|
|
#Enable external storage app
|
|
|
|
$OCC app:enable files_external
|
|
|
|
|
|
|
|
mkdir -p work/local_storage
|
2017-03-30 18:16:59 +03:00
|
|
|
OUTPUT_CREATE_STORAGE=`$OCC files_external:create local_storage local null::null -c datadir=$PWD/work/local_storage`
|
2016-08-26 10:57:48 +03:00
|
|
|
|
2017-03-22 20:00:12 +03:00
|
|
|
ID_STORAGE=`echo $OUTPUT_CREATE_STORAGE | tr ' ' '\n' | tail -n1`
|
2016-08-05 16:13:49 +03:00
|
|
|
|
2016-12-16 19:29:27 +03:00
|
|
|
$OCC files_external:option $ID_STORAGE enable_sharing true
|
2016-08-05 16:13:49 +03:00
|
|
|
|
2016-12-16 19:29:27 +03:00
|
|
|
fi
|
2016-08-09 11:24:03 +03:00
|
|
|
|
2016-11-08 00:52:07 +03:00
|
|
|
vendor/bin/behat --strict -f junit -f pretty $SCENARIO_TO_RUN
|
2015-12-01 11:24:40 +03:00
|
|
|
RESULT=$?
|
2015-08-06 16:44:24 +03:00
|
|
|
|
|
|
|
kill $PHPPID
|
2015-11-24 15:48:06 +03:00
|
|
|
kill $PHPPID_FED
|
2015-12-01 11:24:40 +03:00
|
|
|
|
2017-03-21 03:48:55 +03:00
|
|
|
if [ "$INSTALLED" == "true" ]; then
|
2016-12-16 19:29:27 +03:00
|
|
|
|
|
|
|
$OCC files_external:delete -y $ID_STORAGE
|
2016-08-05 16:13:49 +03:00
|
|
|
|
2016-12-16 19:29:27 +03:00
|
|
|
#Disable external storage app
|
|
|
|
$OCC app:disable files_external
|
|
|
|
fi
|
2016-08-26 10:57:48 +03:00
|
|
|
|
2015-12-04 15:43:08 +03:00
|
|
|
if [ -z $HIDE_OC_LOGS ]; then
|
2016-12-16 19:29:27 +03:00
|
|
|
tail "${OC_PATH}/data/nextcloud.log"
|
2015-12-04 15:43:08 +03:00
|
|
|
fi
|
2015-12-01 11:24:40 +03:00
|
|
|
|
2016-11-08 00:52:07 +03:00
|
|
|
echo "runsh: Exit code: $RESULT"
|
2015-12-01 11:24:40 +03:00
|
|
|
exit $RESULT
|