mirror of https://github.com/ansible/ansible.git
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.
61 lines
2.4 KiB
Python
61 lines
2.4 KiB
Python
"""Layout provider for Ansible collections."""
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
import os
|
|
import re
|
|
|
|
import lib.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_types = sorted(set(p.split('/')[1] for p in paths if re.search(r'^plugins/[^/]+/', p)))
|
|
provider_types = sorted(set(p.split('/')[2] for p in paths if re.search(r'^test/provider/[^/]+/', p)))
|
|
|
|
plugin_paths = dict((p, os.path.join('plugins', p)) for p in plugin_types)
|
|
provider_paths = dict((p, os.path.join('test/provider', p)) for p in provider_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_prefix = '%s.%s.' % (collection_namespace, collection_name)
|
|
collection_root = os.path.dirname(collection_root)
|
|
|
|
return ContentLayout(root,
|
|
paths,
|
|
plugin_paths=plugin_paths,
|
|
provider_paths=provider_paths,
|
|
code_path='',
|
|
collection=CollectionDetail(
|
|
name=collection_name,
|
|
namespace=collection_namespace,
|
|
root=collection_root,
|
|
prefix=collection_prefix,
|
|
),
|
|
util_path='test/util',
|
|
unit_path='test/unit',
|
|
unit_module_path='test/units/plugins/modules',
|
|
integration_path='test/integration',
|
|
)
|