2015-09-27 14:03:31 +03:00
|
|
|
#!/usr/bin/env bash
|
2015-02-11 00:34:58 +03:00
|
|
|
#
|
|
|
|
# ownCloud
|
|
|
|
#
|
|
|
|
# This script start a docker container to test the files_external tests
|
|
|
|
# against. It will also change the files_external config to use the docker
|
|
|
|
# container as testing environment. This is reverted in the stop step.W
|
|
|
|
#
|
|
|
|
# Set environment variable DEBUG to print config file
|
|
|
|
#
|
|
|
|
# @author Morris Jobke
|
|
|
|
# @copyright 2015 Morris Jobke <hey@morrisjobke.de>
|
|
|
|
#
|
|
|
|
|
|
|
|
if ! command -v docker >/dev/null 2>&1; then
|
|
|
|
echo "No docker executable found - skipped docker setup"
|
|
|
|
exit 0;
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Docker executable found - setup docker"
|
|
|
|
|
|
|
|
echo "Fetch recent morrisjobke/docker-proftpd docker image"
|
|
|
|
docker pull morrisjobke/docker-proftpd
|
|
|
|
|
|
|
|
# retrieve current folder to place the config in the parent folder
|
2015-04-28 12:17:46 +03:00
|
|
|
thisFolder=`echo $0 | sed 's#env/start-ftp-morrisjobke\.sh##'`
|
2015-02-11 00:34:58 +03:00
|
|
|
|
|
|
|
if [ -z "$thisFolder" ]; then
|
|
|
|
thisFolder="."
|
|
|
|
fi;
|
|
|
|
|
|
|
|
user=test
|
|
|
|
password=12345
|
|
|
|
|
|
|
|
container=`docker run -d -e USERNAME=$user -e PASSWORD=$password morrisjobke/docker-proftpd`
|
|
|
|
|
2015-10-30 11:28:33 +03:00
|
|
|
host=`docker inspect --format="{{.NetworkSettings.IPAddress}}" $container`
|
2015-02-11 00:34:58 +03:00
|
|
|
|
|
|
|
cat > $thisFolder/config.ftp.php <<DELIM
|
|
|
|
<?php
|
|
|
|
|
|
|
|
return array(
|
|
|
|
'run'=>true,
|
|
|
|
'host'=>'$host',
|
|
|
|
'user'=>'$user',
|
|
|
|
'password'=>'$password',
|
|
|
|
'root'=>'',
|
|
|
|
);
|
|
|
|
|
|
|
|
DELIM
|
|
|
|
|
|
|
|
echo "ftp container: $container"
|
|
|
|
|
|
|
|
# put container IDs into a file to drop them after the test run (keep in mind that multiple tests run in parallel on the same host)
|
|
|
|
echo $container >> $thisFolder/dockerContainerMorrisJobke.$EXECUTOR_NUMBER.ftp
|
|
|
|
|
2015-09-24 00:33:39 +03:00
|
|
|
echo -n "Waiting for ftp initialization"
|
2015-11-24 18:42:01 +03:00
|
|
|
if ! "$thisFolder"/env/wait-for-connection ${host} 21 60; then
|
|
|
|
echo "[ERROR] Waited 60 seconds, no response" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
2015-09-24 00:33:39 +03:00
|
|
|
sleep 1
|
|
|
|
|
2015-02-11 00:34:58 +03:00
|
|
|
if [ -n "$DEBUG" ]; then
|
|
|
|
cat $thisFolder/config.ftp.php
|
|
|
|
cat $thisFolder/dockerContainerMorrisJobke.$EXECUTOR_NUMBER.ftp
|
|
|
|
fi
|
|
|
|
|
|
|
|
|