2012-07-16 01:21:56 +04:00
|
|
|
#!/bin/bash
|
2012-07-15 14:05:48 +04:00
|
|
|
#
|
2012-07-16 01:21:56 +04:00
|
|
|
# ownCloud
|
2012-07-15 14:05:48 +04:00
|
|
|
#
|
2012-07-16 01:21:56 +04:00
|
|
|
# @author Thomas Müller
|
|
|
|
# @copyright 2012 Thomas Müller thomas.mueller@tmit.eu
|
|
|
|
#
|
|
|
|
|
2012-07-13 15:55:15 +04:00
|
|
|
DATADIR=data-autotest
|
2012-07-16 01:21:56 +04:00
|
|
|
BASEDIR=$PWD
|
|
|
|
|
2012-10-27 13:22:00 +04:00
|
|
|
# create autoconfig for sqlite, mysql and postgresql
|
2012-07-16 01:21:56 +04:00
|
|
|
cat > ./tests/autoconfig-sqlite.php <<DELIM
|
2012-07-13 15:55:15 +04:00
|
|
|
<?php
|
|
|
|
\$AUTOCONFIG = array (
|
|
|
|
'installed' => false,
|
|
|
|
'dbtype' => 'sqlite',
|
|
|
|
'dbtableprefix' => 'oc_',
|
|
|
|
'adminlogin' => 'admin',
|
|
|
|
'adminpass' => 'admin',
|
2012-07-16 01:21:56 +04:00
|
|
|
'directory' => '$BASEDIR/$DATADIR',
|
2012-07-13 15:55:15 +04:00
|
|
|
);
|
|
|
|
DELIM
|
|
|
|
|
2012-07-16 01:21:56 +04:00
|
|
|
cat > ./tests/autoconfig-mysql.php <<DELIM
|
2012-07-15 14:05:48 +04:00
|
|
|
<?php
|
|
|
|
\$AUTOCONFIG = array (
|
|
|
|
'installed' => false,
|
|
|
|
'dbtype' => 'mysql',
|
|
|
|
'dbtableprefix' => 'oc_',
|
|
|
|
'adminlogin' => 'admin',
|
|
|
|
'adminpass' => 'admin',
|
2012-07-16 01:21:56 +04:00
|
|
|
'directory' => '$BASEDIR/$DATADIR',
|
2012-07-15 14:05:48 +04:00
|
|
|
'dbuser' => 'oc_autotest',
|
|
|
|
'dbname' => 'oc_autotest',
|
|
|
|
'dbhost' => 'localhost',
|
|
|
|
'dbpass' => 'owncloud',
|
|
|
|
);
|
|
|
|
DELIM
|
|
|
|
|
2012-07-18 23:44:41 +04:00
|
|
|
cat > ./tests/autoconfig-pgsql.php <<DELIM
|
|
|
|
<?php
|
|
|
|
\$AUTOCONFIG = array (
|
|
|
|
'installed' => false,
|
|
|
|
'dbtype' => 'pgsql',
|
|
|
|
'dbtableprefix' => 'oc_',
|
|
|
|
'adminlogin' => 'admin',
|
|
|
|
'adminpass' => 'admin',
|
|
|
|
'directory' => '$BASEDIR/$DATADIR',
|
|
|
|
'dbuser' => 'oc_autotest',
|
|
|
|
'dbname' => 'oc_autotest',
|
|
|
|
'dbhost' => 'localhost',
|
|
|
|
'dbpass' => 'owncloud',
|
|
|
|
);
|
|
|
|
DELIM
|
2012-07-15 14:05:48 +04:00
|
|
|
|
2012-07-16 01:21:56 +04:00
|
|
|
function execute_tests {
|
|
|
|
echo "Setup environment for $1 testing ..."
|
|
|
|
# back to root folder
|
|
|
|
cd $BASEDIR
|
|
|
|
|
|
|
|
# revert changes to tests/data
|
|
|
|
git checkout tests/data/*
|
2012-07-15 14:05:48 +04:00
|
|
|
|
2012-07-16 01:21:56 +04:00
|
|
|
# reset data directory
|
|
|
|
rm -rf $DATADIR
|
|
|
|
mkdir $DATADIR
|
2012-07-13 15:55:15 +04:00
|
|
|
|
2012-07-16 01:21:56 +04:00
|
|
|
# remove the old config file
|
2012-10-27 13:22:00 +04:00
|
|
|
#rm -rf config/config.php
|
|
|
|
cp tests/preseed-config.php config/config.php
|
2012-07-16 01:21:56 +04:00
|
|
|
|
|
|
|
# drop database
|
|
|
|
if [ "$1" == "mysql" ] ; then
|
|
|
|
mysql -u oc_autotest -powncloud -e "DROP DATABASE oc_autotest"
|
|
|
|
fi
|
2012-07-18 23:44:41 +04:00
|
|
|
if [ "$1" == "pgsql" ] ; then
|
|
|
|
dropdb -U oc_autotest oc_autotest
|
|
|
|
fi
|
2012-07-16 01:21:56 +04:00
|
|
|
|
|
|
|
# copy autoconfig
|
|
|
|
cp $BASEDIR/tests/autoconfig-$1.php $BASEDIR/config/autoconfig.php
|
|
|
|
|
|
|
|
# trigger installation
|
|
|
|
php -f index.php
|
|
|
|
|
|
|
|
#test execution
|
|
|
|
echo "Testing with $1 ..."
|
|
|
|
cd tests
|
2012-10-19 01:36:03 +04:00
|
|
|
rm -rf coverage-html-$1
|
2012-10-19 01:29:27 +04:00
|
|
|
mkdir coverage-html-$1
|
2012-10-27 13:22:00 +04:00
|
|
|
php -f enable_all.php
|
2013-05-16 00:44:15 +04:00
|
|
|
if [ "$1" == "pgsql" ] ; then
|
|
|
|
# no coverage with pg - causes segfault on ci.tmit.eu - reason unknown
|
|
|
|
phpunit --configuration phpunit-autotest.xml --log-junit autotest-results-$1.xml
|
|
|
|
else
|
|
|
|
phpunit --configuration phpunit-autotest.xml --log-junit autotest-results-$1.xml --coverage-clover autotest-clover-$1.xml --coverage-html coverage-html-$1
|
|
|
|
fi
|
2012-07-16 01:21:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# start test execution
|
2012-07-13 15:55:15 +04:00
|
|
|
#
|
2012-07-16 01:21:56 +04:00
|
|
|
execute_tests "sqlite"
|
2012-10-19 01:36:03 +04:00
|
|
|
execute_tests 'mysql'
|
|
|
|
execute_tests 'pgsql'
|
2012-07-16 01:21:56 +04:00
|
|
|
|
|
|
|
#
|
2012-07-18 23:44:41 +04:00
|
|
|
# NOTES on mysql:
|
2012-07-16 01:21:56 +04:00
|
|
|
# - CREATE USER 'oc_autotest'@'localhost' IDENTIFIED BY 'owncloud';
|
|
|
|
# - grant access permissions: grant all on oc_autotest.* to 'oc_autotest'@'localhost';
|
2012-07-13 15:55:15 +04:00
|
|
|
#
|
2012-07-18 23:44:41 +04:00
|
|
|
# NOTES on pgsql:
|
|
|
|
# - su - postgres
|
|
|
|
# - createuser -P (enter username and password and enable superuser)
|
|
|
|
# - to enable dropdb I decided to add following line to pg_hba.conf (this is not the safest way but I don't care for the testing machine):
|
|
|
|
# local all all trust
|
|
|
|
#
|
2012-07-13 15:55:15 +04:00
|
|
|
|