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