summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/loop-connection
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/loop-connection')
-rw-r--r--test/integration/targets/loop-connection/aliases2
-rw-r--r--test/integration/targets/loop-connection/collections/ansible_collections/ns/name/meta/runtime.yml4
-rw-r--r--test/integration/targets/loop-connection/collections/ansible_collections/ns/name/plugins/connection/dummy.py50
-rw-r--r--test/integration/targets/loop-connection/main.yml33
-rwxr-xr-xtest/integration/targets/loop-connection/runme.sh5
5 files changed, 94 insertions, 0 deletions
diff --git a/test/integration/targets/loop-connection/aliases b/test/integration/targets/loop-connection/aliases
new file mode 100644
index 0000000..498fedd
--- /dev/null
+++ b/test/integration/targets/loop-connection/aliases
@@ -0,0 +1,2 @@
+shippable/posix/group4
+context/controller
diff --git a/test/integration/targets/loop-connection/collections/ansible_collections/ns/name/meta/runtime.yml b/test/integration/targets/loop-connection/collections/ansible_collections/ns/name/meta/runtime.yml
new file mode 100644
index 0000000..09322a9
--- /dev/null
+++ b/test/integration/targets/loop-connection/collections/ansible_collections/ns/name/meta/runtime.yml
@@ -0,0 +1,4 @@
+plugin_routing:
+ connection:
+ redirected_dummy:
+ redirect: ns.name.dummy \ No newline at end of file
diff --git a/test/integration/targets/loop-connection/collections/ansible_collections/ns/name/plugins/connection/dummy.py b/test/integration/targets/loop-connection/collections/ansible_collections/ns/name/plugins/connection/dummy.py
new file mode 100644
index 0000000..cb14991
--- /dev/null
+++ b/test/integration/targets/loop-connection/collections/ansible_collections/ns/name/plugins/connection/dummy.py
@@ -0,0 +1,50 @@
+# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
+
+DOCUMENTATION = '''
+name: dummy
+short_description: Used for loop-connection tests
+description:
+- See above
+author: ansible (@core)
+'''
+
+from ansible.errors import AnsibleError
+from ansible.plugins.connection import ConnectionBase
+
+
+class Connection(ConnectionBase):
+
+ transport = 'ns.name.dummy'
+
+ def __init__(self, *args, **kwargs):
+ self._cmds_run = 0
+ super().__init__(*args, **kwargs)
+
+ @property
+ def connected(self):
+ return True
+
+ def _connect(self):
+ return
+
+ def exec_command(self, cmd, in_data=None, sudoable=True):
+ if 'become_test' in cmd:
+ stderr = f"become - {self.become.name if self.become else None}"
+
+ elif 'connected_test' in cmd:
+ self._cmds_run += 1
+ stderr = f"ran - {self._cmds_run}"
+
+ else:
+ raise AnsibleError(f"Unknown test cmd {cmd}")
+
+ return 0, cmd.encode(), stderr.encode()
+
+ def put_file(self, in_path, out_path):
+ return
+
+ def fetch_file(self, in_path, out_path):
+ return
+
+ def close(self):
+ return
diff --git a/test/integration/targets/loop-connection/main.yml b/test/integration/targets/loop-connection/main.yml
new file mode 100644
index 0000000..fbffe30
--- /dev/null
+++ b/test/integration/targets/loop-connection/main.yml
@@ -0,0 +1,33 @@
+- hosts: localhost
+ gather_facts: false
+ tasks:
+ - name: test changing become activation on the same connection
+ raw: become_test
+ register: become_test
+ become: '{{ item }}'
+ vars:
+ ansible_connection: ns.name.dummy
+ loop:
+ - true
+ - false
+
+ - assert:
+ that:
+ - become_test.results[0].stderr == "become - sudo"
+ - become_test.results[0].stdout.startswith("sudo ")
+ - become_test.results[1].stderr == "become - None"
+ - become_test.results[1].stdout == "become_test"
+
+ - name: test loop reusing connection with redirected plugin name
+ raw: connected_test
+ register: connected_test
+ vars:
+ ansible_connection: ns.name.redirected_dummy
+ loop:
+ - 1
+ - 2
+
+ - assert:
+ that:
+ - connected_test.results[0].stderr == "ran - 1"
+ - connected_test.results[1].stderr == "ran - 2" \ No newline at end of file
diff --git a/test/integration/targets/loop-connection/runme.sh b/test/integration/targets/loop-connection/runme.sh
new file mode 100755
index 0000000..db4031d
--- /dev/null
+++ b/test/integration/targets/loop-connection/runme.sh
@@ -0,0 +1,5 @@
+#!/usr/bin/env bash
+
+set -eux -o pipefail
+
+ansible-playbook main.yml "$@"