server/autotest.sh

203 lines
4.9 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, 2013 Thomas Müller thomas.mueller@tmit.eu
2012-07-15 21:21:56 +00:00
#
#$EXECUTOR_NUMBER is set by Jenkins and allows us to run autotest in parallel
DATABASENAME=oc_autotest$EXECUTOR_NUMBER
DATABASEUSER=oc_autotest$EXECUTOR_NUMBER
ADMINLOGIN=admin$EXECUTOR_NUMBER
2012-07-15 21:21:56 +00:00
BASEDIR=$PWD
if ! [ -w config -a -w config/config.php ]; then
echo "Please enable write permissions on config and config/config.php" >&2
exit 1
fi
# Back up existing (dev) config if one exists
if [ -f config/config.php ]; then
mv config/config.php config/config-autotest-backup.php
fi
# use tmpfs for datadir - should speedup unit test execution
if [ -d /dev/shm ]; then
DATADIR=/dev/shm/data-autotest$EXECUTOR_NUMBER
else
DATADIR=$BASEDIR/data-autotest
fi
echo "Using database $DATABASENAME"
# create autoconfig for sqlite, mysql and postgresql
2012-07-15 21:21:56 +00:00
cat > ./tests/autoconfig-sqlite.php <<DELIM
<?php
\$AUTOCONFIG = array (
'installed' => false,
'dbtype' => 'sqlite',
'dbtableprefix' => 'oc_',
'adminlogin' => '$ADMINLOGIN',
'adminpass' => 'admin',
'directory' => '$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' => '$ADMINLOGIN',
2012-07-15 10:05:48 +00:00
'adminpass' => 'admin',
'directory' => '$DATADIR',
'dbuser' => '$DATABASEUSER',
'dbname' => '$DATABASENAME',
2012-07-15 10:05:48 +00:00
'dbhost' => 'localhost',
'dbpass' => 'owncloud',
2012-07-15 10:05:48 +00:00
);
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' => '$ADMINLOGIN',
2012-07-18 19:44:41 +00:00
'adminpass' => 'admin',
'directory' => '$DATADIR',
'dbuser' => '$DATABASEUSER',
'dbname' => '$DATABASENAME',
2012-07-18 19:44:41 +00:00
'dbhost' => 'localhost',
'dbpass' => 'owncloud',
2012-07-18 19:44:41 +00:00
);
DELIM
2012-07-15 10:05:48 +00:00
2013-05-24 13:19:13 +00:00
cat > ./tests/autoconfig-oci.php <<DELIM
<?php
\$AUTOCONFIG = array (
'installed' => false,
'dbtype' => 'oci',
'dbtableprefix' => 'oc_',
'adminlogin' => '$ADMINLOGIN',
2013-05-24 13:19:13 +00:00
'adminpass' => 'admin',
'directory' => '$DATADIR',
'dbuser' => '$DATABASENAME',
2013-05-24 13:19:13 +00:00
'dbname' => 'XE',
'dbhost' => 'localhost',
'dbpass' => 'owncloud',
);
DELIM
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
cp tests/preseed-config.php config/config.php
2012-07-15 21:21:56 +00:00
# drop database
if [ "$1" == "mysql" ] ; then
mysql -u $DATABASEUSER -powncloud -e "DROP DATABASE $DATABASENAME"
2012-07-15 21:21:56 +00:00
fi
2012-07-18 19:44:41 +00:00
if [ "$1" == "pgsql" ] ; then
dropdb -U $DATABASEUSER $DATABASENAME
2012-07-18 19:44:41 +00:00
fi
2013-05-24 13:19:13 +00:00
if [ "$1" == "oci" ] ; then
echo "drop the database"
sqlplus -s -l / as sysdba <<EOF
drop user $DATABASENAME cascade;
2013-05-24 13:19:13 +00:00
EOF
echo "create the database"
sqlplus -s -l / as sysdba <<EOF
create user $DATABASENAME identified by owncloud;
alter user $DATABASENAME default tablespace users
2013-05-24 13:19:13 +00:00
temporary tablespace temp
quota unlimited on users;
grant create session
, create table
, create procedure
, create sequence
, create trigger
, create view
, create synonym
, alter session
to $DATABASENAME;
2013-05-24 13:19:13 +00:00
exit;
EOF
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
php -f enable_all.php
phpunit --configuration phpunit-autotest.xml --log-junit autotest-results-$1.xml --coverage-clover autotest-clover-$1.xml --coverage-html coverage-html-$1 $2 $3
2012-07-15 21:21:56 +00:00
}
#
# start test execution
#
2013-05-24 13:19:13 +00:00
if [ -z "$1" ]
then
2013-07-08 14:42:19 +00:00
execute_tests 'sqlite'
2013-05-24 13:19:13 +00:00
execute_tests 'mysql'
execute_tests 'pgsql'
2013-07-08 14:42:19 +00:00
execute_tests 'oci'
2013-05-24 13:19:13 +00:00
else
2013-06-26 13:33:35 +00:00
execute_tests $1 $2 $3
2013-05-24 13:19:13 +00:00
fi
2012-07-15 21:21:56 +00:00
cd $BASEDIR
# Restore existing config
if [ -f config/config-autotest-backup.php ]; then
mv config/config-autotest-backup.php config/config.php
fi
2012-07-15 21:21:56 +00:00
#
2012-07-18 19:44:41 +00:00
# NOTES on mysql:
# - CREATE DATABASE oc_autotest;
2012-07-15 21:21:56 +00:00
# - CREATE USER 'oc_autotest'@'localhost' IDENTIFIED BY 'owncloud';
# - grant all on oc_autotest.* to 'oc_autotest'@'localhost';
#
# - for parallel executor support with EXECUTOR_NUMBER=0:
# - CREATE DATABASE oc_autotest0;
# - CREATE USER 'oc_autotest0'@'localhost' IDENTIFIED BY 'owncloud';
# - grant all on oc_autotest0.* to 'oc_autotest0'@'localhost';
#
2012-07-18 19:44:41 +00:00
# NOTES on pgsql:
# - su - postgres
2013-07-19 08:49:30 +00:00
# - createuser -P oc_autotest (enter password and enable superuser)
2012-07-18 19:44:41 +00:00
# - 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
#
2013-07-19 08:49:30 +00:00
# - for parallel executor support with EXECUTOR_NUMBER=0:
# - createuser -P oc_autotest0 (enter password and enable superuser)
#
2013-05-24 13:19:13 +00:00
# NOTES on oci:
# - it's a pure nightmare to install Oracle on a Linux-System
# - DON'T TRY THIS AT HOME!
# - if you really need it: we feel sorry for you
#