summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/inventory_docker_machine/runme.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/inventory_docker_machine/runme.sh')
-rwxr-xr-xtest/integration/targets/inventory_docker_machine/runme.sh68
1 files changed, 0 insertions, 68 deletions
diff --git a/test/integration/targets/inventory_docker_machine/runme.sh b/test/integration/targets/inventory_docker_machine/runme.sh
deleted file mode 100755
index 074e64fc25..0000000000
--- a/test/integration/targets/inventory_docker_machine/runme.sh
+++ /dev/null
@@ -1,68 +0,0 @@
-#!/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}"