mirror of
https://github.com/ansible-collections/community.docker.git
synced 2025-12-16 11:58:43 +00:00
* Move licenses to LICENSES/, use SPDX-License-Identifier, mention all licenses in galaxy.yml. * ignore.txt lines cannot be empty or contain only a comment. * Cleanup. * This particular __init__.py seems to be crucial. * Try extra newline. * Markdown comments are a real mess. I hope this won't break Galaxy... * More licenses. * Add sanity test. * Skip some files, lint. * Make sure there is a copyright line everywhere. * Also check for copyright line in sanity tests. * Remove colon after 'Copyright'. * Normalize lint script. * Avoid colon after 'Copyright' in lint script. * Improve license checker. * Update README.md Co-authored-by: Maxwell G <9920591+gotmax23@users.noreply.github.com> * Remove superfluous space. * Referencing target instead of symlink Co-authored-by: Maxwell G <9920591+gotmax23@users.noreply.github.com>
66 lines
1.7 KiB
Bash
Executable File
66 lines
1.7 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (c) Ansible Project
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
# If you use another image, you possibly also need to adjust
|
|
# ansible_python_interpreter in test_connection.inventory.
|
|
source ../setup_docker/vars/main.env
|
|
IMAGE="${DOCKER_TEST_IMAGE_PYTHON3}"
|
|
|
|
# Setup phase
|
|
|
|
echo "Setup"
|
|
ANSIBLE_ROLES_PATH=.. ansible-playbook setup.yml
|
|
|
|
# If docker wasn't installed, don't run the tests
|
|
if [ "$(command -v docker)" == "" ]; then
|
|
exit
|
|
fi
|
|
|
|
|
|
# Test phase
|
|
|
|
CONTAINER_SUFFIX=-${RANDOM}
|
|
|
|
DOCKER_CONTAINERS="docker-connection-test-container${CONTAINER_SUFFIX}"
|
|
|
|
[[ -n "$DEBUG" || -n "$ANSIBLE_DEBUG" ]] && set -x
|
|
|
|
set -euo pipefail
|
|
|
|
cleanup() {
|
|
echo "Cleanup"
|
|
docker rm -f ${DOCKER_CONTAINERS}
|
|
echo "Shutdown"
|
|
ANSIBLE_ROLES_PATH=.. ansible-playbook shutdown.yml
|
|
echo "Done"
|
|
}
|
|
|
|
trap cleanup INT TERM EXIT
|
|
|
|
echo "Start containers"
|
|
for CONTAINER in ${DOCKER_CONTAINERS}; do
|
|
if [ "${ANSIBLE_TEST_COVERAGE:-}" == "" ]; then
|
|
docker run --rm --name ${CONTAINER} --detach "${IMAGE}" /bin/sh -c 'sleep 10m'
|
|
else
|
|
docker run --rm --name ${CONTAINER} --detach -v /tmp:/tmp "${IMAGE}" /bin/sh -c 'sleep 10m'
|
|
docker exec ${CONTAINER} pip3 install coverage
|
|
fi
|
|
echo ${CONTAINER}
|
|
done
|
|
|
|
cat > test_connection.inventory << EOF
|
|
[docker]
|
|
docker-no-pipelining ansible_pipelining=false
|
|
docker-pipelining ansible_pipelining=true
|
|
|
|
[docker:vars]
|
|
ansible_host=docker-connection-test-container${CONTAINER_SUFFIX}
|
|
ansible_connection=community.docker.docker
|
|
ansible_python_interpreter=/usr/local/bin/python3
|
|
EOF
|
|
|
|
echo "Run tests"
|
|
./runme-connection.sh "$@"
|