Skip to content
Snippets Groups Projects
autotest.sh 2.56 KiB
Newer Older
  • Learn to ignore specific revisions
  • #!/bin/bash
    
    Thomas Müller's avatar
    Thomas Müller committed
    #
    
    # ownCloud
    
    Thomas Müller's avatar
    Thomas Müller committed
    #
    
    # @author Thomas Müller
    # @copyright 2012 Thomas Müller thomas.mueller@tmit.eu
    #
    
    
    BASEDIR=$PWD
    
    
    # create autoconfig for sqlite, mysql and postgresql
    
    cat > ./tests/autoconfig-sqlite.php <<DELIM
    
    <?php
    \$AUTOCONFIG = array (
      'installed' => false,
      'dbtype' => 'sqlite',
      'dbtableprefix' => 'oc_',
      'adminlogin' => 'admin',
      'adminpass' => 'admin',
    
      'directory' => '$BASEDIR/$DATADIR',
    
    cat > ./tests/autoconfig-mysql.php <<DELIM
    
    Thomas Müller's avatar
    Thomas Müller committed
    <?php
    \$AUTOCONFIG = array (
      'installed' => false,
      'dbtype' => 'mysql',
      'dbtableprefix' => 'oc_',
      'adminlogin' => 'admin',
      'adminpass' => 'admin',
    
      'directory' => '$BASEDIR/$DATADIR',
    
    Thomas Müller's avatar
    Thomas Müller committed
      'dbuser' => 'oc_autotest',	
      'dbname' => 'oc_autotest',	
      'dbhost' => 'localhost',
      'dbpass' => 'owncloud',	
    );
    DELIM
    
    
    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
    
    Thomas Müller's avatar
    Thomas Müller committed
    
    
    function execute_tests {
    	echo "Setup environment for $1 testing ..."
    	# back to root folder
    	cd $BASEDIR
    
    	# revert changes to tests/data
    	git checkout tests/data/*
    
    Thomas Müller's avatar
    Thomas Müller committed
    
    
    	# reset data directory
    	rm -rf $DATADIR
    	mkdir $DATADIR
    
    	# remove the old config file
    
    	#rm -rf config/config.php
    	cp tests/preseed-config.php config/config.php
    
    
    	# drop database
    	if [ "$1" == "mysql" ] ; then
    		mysql -u oc_autotest -powncloud -e "DROP DATABASE oc_autotest"
    	fi
    
    	if [ "$1" == "pgsql" ] ; then
    		dropdb -U oc_autotest oc_autotest
    	fi
    
    
    	# 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
    
    Thomas Müller's avatar
    Thomas Müller committed
    	rm -rf coverage-html-$1
    
    Thomas Müller's avatar
    Thomas Müller committed
    	mkdir coverage-html-$1
    
    Thomas Müller's avatar
    Thomas Müller committed
    	phpunit --log-junit autotest-results-$1.xml --coverage-clover autotest-clover-$1.xml --coverage-html coverage-html-$1
    
    }
    
    #
    # start test execution
    
    execute_tests "sqlite"
    
    Thomas Müller's avatar
    Thomas Müller committed
    execute_tests 'mysql'
    execute_tests 'pgsql'
    
    # NOTES on mysql:
    
    #  - CREATE USER 'oc_autotest'@'localhost' IDENTIFIED BY 'owncloud';
    #  - grant access permissions: grant all on oc_autotest.* to 'oc_autotest'@'localhost';
    
    # 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
    #