ba4f12baa0
Class Throttler implements the bruteforce protection for security actions in Nextcloud. It is working by logging invalid login attempts to the database and slowing down all login attempts from the same subnet. The max delay is 30 seconds and the starting delay are 200 milliseconds. (after the first failed login)
50 lines
1 KiB
Bash
Executable file
50 lines
1 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
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
|
|
|
|
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/"
|
|
|
|
vendor/bin/behat -f junit -f pretty $SCENARIO_TO_RUN
|
|
RESULT=$?
|
|
|
|
kill $PHPPID
|
|
kill $PHPPID_FED
|
|
|
|
if [ -z $HIDE_OC_LOGS ]; then
|
|
tail "../../data/nextcloud.log"
|
|
fi
|
|
|
|
exit $RESULT
|
|
|