diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-03-10 15:59:07 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-03-11 09:27:12 +0100 |
commit | 7181840665090c668bc9107a8e5f149ab10b3b80 (patch) | |
tree | 2c345ff443a23d6389032c419e1e78227f77e40f /autotest-hhvm.sh | |
parent | 01ea056ac8ad46ea59c56ca8c9aa7e7c90564bc4 (diff) | |
download | nextcloud-server-7181840665090c668bc9107a8e5f149ab10b3b80.tar.gz nextcloud-server-7181840665090c668bc9107a8e5f149ab10b3b80.zip |
Use occ to install ownCloud in autotest.sh
Diffstat (limited to 'autotest-hhvm.sh')
-rwxr-xr-x | autotest-hhvm.sh | 76 |
1 files changed, 11 insertions, 65 deletions
diff --git a/autotest-hhvm.sh b/autotest-hhvm.sh index bf96a5133a6..7a8452c7f06 100755 --- a/autotest-hhvm.sh +++ b/autotest-hhvm.sh @@ -2,8 +2,14 @@ # # ownCloud # +# @author Vincent Petry +# @author Morris Jobke +# @author Robin McCorkell # @author Thomas Müller -# @copyright 2012, 2013 Thomas Müller thomas.mueller@tmit.eu +# @author Andreas Fischer +# @author Joas Schilling +# @author Lukas Reschke +# @copyright 2012-2015 Thomas Müller thomas.mueller@tmit.eu # set -e @@ -95,67 +101,6 @@ fi echo "Using database $DATABASENAME" -# create autoconfig for sqlite, mysql and postgresql -cat > ./tests/autoconfig-sqlite.php <<DELIM -<?php -\$AUTOCONFIG = array ( - 'installed' => false, - 'dbtype' => 'sqlite', - 'dbtableprefix' => 'oc_', - 'adminlogin' => '$ADMINLOGIN', - 'adminpass' => 'admin', - 'directory' => '$DATADIR', -); -DELIM - -cat > ./tests/autoconfig-mysql.php <<DELIM -<?php -\$AUTOCONFIG = array ( - 'installed' => false, - 'dbtype' => 'mysql', - 'dbtableprefix' => 'oc_', - 'adminlogin' => '$ADMINLOGIN', - 'adminpass' => 'admin', - 'directory' => '$DATADIR', - 'dbuser' => '$DATABASEUSER', - 'dbname' => '$DATABASENAME', - 'dbhost' => 'localhost', - 'dbpass' => 'owncloud', -); -DELIM - -cat > ./tests/autoconfig-pgsql.php <<DELIM -<?php -\$AUTOCONFIG = array ( - 'installed' => false, - 'dbtype' => 'pgsql', - 'dbtableprefix' => 'oc_', - 'adminlogin' => '$ADMINLOGIN', - 'adminpass' => 'admin', - 'directory' => '$DATADIR', - 'dbuser' => '$DATABASEUSER', - 'dbname' => '$DATABASENAME', - 'dbhost' => 'localhost', - 'dbpass' => 'owncloud', -); -DELIM - -cat > ./tests/autoconfig-oci.php <<DELIM -<?php -\$AUTOCONFIG = array ( - 'installed' => false, - 'dbtype' => 'oci', - 'dbtableprefix' => 'oc_', - 'adminlogin' => '$ADMINLOGIN', - 'adminpass' => 'admin', - 'directory' => '$DATADIR', - 'dbuser' => '$DATABASENAME', - 'dbname' => 'XE', - 'dbhost' => 'localhost', - 'dbpass' => 'owncloud', -); -DELIM - function execute_tests { echo "Setup environment for $1 testing ..." # back to root folder @@ -202,15 +147,16 @@ EOF to $DATABASENAME; exit; EOF + DATABASEUSER=$DATABASENAME + DATABASENAME='XE' fi # copy autoconfig cp "$BASEDIR/tests/autoconfig-$1.php" "$BASEDIR/config/autoconfig.php" # trigger installation - echo "INDEX" - hhvm -f index.php | grep -i -C9999 error && echo "Error during setup" && exit 101 - echo "END INDEX" + echo "Installing ...." + hhvm ./occ maintenance:install --database=$1 --database-name=$DATABASENAME --database-host=localhost --database-user=$DATABASEUSER --database-pass=owncloud --database-table-prefix=oc_ --admin-user=$ADMINLOGIN --admin-pass=admin --data-dir=$DATADIR #test execution echo "Testing with $1 ..." |