You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
"""Layout provider for Ansible collections."""
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
from ... import types as t
|
|
|
|
|
|
|
|
from . import (
|
|
|
|
ContentLayout,
|
|
|
|
LayoutProvider,
|
|
|
|
CollectionDetail,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class CollectionLayout(LayoutProvider):
|
|
|
|
"""Layout provider for Ansible collections."""
|
|
|
|
__module_path = 'plugins/modules'
|
|
|
|
__unit_path = 'test/unit'
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def is_content_root(path): # type: (str) -> bool
|
|
|
|
"""Return True if the given path is a content root for this provider."""
|
|
|
|
if os.path.basename(os.path.dirname(os.path.dirname(path))) == 'ansible_collections':
|
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
def create(self, root, paths): # type: (str, t.List[str]) -> ContentLayout
|
|
|
|
"""Create a Layout using the given root and paths."""
|
|
|
|
plugin_paths = dict((p, os.path.join('plugins', p)) for p in self.PLUGIN_TYPES)
|
|
|
|
|
|
|
|
collection_root = os.path.dirname(os.path.dirname(root))
|
|
|
|
collection_dir = os.path.relpath(root, collection_root)
|
|
|
|
collection_namespace, collection_name = collection_dir.split(os.sep)
|
|
|
|
|
|
|
|
collection_root = os.path.dirname(collection_root)
|
|
|
|
|
|
|
|
return ContentLayout(root,
|
|
|
|
paths,
|
|
|
|
plugin_paths=plugin_paths,
|
|
|
|
collection=CollectionDetail(
|
|
|
|
name=collection_name,
|
|
|
|
namespace=collection_namespace,
|
|
|
|
root=collection_root,
|
|
|
|
),
|
|
|
|
test_path='tests',
|
|
|
|
results_path='tests/output',
|
|
|
|
sanity_path='tests/sanity',
|
|
|
|
integration_path='tests/integration',
|
|
|
|
integration_targets_path='tests/integration/targets',
|
|
|
|
integration_vars_path='tests/integration/integration_config.yml',
|
|
|
|
unit_path='tests/unit',
|
|
|
|
unit_module_path='tests/unit/plugins/modules',
|
|
|
|
unit_module_utils_path='tests/unit/plugins/module_utils',
|
|
|
|
)
|