mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
81 lines
3.3 KiB
Bash
Executable File
81 lines
3.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
###########################################################################
|
|
# script.sh
|
|
# ---------------------
|
|
# Date : March 2016
|
|
# Copyright : (C) 2016 by Matthias Kuhn
|
|
# Email : matthias at opengis dot ch
|
|
###########################################################################
|
|
# #
|
|
# This program is free software; you can redistribute it and/or modify #
|
|
# it under the terms of the GNU General Public License as published by #
|
|
# the Free Software Foundation; either version 2 of the License, or #
|
|
# (at your option) any later version. #
|
|
# #
|
|
###########################################################################
|
|
|
|
set -e
|
|
|
|
echo "Running flaky test: ${RUN_FLAKY_TESTS}"
|
|
|
|
# build QGIS in docker
|
|
echo "travis_fold:start:docker_build_qgis"
|
|
echo "${bold}Docker build QGIS${endbold}"
|
|
docker run -t --name qgis_container \
|
|
-v ${TRAVIS_BUILD_DIR}:/root/QGIS \
|
|
-v ${CCACHE_DIR}:/root/.ccache \
|
|
--env-file ${TRAVIS_BUILD_DIR}/.ci/travis/linux/docker-variables.env \
|
|
qgis/qgis3-build-deps:${DOCKER_TAG} \
|
|
/root/QGIS/.ci/travis/linux/scripts/docker-qgis-build.sh
|
|
|
|
# commit container
|
|
docker commit qgis_container qgis_image
|
|
echo "travis_fold:end:docker_build_qgis"
|
|
|
|
# running QGIS tests in committed image
|
|
echo "travis_fold:start:docker_test_qgis"
|
|
echo "${bold}Docker run tests${endbold}"
|
|
docker-compose -f ${TRAVIS_BUILD_DIR}/.ci/travis/linux/docker-compose.travis.yml run qgis-deps /root/QGIS/.ci/travis/linux/scripts/docker-qgis-test.sh
|
|
echo "travis_fold:end:docker_test_qgis"
|
|
|
|
# running tests for the python test runner
|
|
echo "travis_fold:start:docker_test_runners"
|
|
echo "${bold}Docker test QGIS runners${endbold}"
|
|
docker run -d --name qgis-testing-environment \
|
|
-v ${TRAVIS_BUILD_DIR}:/root/QGIS \
|
|
-v ${TRAVIS_BUILD_DIR}/tests/src/python:/tests_directory \
|
|
-v ${TRAVIS_BUILD_DIR}/.docker/qgis_resources/test_runner:/usr/bin/test_runner \
|
|
-v ${TRAVIS_BUILD_DIR}/.docker/qgis_resources/supervisor:/etc/supervisor \
|
|
-e QGIS_BUILD_PATH=/root/QGIS/build/output/bin/qgis \
|
|
-e TEST_RUNNER_PATH=/usr/bin/test_runner/qgis_testrunner.py \
|
|
-e DISPLAY=:99 \
|
|
qgis_image \
|
|
/usr/bin/supervisord -c /etc/supervisor/supervisord.conf
|
|
|
|
# Wait for xvfb to finish starting
|
|
printf "Waiting for the docker...🐳..."
|
|
sleep 10
|
|
echo " done 🥩"
|
|
|
|
declare -A testrunners
|
|
# Passing cases:
|
|
testrunners["test_testrunner.run_passing"]=0
|
|
testrunners["test_testrunner.run_skipped_and_passing"]=0
|
|
# Failing cases:
|
|
testrunners["test_testrunner"]=1
|
|
testrunners["test_testrunner.run_all"]=1
|
|
testrunners["test_testrunner.run_failing"]=1
|
|
set +e # do not exit on error
|
|
# Run tests in the docker
|
|
for i in "${!testrunners[@]}"
|
|
do
|
|
echo "travis_fold:start:docker_test_runner_${i}"
|
|
echo "test ${i}..."
|
|
docker exec -it qgis-testing-environment sh -c "cd /tests_directory && /usr/bin/test_runner/qgis_testrunner.sh ${i}"
|
|
[[ $? -eq "${testrunners[$i]}" ]] && echo "success" || exit 1
|
|
echo "travis_fold:end:docker_test_runner_${i}"
|
|
done
|
|
set -e # switch back
|
|
docker stop qgis-testing-environment
|
|
echo "travis_fold:end:docker_test_runners"
|