From 2291dd63c281efbec3d6e8f27459af1fcd9e023d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Mon, 17 Jun 2019 13:14:40 +0200 Subject: Add unit test framework to test installing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- tests/TextTest.php | 18 ++++++ tests/bootstrap.php | 6 ++ tests/drone-server-install.sh | 138 ++++++++++++++++++++++++++++++++++++++++++ tests/drone-server-setup.sh | 65 ++++++++++++++++++++ tests/phpunit.xml | 23 +++++++ 5 files changed, 250 insertions(+) create mode 100644 tests/TextTest.php create mode 100644 tests/bootstrap.php create mode 100644 tests/drone-server-install.sh create mode 100644 tests/drone-server-setup.sh create mode 100644 tests/phpunit.xml (limited to 'tests') diff --git a/tests/TextTest.php b/tests/TextTest.php new file mode 100644 index 000000000..5bbab6a0f --- /dev/null +++ b/tests/TextTest.php @@ -0,0 +1,18 @@ +assertEquals('text', $app::APP_NAME); + } + +} diff --git a/tests/bootstrap.php b/tests/bootstrap.php new file mode 100644 index 000000000..a36794493 --- /dev/null +++ b/tests/bootstrap.php @@ -0,0 +1,6 @@ +&2 + print_syntax + exit 2 + fi +fi + +# use tmpfs for datadir - should speedup unit test execution +DATADIR=$BASEDIR/data-autotest + +echo "Using $1 database $DATABASENAME" + +# create autoconfig for sqlite, mysql and postgresql +cat > ./tests/autoconfig-sqlite.php < false, + 'dbtype' => 'sqlite', + 'dbtableprefix' => 'oc_', + 'adminlogin' => '$ADMINLOGIN', + 'adminpass' => 'admin', + 'directory' => '$DATADIR', +); +DELIM + +cat > ./tests/autoconfig-mysql.php < false, + 'dbtype' => 'mysql', + 'dbtableprefix' => 'oc_', + 'adminlogin' => '$ADMINLOGIN', + 'adminpass' => 'admin', + 'directory' => '$DATADIR', + 'dbuser' => '$DATABASEUSER', + 'dbname' => '$DATABASENAME', + 'dbhost' => '$DATABASEHOST', + 'dbpass' => 'owncloud', +); +DELIM + +cat > ./tests/autoconfig-pgsql.php < false, + 'dbtype' => 'pgsql', + 'dbtableprefix' => 'oc_', + 'adminlogin' => '$ADMINLOGIN', + 'adminpass' => 'admin', + 'directory' => '$DATADIR', + 'dbuser' => '$DATABASEUSER', + 'dbname' => '$DATABASENAME', + 'dbhost' => '$DATABASEHOST', + 'dbpass' => 'owncloud', +); +DELIM + +cat > ./tests/autoconfig-oracle.php < false, + 'dbtype' => 'oci', + 'dbtableprefix' => 'oc_', + 'adminlogin' => '$ADMINLOGIN', + 'adminpass' => 'admin', + 'directory' => '$DATADIR', + 'dbuser' => 'autotest', + 'dbname' => 'XE', + 'dbhost' =>'$DATABASEHOST', + 'dbpass' => 'owncloud', + 'loglevel' => 0, +); +DELIM + +function run_install { + echo "Setup environment for $1 testing ..." + # back to root folder + cd $BASEDIR + + # revert changes to tests/data + git checkout tests/data/* + + # reset data directory + rm -rf $DATADIR + mkdir $DATADIR + touch $DATADIR/nextcloud.log + + cp tests/preseed-config.php config/config.php + + # copy autoconfig + cp $BASEDIR/tests/autoconfig-$1.php $BASEDIR/config/autoconfig.php + + # trigger installation + echo "INDEX" + php -f index.php + echo "END INDEX" + +} + +function print_config { + + echo "nextcloud configuration:" + cat $BASEDIR/config/config.php + + echo "data directory:" + ls -ll $DATADIR + + echo "nextcloud.log:" + [[ -f "$DATADIR/nextcloud.log" ]] && cat $DATADIR/nextcloud.log + +} + +run_install $1 +print_config + +cd $BASEDIR \ No newline at end of file diff --git a/tests/drone-server-setup.sh b/tests/drone-server-setup.sh new file mode 100644 index 000000000..8d754c65b --- /dev/null +++ b/tests/drone-server-setup.sh @@ -0,0 +1,65 @@ +#!/bin/bash +# +# ownCloud +# +# @author Thomas Müller +# @copyright 2014 Thomas Müller thomas.mueller@tmit.eu +# + +# TODO: move this out of the repo to make it usable in other apps + +set -e + +WORKDIR=$PWD +APP_NAME=$1 +CORE_BRANCH=$2 +DB=$3 +echo "Work directory: $WORKDIR" +echo "Database: $DB" + +# Cloning server +cd .. +git clone --depth 1 -b $CORE_BRANCH https://github.com/nextcloud/server +cd server +git submodule update --init + +# Move app into apps folder +cd apps +cp -R $WORKDIR/ $APP_NAME +cd $WORKDIR + +[[ -z "$DATABASEHOST" ]] && DATABASEHOST="$DB" + +if [[ "$DB" == "mysql" ]] ; then + echo "Waiting for MySQL initialisation ..." + if ! ../server/apps/files_external/tests/env/wait-for-connection $DATABASEHOST 3306 600; then + echo "[ERROR] Waited 600 seconds, no response" >&2 + exit 1 + fi +fi + +if [[ "$DB" == "postgres" ]] ; then + echo "Waiting for Postgres to be available ..." + if ! ../server/apps/files_external/tests/env/wait-for-connection $DATABASEHOST 5432 60; then + echo "[ERROR] Waited 60 seconds for $DATABASEHOST, no response" >&2 + exit 1 + fi + echo "Give it 10 additional seconds ..." + sleep 10 + # Temporary fix since core_install uses pgsql + DB="pgsql" +fi + +# TODO: oracle +export DATABASEHOST="$DATABASEHOST" + +echo "Installing server" +cd ../server +bash $WORKDIR/tests/drone-server-install.sh $DB + +echo "Installing app: $APP_NAME" +php occ app:enable $APP_NAME + +cd apps/$APP_NAME +pwd +ls /drone/src diff --git a/tests/phpunit.xml b/tests/phpunit.xml new file mode 100644 index 000000000..3ecf457ab --- /dev/null +++ b/tests/phpunit.xml @@ -0,0 +1,23 @@ + + + + . + + + + + ../appinfo + ../lib + + + + + + + + -- cgit v1.2.3