shlink/bin/test/run-api-tests.sh

26 lines
712 B
Bash
Raw Normal View History

2019-01-27 12:54:04 +03:00
#!/usr/bin/env sh
export APP_ENV=test
export DB_DRIVER=postgres
2020-09-26 11:43:50 +03:00
export TEST_ENV=api
export GENERATE_COVERAGE=${GENERATE_COVERAGE:-"no"}
2019-01-27 12:54:04 +03:00
# Reset logs
rm -rf data/log/api-tests
mkdir data/log/api-tests
touch data/log/api-tests/output.log
2019-01-27 12:54:04 +03:00
# Try to stop server just in case it hanged in last execution
2021-01-14 22:19:38 +03:00
vendor/bin/laminas mezzio:swoole:stop
2019-01-27 12:54:04 +03:00
echo 'Starting server...'
2021-01-14 22:19:38 +03:00
vendor/bin/laminas mezzio:swoole:start -d
2019-01-27 12:54:04 +03:00
sleep 2
2020-09-26 11:43:50 +03:00
vendor/bin/phpunit --order-by=random -c phpunit-api.xml --testdox --colors=always --log-junit=build/coverage-api/junit.xml $*
testsExitCode=$?
2021-01-14 22:19:38 +03:00
vendor/bin/laminas mezzio:swoole:stop
# Exit this script with the same code as the tests. If tests failed, this script has to fail
2019-11-09 14:08:22 +03:00
exit $testsExitCode