mirror of
https://github.com/ansible-collections/community.docker.git
synced 2026-07-29 11:55:04 +00:00
Initial commit
This commit is contained in:
@@ -0,0 +1,68 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
SCRIPT_DIR=$(dirname "$0")
|
||||
|
||||
echo "Who am I: $(whoami)"
|
||||
echo "Home: ${HOME}"
|
||||
echo "PWD: $(pwd)"
|
||||
echo "Script dir: ${SCRIPT_DIR}"
|
||||
|
||||
# restrict Ansible just to our inventory plugin, to prevent inventory data being matched by the test but being provided
|
||||
# by some other dynamic inventory provider
|
||||
export ANSIBLE_INVENTORY_ENABLED=docker_machine
|
||||
|
||||
[[ -n "$DEBUG" || -n "$ANSIBLE_DEBUG" ]] && set -x
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
SAVED_PATH="$PATH"
|
||||
|
||||
cleanup() {
|
||||
PATH="${SAVED_PATH}"
|
||||
echo "Cleanup"
|
||||
ansible-playbook -i teardown.docker_machine.yml playbooks/teardown.yml
|
||||
echo "Done"
|
||||
}
|
||||
|
||||
trap cleanup INT TERM EXIT
|
||||
|
||||
echo "Pre-setup (install docker, docker-machine)"
|
||||
ANSIBLE_ROLES_PATH=.. ansible-playbook playbooks/pre-setup.yml
|
||||
|
||||
echo "Print docker-machine version"
|
||||
docker-machine --version
|
||||
|
||||
echo "Check preconditions"
|
||||
# Host should NOT be known to Ansible before the test starts
|
||||
ansible-inventory -i inventory_1.docker_machine.yml --host vm >/dev/null && exit 1
|
||||
|
||||
echo "Test that the docker_machine inventory plugin is being loaded"
|
||||
ANSIBLE_DEBUG=yes ansible-inventory -i inventory_1.docker_machine.yml --list | grep -F "Loading InventoryModule 'docker_machine'"
|
||||
|
||||
echo "Setup"
|
||||
ansible-playbook playbooks/setup.yml
|
||||
|
||||
echo "Test docker_machine inventory 1"
|
||||
ansible-playbook -i inventory_1.docker_machine.yml playbooks/test_inventory_1.yml
|
||||
|
||||
echo "Activate Docker Machine mock"
|
||||
PATH=${SCRIPT_DIR}:$PATH
|
||||
|
||||
echo "Test docker_machine inventory 2: daemon_env=require daemon env success=yes"
|
||||
ansible-inventory -i inventory_2.docker_machine.yml --list
|
||||
|
||||
echo "Test docker_machine inventory 2: daemon_env=require daemon env success=no"
|
||||
export MOCK_ERROR_IN=env
|
||||
ansible-inventory -i inventory_2.docker_machine.yml --list
|
||||
unset MOCK_ERROR_IN
|
||||
|
||||
echo "Test docker_machine inventory 3: daemon_env=optional daemon env success=yes"
|
||||
ansible-inventory -i inventory_3.docker_machine.yml --list
|
||||
|
||||
echo "Test docker_machine inventory 3: daemon_env=optional daemon env success=no"
|
||||
export MOCK_ERROR_IN=env
|
||||
ansible-inventory -i inventory_2.docker_machine.yml --list
|
||||
unset MOCK_ERROR_IN
|
||||
|
||||
echo "Deactivate Docker Machine mock"
|
||||
PATH="${SAVED_PATH}"
|
||||
Reference in New Issue
Block a user