2016-01-16 09:15:24 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
# set testing environment
|
|
|
|
|
cp .env.testing .env
|
|
|
|
|
|
2016-01-19 18:09:53 +01:00
|
|
|
# set default phpunit.
|
|
|
|
|
cp phpunit.default.xml phpunit.xml
|
|
|
|
|
|
2016-01-20 10:47:29 +01:00
|
|
|
# "create" default attachment:
|
|
|
|
|
touch storage/upload/at-1.data
|
|
|
|
|
touch storage/upload/at-2.data
|
|
|
|
|
|
|
|
|
|
|
2016-01-19 16:55:02 +01:00
|
|
|
# delete test databases:
|
|
|
|
|
if [ -f storage/database/testing.db ]
|
2016-01-16 09:15:24 +01:00
|
|
|
then
|
2016-01-19 16:55:02 +01:00
|
|
|
rm storage/database/testing.db
|
2016-01-16 09:15:24 +01:00
|
|
|
fi
|
|
|
|
|
|
2016-01-19 16:55:02 +01:00
|
|
|
if [ -f storage/database/testing-copy.db ]
|
|
|
|
|
then
|
|
|
|
|
rm storage/database/testing-copy.db
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# test!
|
|
|
|
|
phpunit
|
2016-01-16 09:15:24 +01:00
|
|
|
|
|
|
|
|
# restore .env file
|
|
|
|
|
cp .env.local .env
|