diff options
author | Matt Clay <matt@mystile.com> | 2021-02-13 08:03:57 +0100 |
---|---|---|
committer | Matt Clay <matt@mystile.com> | 2021-02-13 08:51:37 +0100 |
commit | 133a29acb4ab06ccc881dd851febfd426b17ead5 (patch) | |
tree | bb055e2ed657fe5372ac7cd6d2f35a46acc37490 /test/integration | |
parent | ansible-doc - account for empty meta/main.yml (#73590) (diff) | |
download | ansible-133a29acb4ab06ccc881dd851febfd426b17ead5.tar.xz ansible-133a29acb4ab06ccc881dd851febfd426b17ead5.zip |
Add test to verify pkg_resources imports work.
Diffstat (limited to 'test/integration')
3 files changed, 27 insertions, 0 deletions
diff --git a/test/integration/targets/pkg_resources/aliases b/test/integration/targets/pkg_resources/aliases new file mode 100644 index 0000000000..a6dafcf8cd --- /dev/null +++ b/test/integration/targets/pkg_resources/aliases @@ -0,0 +1 @@ +shippable/posix/group1 diff --git a/test/integration/targets/pkg_resources/lookup_plugins/check_pkg_resources.py b/test/integration/targets/pkg_resources/lookup_plugins/check_pkg_resources.py new file mode 100644 index 0000000000..9f1c5c0b19 --- /dev/null +++ b/test/integration/targets/pkg_resources/lookup_plugins/check_pkg_resources.py @@ -0,0 +1,23 @@ +""" +This test case verifies that pkg_resources imports from ansible plugins are functional. + +If pkg_resources is not installed this test will succeed. +If pkg_resources is installed but is unable to function, this test will fail. + +One known failure case this test can detect is when ansible declares a __requires__ and then tests are run without an egg-info directory. +""" +from __future__ import absolute_import, division, print_function +__metaclass__ = type + +# noinspection PyUnresolvedReferences +try: + from pkg_resources import Requirement +except ImportError: + Requirement = None + +from ansible.plugins.lookup import LookupBase + + +class LookupModule(LookupBase): + def run(self, terms, variables=None, **kwargs): + return [] diff --git a/test/integration/targets/pkg_resources/tasks/main.yml b/test/integration/targets/pkg_resources/tasks/main.yml new file mode 100644 index 0000000000..b19d0ebd5a --- /dev/null +++ b/test/integration/targets/pkg_resources/tasks/main.yml @@ -0,0 +1,3 @@ +- name: Verify that pkg_resources imports are functional + debug: + msg: "{{ lookup('check_pkg_resources') }}" |