summaryrefslogtreecommitdiff
path: root/test/integration/targets/pkg_resources/lookup_plugins/check_pkg_resources.py
blob: 44412f22821b536828019a37f5dcc7fb757c215b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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  # pylint: disable=unused-import
except ImportError:
    Requirement = None

from ansible.plugins.lookup import LookupBase


class LookupModule(LookupBase):
    def run(self, terms, variables=None, **kwargs):
        return []