2015-09-28 17:38:01 +03:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
# @author Robin McCorkell
|
|
|
|
# @copyright 2015 ownCloud
|
|
|
|
|
|
|
|
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"
|
|
|
|
|
|
|
|
|
|
|
|
docker_image=xenopathic/ceph-keystone
|
|
|
|
|
|
|
|
echo "Fetch recent ${docker_image} docker image"
|
|
|
|
docker pull ${docker_image}
|
|
|
|
|
|
|
|
# retrieve current folder to place the config in the parent folder
|
|
|
|
thisFolder="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
|
2016-03-01 12:45:48 +03:00
|
|
|
# create readiness notification socket
|
|
|
|
notify_sock=$(readlink -f "$thisFolder"/dockerContainerCeph.$EXECUTOR_NUMBER.swift.sock)
|
2016-07-05 09:54:51 +03:00
|
|
|
rm -f "$notify_sock" # in case an unfinished test left one behind
|
2016-03-01 12:45:48 +03:00
|
|
|
mkfifo "$notify_sock"
|
|
|
|
|
2015-09-28 17:38:01 +03:00
|
|
|
port=5034
|
|
|
|
|
|
|
|
user=test
|
|
|
|
pass=testing
|
|
|
|
tenant=testenant
|
|
|
|
region=testregion
|
|
|
|
service=testceph
|
|
|
|
|
|
|
|
container=`docker run -d \
|
|
|
|
-e KEYSTONE_PUBLIC_PORT=${port} \
|
|
|
|
-e KEYSTONE_ADMIN_USER=${user} \
|
|
|
|
-e KEYSTONE_ADMIN_PASS=${pass} \
|
|
|
|
-e KEYSTONE_ADMIN_TENANT=${tenant} \
|
|
|
|
-e KEYSTONE_ENDPOINT_REGION=${region} \
|
|
|
|
-e KEYSTONE_SERVICE=${service} \
|
|
|
|
-e OSD_SIZE=300 \
|
2016-03-01 12:45:48 +03:00
|
|
|
-v "$notify_sock":/run/notifyme.sock \
|
2015-09-28 17:38:01 +03:00
|
|
|
--privileged \
|
2016-03-01 15:54:46 +03:00
|
|
|
${docker_image}`
|
2015-09-28 17:38:01 +03:00
|
|
|
|
2015-10-30 11:28:33 +03:00
|
|
|
host=$(docker inspect --format="{{.NetworkSettings.IPAddress}}" "$container")
|
2015-09-28 17:38:01 +03:00
|
|
|
|
|
|
|
|
|
|
|
echo "${docker_image} 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/dockerContainerCeph.$EXECUTOR_NUMBER.swift
|
|
|
|
|
|
|
|
echo -n "Waiting for ceph initialization"
|
2016-03-01 12:45:48 +03:00
|
|
|
ready=$(timeout 600 cat "$notify_sock")
|
|
|
|
if [[ $ready != 'READY=1' ]]; then
|
|
|
|
echo "[ERROR] Waited 600 seconds, no response" >&2
|
|
|
|
docker logs $container
|
|
|
|
exit 1
|
|
|
|
fi
|
2016-07-05 09:54:51 +03:00
|
|
|
if ! "$thisFolder"/wait-for-connection ${host} 80 600; then
|
|
|
|
echo "[ERROR] Waited 600 seconds, no response" >&2
|
|
|
|
docker logs $container
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
echo "Waiting another 15 seconds"
|
|
|
|
sleep 15
|
2015-09-28 17:38:01 +03:00
|
|
|
|
|
|
|
cat > $thisFolder/swift.config.php <<DELIM
|
|
|
|
<?php
|
|
|
|
\$CONFIG = array (
|
|
|
|
'objectstore' => array(
|
|
|
|
'class' => 'OC\\Files\\ObjectStore\\Swift',
|
|
|
|
'arguments' => array(
|
|
|
|
'username' => '$user',
|
|
|
|
'password' => '$pass',
|
|
|
|
'container' => 'owncloud-autotest$EXECUTOR_NUMBER',
|
2016-10-27 15:15:59 +03:00
|
|
|
'objectPrefix' => 'autotest$EXECUTOR_NUMBER:oid:urn:',
|
2015-09-28 17:38:01 +03:00
|
|
|
'autocreate' => true,
|
|
|
|
'region' => '$region',
|
|
|
|
'url' => 'http://$host:$port/v2.0',
|
|
|
|
'tenantName' => '$tenant',
|
|
|
|
'serviceName' => '$service',
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
DELIM
|
|
|
|
|
|
|
|
if [ -n "$DEBUG" ]; then
|
|
|
|
echo "############## DEBUG info ###############"
|
|
|
|
echo "### Docker info"
|
|
|
|
docker info
|
|
|
|
echo "### Docker images"
|
|
|
|
docker images
|
|
|
|
echo "### current mountpoints"
|
|
|
|
mount
|
|
|
|
echo "### contents of $thisFolder/swift.config.php"
|
|
|
|
cat $thisFolder/swift.config.php
|
|
|
|
echo "### contents of $thisFolder/dockerContainerCeph.$EXECUTOR_NUMBER.swift"
|
|
|
|
cat $thisFolder/dockerContainerCeph.$EXECUTOR_NUMBER.swift
|
2016-07-05 09:54:51 +03:00
|
|
|
echo "### docker logs"
|
|
|
|
docker logs $container
|
2015-09-28 17:38:01 +03:00
|
|
|
echo "############## DEBUG info end ###########"
|
|
|
|
fi
|