2019-07-23 04:24:48 +02:00
|
|
|
"""Layout provider for Ansible source."""
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
2019-08-06 23:43:29 +02:00
|
|
|
from ... import types as t
|
|
|
|
|
2019-07-23 04:24:48 +02:00
|
|
|
from . import (
|
|
|
|
ContentLayout,
|
|
|
|
LayoutProvider,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class AnsibleLayout(LayoutProvider):
|
|
|
|
"""Layout provider for Ansible source."""
|
|
|
|
@staticmethod
|
|
|
|
def is_content_root(path): # type: (str) -> bool
|
|
|
|
"""Return True if the given path is a content root for this provider."""
|
|
|
|
return os.path.exists(os.path.join(path, 'setup.py')) and os.path.exists(os.path.join(path, 'bin/ansible-test'))
|
|
|
|
|
|
|
|
def create(self, root, paths): # type: (str, t.List[str]) -> ContentLayout
|
|
|
|
"""Create a Layout using the given root and paths."""
|
2019-08-07 00:13:02 +02:00
|
|
|
plugin_paths = dict((p, os.path.join('lib/ansible/plugins', p)) for p in self.PLUGIN_TYPES)
|
2019-07-23 04:24:48 +02:00
|
|
|
|
|
|
|
plugin_paths.update(dict(
|
|
|
|
modules='lib/ansible/modules',
|
|
|
|
module_utils='lib/ansible/module_utils',
|
|
|
|
))
|
|
|
|
|
|
|
|
return ContentLayout(root,
|
|
|
|
paths,
|
|
|
|
plugin_paths=plugin_paths,
|
|
|
|
unit_path='test/units',
|
|
|
|
unit_module_path='test/units/modules',
|
2019-07-31 08:29:28 +02:00
|
|
|
unit_module_utils_path='test/units/module_utils',
|
2019-07-23 04:24:48 +02:00
|
|
|
)
|