server/autotest.sh

113 lines
2.5 KiB
Bash
Raw Normal View History

2012-07-15 21:21:56 +00:00
#!/bin/bash
2012-07-15 10:05:48 +00:00
#
2012-07-15 21:21:56 +00:00
# ownCloud
2012-07-15 10:05:48 +00:00
#
2012-07-15 21:21:56 +00:00
# @author Thomas Müller
# @copyright 2012 Thomas Müller thomas.mueller@tmit.eu
#
DATADIR=data-autotest
2012-07-15 21:21:56 +00:00
BASEDIR=$PWD
# create autoconfig for sqlite, mysql and (soon) postgresql
cat > ./tests/autoconfig-sqlite.php <<DELIM
<?php
\$AUTOCONFIG = array (
'installed' => false,
'dbtype' => 'sqlite',
'dbtableprefix' => 'oc_',
'adminlogin' => 'admin',
'adminpass' => 'admin',
2012-07-15 21:21:56 +00:00
'directory' => '$BASEDIR/$DATADIR',
);
DELIM
2012-07-15 21:21:56 +00:00
cat > ./tests/autoconfig-mysql.php <<DELIM
2012-07-15 10:05:48 +00:00
<?php
\$AUTOCONFIG = array (
'installed' => false,
'dbtype' => 'mysql',
'dbtableprefix' => 'oc_',
'adminlogin' => 'admin',
'adminpass' => 'admin',
2012-07-15 21:21:56 +00:00
'directory' => '$BASEDIR/$DATADIR',
2012-07-15 10:05:48 +00:00
'dbuser' => 'oc_autotest',
'dbname' => 'oc_autotest',
'dbhost' => 'localhost',
'dbpass' => 'owncloud',
);
DELIM
2012-07-18 19:44:41 +00: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 10:05:48 +00:00
2012-07-15 21:21:56 +00: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 10:05:48 +00:00
2012-07-15 21:21:56 +00:00
# reset data directory
rm -rf $DATADIR
mkdir $DATADIR
2012-07-15 21:21:56 +00:00
# remove the old config file
rm -rf config/config.php
# drop database
if [ "$1" == "mysql" ] ; then
mysql -u oc_autotest -powncloud -e "DROP DATABASE oc_autotest"
fi
2012-07-18 19:44:41 +00:00
if [ "$1" == "pgsql" ] ; then
dropdb -U oc_autotest oc_autotest
fi
2012-07-15 21:21:56 +00: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-18 21:36:03 +00:00
rm -rf coverage-html-$1
2012-10-18 21:29:27 +00:00
mkdir coverage-html-$1
phpunit --log-junit autotest-results-$1.xml --coverage-clover autotest-clover-$1.xml --coverage-html coverage-html-$1
2012-07-15 21:21:56 +00:00
}
#
# start test execution
#
2012-07-15 21:21:56 +00:00
execute_tests "sqlite"
2012-10-18 21:36:03 +00:00
execute_tests 'mysql'
execute_tests 'pgsql'
2012-07-15 21:21:56 +00:00
#
2012-07-18 19:44:41 +00:00
# NOTES on mysql:
2012-07-15 21:21:56 +00:00
# - CREATE USER 'oc_autotest'@'localhost' IDENTIFIED BY 'owncloud';
# - grant access permissions: grant all on oc_autotest.* to 'oc_autotest'@'localhost';
#
2012-07-18 19:44:41 +00: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
#