Browse Source

Replace downloaded Selenium server with Docker container

Instead of downloading the Selenium server and requiring a specific
Firefox version to be installed in the system now the Selenium server is
run using one of the official Selenium Docker images, which provides
both the Selenium server and the appropriate version of Firefox.

Moreover, as it is run inside the Docker container, the web browser is
now run in headless mode; however, if needed, it can still be viewed
through VNC.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
tags/v12.0.0beta1
Daniel Calviño Sánchez 7 years ago
parent
commit
593118204a

+ 3
- 3
build/acceptance/features/core/NextcloudTestServerContext.php View File

@@ -46,7 +46,7 @@ use Behat\Behat\Hook\Scope\BeforeScenarioScope;
* customized using the "nextcloudTestServerHelperParameters" parameter, which
* is an array (without keys) with the value of the parameters in the same order
* as in the constructor of the helper class (by default,
* [ "nextcloud-local-test-acceptance", "15000-16000" ]).
* [ "nextcloud-local-test-acceptance", "selenium-nextcloud-local-test-acceptance" ]).
*
* Example of custom parameters in "behat.yml":
* default:
@@ -57,7 +57,7 @@ use Behat\Behat\Hook\Scope\BeforeScenarioScope;
* nextcloudTestServerHelper: NextcloudTestServerDockerHelper
* nextcloudTestServerHelperParameters:
* - nextcloud-local-test-acceptance-custom-image
* - 23000-42000
* - selenium-nextcloud-local-test-acceptance-custom-image
*
* Note that using Docker containers as a regular user requires giving access to
* the Docker daemon to that user. Unfortunately, that makes possible for that
@@ -81,7 +81,7 @@ class NextcloudTestServerContext implements Context {
* constructor of the $nextcloudTestServerHelper class.
*/
public function __construct($nextcloudTestServerHelper = "NextcloudTestServerDockerHelper",
$nextcloudTestServerHelperParameters = [ "nextcloud-local-test-acceptance", "15000-16000" ]) {
$nextcloudTestServerHelperParameters = [ "nextcloud-local-test-acceptance", "selenium-nextcloud-local-test-acceptance" ]) {
$nextcloudTestServerHelperClass = new ReflectionClass($nextcloudTestServerHelper);

if ($nextcloudTestServerHelperParameters === null) {

+ 23
- 29
build/acceptance/features/core/NextcloudTestServerDockerHelper.php View File

@@ -34,12 +34,14 @@
*
* Also, the Nextcloud server installed in the Docker image is expected to see
* "127.0.0.1" as a trusted domain (which would be the case if it was installed
* by running "occ maintenance:install"). Therefore, the Nextcloud server is
* accessed through a local port in the host system mapped to the port 80 of the
* Docker container; if the Nextcloud server was instead accessed directly
* through its IP address it would complain that it was being accessed from an
* untrusted domain and refuse to work until the admin whitelisted it. The base
* URL to access the Nextcloud server can be got from "getBaseUrl".
* by running "occ maintenance:install"). Therefore, the Nextcloud server
* container is connected to the network of the Selenium server container (which
* can be customized in the constructor) so the Selenium server can access the
* Nextcloud server using the "127.0.0.1" IP address. The Selenium server
* container is also expected to map its 80 port to the 80 port of the host so
* the acceptance tests can also access the Nextcloud server using the
* "127.0.0.1" IP address. In any case, the base URL to access the Nextcloud
* server can be got from "getBaseUrl".
*
* Internally, the NextcloudTestServerDockerHelper uses the Docker Command Line
* Interface (the "docker" command) to run, get information from, and destroy
@@ -76,7 +78,7 @@ class NextcloudTestServerDockerHelper implements NextcloudTestServerHelper {
/**
* @var string
*/
private $hostPortRangeForContainer;
private $seleniumContainerName;

/**
* @var string
@@ -88,12 +90,12 @@ class NextcloudTestServerDockerHelper implements NextcloudTestServerHelper {
*
* @param string $imageName the name of the Docker image that provides the
* Nextcloud test server.
* @param string $hostPortRangeForContainer the range of local ports in the
* host in which the port 80 of the container can be published.
* @param string $seleniumContainerName the name of the Selenium server
* container.
*/
public function __construct($imageName = "nextcloud-local-test-acceptance", $hostPortRangeForContainer = "15000-16000") {
public function __construct($imageName = "nextcloud-local-test-acceptance", $seleniumContainerName = "selenium-nextcloud-local-test-acceptance") {
$this->imageName = $imageName;
$this->hostPortRangeForContainer = $hostPortRangeForContainer;
$this->seleniumContainerName = $seleniumContainerName;
$this->containerName = null;
}

@@ -131,11 +133,15 @@ class NextcloudTestServerDockerHelper implements NextcloudTestServerHelper {

// There is no need to start the web server as root, so it is started
// directly as www-data instead.
// The port 80 of the container is mapped to a free port from a range in
// the host system; due to this it can be accessed from the host using
// the "127.0.0.1" IP address, which prevents Nextcloud from complaining
// that it is being accessed from an untrusted domain.
$this->executeDockerCommand("run --detach --user=www-data --publish 127.0.0.1:" . $this->hostPortRangeForContainer . ":80 --name=" . $this->containerName . " " . $this->imageName);
// The container is connected to the network of the Selenium server
// container; due to this, the Selenium server can access the Nextcloud
// server using the "127.0.0.1" IP address, which prevents Nextcloud
// from complaining that it is being accessed from an untrusted domain.
// Moreover, as the Selenium server container is expected to map its
// 80 port to the 80 port of the host the acceptance tests can also
// access the Nextcloud server using the "127.0.0.1" IP address to check
// whether the server is ready or not.
$this->executeDockerCommand("run --detach --user=www-data --network container:" . $this->seleniumContainerName . " --name=" . $this->containerName . " " . $this->imageName);
}

/**
@@ -195,19 +201,7 @@ class NextcloudTestServerDockerHelper implements NextcloudTestServerHelper {
* container is not running.
*/
public function getBaseUrl() {
return "http://" . $this->getNextcloudTestServerAddress() . "/index.php";
}

/**
* Returns the IP address and port of the Nextcloud test server (which is
* mapped to a local port in the host).
*
* @return string the IP address and port as "$ipAddress:$port".
* @throws \Exception if the Docker command failed to execute or the
* container is not running.
*/
private function getNextcloudTestServerAddress() {
return $this->executeDockerCommand("port " . $this->containerName . " 80");
return "http://127.0.0.1/index.php";
}

/**

+ 44
- 65
build/acceptance/run.sh View File

@@ -24,14 +24,13 @@
# script installs Behat, its dependencies, and some related packages in the
# "vendor" subdirectory of the acceptance tests. The acceptance tests also use
# the Selenium server to control a web browser, so the Selenium server is also
# installed to the "selenium" subdirectory and launched before the tests start
# (it will be stopped automatically once the tests end). Finally, the tests
# expect that a Docker image with the Nextcloud installation to be tested is
# available, so the script creates it based on the Nextcloud code from the
# grandparent directory.
# launched before the tests start in its own Docker container (it will be
# stopped automatically once the tests end). Finally, the tests expect that a
# Docker image with the Nextcloud installation to be tested is available, so the
# script creates it based on the Nextcloud code from the grandparent directory.
#
# To perform its job, the script requires the "composer", "java" and "docker"
# commands to be available.
# To perform its job, the script requires the "composer" and "docker" commands
# to be available.
#
# The Docker Command Line Interface (the "docker" command) requires special
# permissions to talk to the Docker daemon, and those permissions are typically
@@ -47,8 +46,9 @@
# https://docs.docker.com/engine/security/security/#docker-daemon-attack-surface
#
# Finally, take into account that this script will automatically remove the
# Docker containers named "nextcloud-local-test-acceptance" and
# "nextcloud-local-test-acceptance-[0-9a-f.]*" and the Docker image tagged as
# Docker containers named "selenium-nextcloud-local-test-acceptance",
# "nextcloud-local-test-acceptance" and
# "nextcloud-local-test-acceptance-[0-9a-f.]*", and the Docker image tagged as
# "nextcloud-local-test-acceptance:latest", even if the script did not create
# them (probably you will not have containers nor images with those names, but
# just in case).
@@ -62,71 +62,50 @@ function prepareBehat() {
composer install
}

# Launches the Selenium server, installing it if needed.
# Launches the Selenium server in a Docker container.
#
# The acceptance tests use Firefox by default but, unfortunately, Firefox >= 48
# does not provide yet the same level of support as earlier versions for certain
# features related to automated testing. Therefore, if an incompatible version
# is found the script will be exited immediately with an error state.
#
# The Selenium server is installed in the "selenium" subdirectory of the
# directory of the script.
#
# The Selenium server launched here will be automatically stopped when the
# features related to automated testing. Therefore, the Docker image used is not
# the latest one, but an older version known to work.
#
# The acceptance tests expect the Selenium server to be accessible at
# "127.0.0.1:4444", so the 4444 port of the container is mapped to the 4444 port
# of the host.
#
# The Nextcloud server has to be accessed at "127.0.0.1" by the Selenium server
# (as that is the only trusted domain by default), so the Nextcloud server
# containers have to be connected to the network of the Selenium server
# container (another option would be to connect the Selenium server to the host
# network, but messing with the host network is better avoided if possible). The
# acceptance tests themselves also need access to the Nextcloud server to ensure
# that it is ready before starting each scenario, so the 80 port of the Selenium
# server is mapped to the 80 port of the host (it is not possible to map the
# port in the container that connects to the network of another container).
#
# Besides the Selenium server, the Docker image also provides a VNC server, so
# the 5900 port of the container is also mapped to the 5900 port of the host.
#
# The Docker container started here will be automatically stopped when the
# script exits (see cleanUp). If the Selenium server can not be started then the
# script will be exited immediately with an error state; the most common cause
# for the Selenium server to fail to start is that another server is already
# running in the default port.
#
# The output of the Selenium server will be saved to
# "selenium/selenium-server-{DATE}.log".
# As the web browser is run inside the Docker container it is not visible by
# default. However, it can be viewed using VNC (for example,
# "vncviewer 127.0.0.1:5900"); when asked for the password use "secret".
function prepareSelenium() {
FIREFOX_MAJOR_VERSION=$(firefox --version | sed -e "s/Mozilla Firefox \([0-9]\+\).*/\1/")
if [ "$FIREFOX_MAJOR_VERSION" -ge 48 ]; then
echo "The acceptance tests can not be run on Mozilla Firefox >= 48 (major version found was $FIREFOX_MAJOR_VERSION)"
exit 1
fi

SELENIUM_SERVER_STANDALONE="selenium-server-standalone-2.53.1.jar"
SELENIUM_SERVER_STANDALONE_URL="http://selenium-release.storage.googleapis.com/2.53/$SELENIUM_SERVER_STANDALONE"

mkdir --parents selenium

if [ ! -f "selenium/$SELENIUM_SERVER_STANDALONE" ]; then
echo "Installing Selenium server"
wget --output-document="selenium/$SELENIUM_SERVER_STANDALONE" "$SELENIUM_SERVER_STANDALONE_URL"
fi

SELENIUM_SERVER_STANDALONE_LOG="selenium-server-$(date +%Y%m%d-%H%M%S).log"
SELENIUM_CONTAINER=selenium-nextcloud-local-test-acceptance

echo "Starting Selenium server"
# LANG=C forces "English" output for Selenium server to be able to look for
# the startup finished message (I do not really know if Selenium server log
# messages are localized or not, but just in case).
LANG=C java -jar "selenium/$SELENIUM_SERVER_STANDALONE" &>"selenium/$SELENIUM_SERVER_STANDALONE_LOG" &
SELENIUM_SERVER_STANDALONE_PID=$!

echo -n "Waiting for Selenium server to be ready"
TIMEOUT=10
TIMEOUT_STEP=1
ELAPSED_TIME=0
while [ $ELAPSED_TIME -lt $TIMEOUT ] && ! grep "Selenium Server is up and running" "selenium/$SELENIUM_SERVER_STANDALONE_LOG" &>/dev/null; do
sleep $TIMEOUT_STEP
echo -n "."
ELAPSED_TIME=$((ELAPSED_TIME+TIMEOUT_STEP))
done
echo

if [ "$ELAPSED_TIME" -eq "$TIMEOUT" ]; then
echo -n "Could not start Selenium server; see" \
"$PWD/selenium/$SELENIUM_SERVER_STANDALONE_LOG"
docker run --detach --name=$SELENIUM_CONTAINER --publish 80:80 --publish 4444:4444 --publish 5900:5900 selenium/standalone-firefox-debug:2.53.1-beryllium

if grep "Address already in use" "selenium/$SELENIUM_SERVER_STANDALONE_LOG" &>/dev/null; then
echo " (probably another" \
"Selenium server is already running)"
else
echo
fi
echo "Waiting for Selenium server to be ready"
if ! timeout 10s bash -c "while ! curl 127.0.0.1:4444 >/dev/null 2>&1; do sleep 1; done"; then
echo "Could not start Selenium server; running" \
"\"docker run --rm --publish 80:80 --publish 4444:4444 --publish 5900:5900 selenium/standalone-firefox-debug:2.53.1-beryllium\"" \
"could give you a hint of the problem"

exit 1
fi
@@ -247,9 +226,9 @@ function cleanUp() {
docker rmi $NEXTCLOUD_LOCAL_IMAGE:latest
fi

if [ -n "$SELENIUM_SERVER_STANDALONE_PID" ]; then
echo "Stopping Selenium server (PID $SELENIUM_SERVER_STANDALONE_PID)"
kill $SELENIUM_SERVER_STANDALONE_PID
if [ -n "$(docker ps --all --quiet --filter name="^/$SELENIUM_CONTAINER$")" ]; then
echo "Removing Docker container $SELENIUM_CONTAINER"
docker rm --volumes --force $SELENIUM_CONTAINER
fi
}


Loading…
Cancel
Save