summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/ansible-galaxy-collection/files
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 16:04:21 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 16:04:21 +0000
commit8a754e0858d922e955e71b253c139e071ecec432 (patch)
tree527d16e74bfd1840c85efd675fdecad056c54107 /test/integration/targets/ansible-galaxy-collection/files
parentInitial commit. (diff)
downloadansible-core-upstream.tar.xz
ansible-core-upstream.zip
Adding upstream version 2.14.3.upstream/2.14.3upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'test/integration/targets/ansible-galaxy-collection/files')
-rw-r--r--test/integration/targets/ansible-galaxy-collection/files/build_bad_tar.py84
-rw-r--r--test/integration/targets/ansible-galaxy-collection/files/test_module.py80
2 files changed, 164 insertions, 0 deletions
diff --git a/test/integration/targets/ansible-galaxy-collection/files/build_bad_tar.py b/test/integration/targets/ansible-galaxy-collection/files/build_bad_tar.py
new file mode 100644
index 0000000..6182e86
--- /dev/null
+++ b/test/integration/targets/ansible-galaxy-collection/files/build_bad_tar.py
@@ -0,0 +1,84 @@
+#!/usr/bin/env python
+
+# Copyright: (c) 2020, Ansible Project
+# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
+
+from __future__ import (absolute_import, division, print_function)
+__metaclass__ = type
+
+import hashlib
+import io
+import json
+import os
+import sys
+import tarfile
+
+manifest = {
+ 'collection_info': {
+ 'namespace': 'suspicious',
+ 'name': 'test',
+ 'version': '1.0.0',
+ 'dependencies': {},
+ },
+ 'file_manifest_file': {
+ 'name': 'FILES.json',
+ 'ftype': 'file',
+ 'chksum_type': 'sha256',
+ 'chksum_sha256': None,
+ 'format': 1
+ },
+ 'format': 1,
+}
+
+files = {
+ 'files': [
+ {
+ 'name': '.',
+ 'ftype': 'dir',
+ 'chksum_type': None,
+ 'chksum_sha256': None,
+ 'format': 1,
+ },
+ ],
+ 'format': 1,
+}
+
+
+def add_file(tar_file, filename, b_content, update_files=True):
+ tar_info = tarfile.TarInfo(filename)
+ tar_info.size = len(b_content)
+ tar_info.mode = 0o0755
+ tar_file.addfile(tarinfo=tar_info, fileobj=io.BytesIO(b_content))
+
+ if update_files:
+ sha256 = hashlib.sha256()
+ sha256.update(b_content)
+
+ files['files'].append({
+ 'name': filename,
+ 'ftype': 'file',
+ 'chksum_type': 'sha256',
+ 'chksum_sha256': sha256.hexdigest(),
+ 'format': 1
+ })
+
+
+collection_tar = os.path.join(sys.argv[1], 'suspicious-test-1.0.0.tar.gz')
+with tarfile.open(collection_tar, mode='w:gz') as tar_file:
+ add_file(tar_file, '../../outside.sh', b"#!/usr/bin/env bash\necho \"you got pwned\"")
+
+ b_files = json.dumps(files).encode('utf-8')
+ b_files_hash = hashlib.sha256()
+ b_files_hash.update(b_files)
+ manifest['file_manifest_file']['chksum_sha256'] = b_files_hash.hexdigest()
+ add_file(tar_file, 'FILES.json', b_files)
+ add_file(tar_file, 'MANIFEST.json', json.dumps(manifest).encode('utf-8'))
+
+ b_manifest = json.dumps(manifest).encode('utf-8')
+
+ for name, b in [('MANIFEST.json', b_manifest), ('FILES.json', b_files)]:
+ b_io = io.BytesIO(b)
+ tar_info = tarfile.TarInfo(name)
+ tar_info.size = len(b)
+ tar_info.mode = 0o0644
+ tar_file.addfile(tarinfo=tar_info, fileobj=b_io)
diff --git a/test/integration/targets/ansible-galaxy-collection/files/test_module.py b/test/integration/targets/ansible-galaxy-collection/files/test_module.py
new file mode 100644
index 0000000..d7e4814
--- /dev/null
+++ b/test/integration/targets/ansible-galaxy-collection/files/test_module.py
@@ -0,0 +1,80 @@
+# -*- coding: utf-8 -*-
+
+# (c) 2012, Michael DeHaan <michael.dehaan@gmail.com>
+# (c) 2016, Toshio Kuratomi <tkuratomi@ansible.com>
+# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
+
+from __future__ import absolute_import, division, print_function
+__metaclass__ = type
+
+
+DOCUMENTATION = '''
+---
+module: ping
+version_added: historical
+short_description: Try to connect to host, verify a usable python and return C(pong) on success
+description:
+ - A trivial test module, this module always returns C(pong) on successful
+ contact. It does not make sense in playbooks, but it is useful from
+ C(/usr/bin/ansible) to verify the ability to login and that a usable Python is configured.
+ - This is NOT ICMP ping, this is just a trivial test module that requires Python on the remote-node.
+ - For Windows targets, use the M(ansible.windows.win_ping) module instead.
+ - For Network targets, use the M(ansible.netcommon.net_ping) module instead.
+options:
+ data:
+ description:
+ - Data to return for the C(ping) return value.
+ - If this parameter is set to C(crash), the module will cause an exception.
+ type: str
+ default: pong
+seealso:
+- module: ansible.netcommon.net_ping
+- module: ansible.windows.win_ping
+author:
+ - Ansible Core Team
+ - Michael DeHaan
+'''
+
+EXAMPLES = '''
+# Test we can logon to 'webservers' and execute python with json lib.
+# ansible webservers -m ping
+
+- name: Example from an Ansible Playbook
+ ping:
+
+- name: Induce an exception to see what happens
+ ping:
+ data: crash
+'''
+
+RETURN = '''
+ping:
+ description: value provided with the data parameter
+ returned: success
+ type: str
+ sample: pong
+'''
+
+from ansible.module_utils.basic import AnsibleModule
+
+
+def main():
+ module = AnsibleModule(
+ argument_spec=dict(
+ data=dict(type='str', default='pong'),
+ ),
+ supports_check_mode=True
+ )
+
+ if module.params['data'] == 'crash':
+ raise Exception("boom")
+
+ result = dict(
+ ping=module.params['data'],
+ )
+
+ module.exit_json(**result)
+
+
+if __name__ == '__main__':
+ main()