|
|
|
|
@ -117,6 +117,11 @@ def get_python_module_utils_imports(compile_targets):
|
|
|
|
|
|
|
|
|
|
for module_util in sorted(imports):
|
|
|
|
|
if not imports[module_util]:
|
|
|
|
|
package_path = get_import_path(module_util, package=True)
|
|
|
|
|
|
|
|
|
|
if os.path.exists(package_path) and not os.path.getsize(package_path):
|
|
|
|
|
continue # ignore empty __init__.py files
|
|
|
|
|
|
|
|
|
|
display.warning('No imports found which use the "%s" module_util.' % module_util)
|
|
|
|
|
|
|
|
|
|
return imports
|
|
|
|
|
@ -127,14 +132,17 @@ def get_python_module_utils_name(path): # type: (str) -> str
|
|
|
|
|
base_path = data_context().content.module_utils_path
|
|
|
|
|
|
|
|
|
|
if data_context().content.collection:
|
|
|
|
|
prefix = 'ansible_collections.' + data_context().content.collection.prefix + 'plugins.module_utils.'
|
|
|
|
|
prefix = 'ansible_collections.' + data_context().content.collection.prefix + 'plugins.module_utils'
|
|
|
|
|
else:
|
|
|
|
|
prefix = 'ansible.module_utils.'
|
|
|
|
|
prefix = 'ansible.module_utils'
|
|
|
|
|
|
|
|
|
|
if path.endswith('/__init__.py'):
|
|
|
|
|
path = os.path.dirname(path)
|
|
|
|
|
|
|
|
|
|
name = prefix + os.path.splitext(os.path.relpath(path, base_path))[0].replace(os.path.sep, '.')
|
|
|
|
|
if path == base_path:
|
|
|
|
|
name = prefix
|
|
|
|
|
else:
|
|
|
|
|
name = prefix + '.' + os.path.splitext(os.path.relpath(path, base_path))[0].replace(os.path.sep, '.')
|
|
|
|
|
|
|
|
|
|
return name
|
|
|
|
|
|
|
|
|
|
@ -151,9 +159,6 @@ def enumerate_module_utils():
|
|
|
|
|
if ext != '.py':
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
if os.path.getsize(path) == 0:
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
module_utils.append(get_python_module_utils_name(path))
|
|
|
|
|
|
|
|
|
|
return set(module_utils)
|
|
|
|
|
@ -192,7 +197,9 @@ def get_import_path(name, package=False): # type: (str, bool) -> str
|
|
|
|
|
|
|
|
|
|
if name.startswith('ansible.module_utils.') or name == 'ansible.module_utils':
|
|
|
|
|
path = os.path.join('lib', filename)
|
|
|
|
|
elif data_context().content.collection and name.startswith('ansible_collections.%s.plugins.module_utils.' % data_context().content.collection.full_name):
|
|
|
|
|
elif data_context().content.collection and (
|
|
|
|
|
name.startswith('ansible_collections.%s.plugins.module_utils.' % data_context().content.collection.full_name) or
|
|
|
|
|
name == 'ansible_collections.%s.plugins.module_utils' % data_context().content.collection.full_name):
|
|
|
|
|
path = '/'.join(filename.split('/')[3:])
|
|
|
|
|
else:
|
|
|
|
|
raise Exception('Unexpected import name: %s' % name)
|
|
|
|
|
@ -274,11 +281,6 @@ class ModuleUtilFinder(ast.NodeVisitor):
|
|
|
|
|
if is_subdir(self.path, data_context().content.test_path):
|
|
|
|
|
return # invalid imports in tests are ignored
|
|
|
|
|
|
|
|
|
|
path = get_import_path(name, True)
|
|
|
|
|
|
|
|
|
|
if os.path.exists(path) and os.path.getsize(path) == 0:
|
|
|
|
|
return # zero length __init__.py files are ignored during earlier processing, do not warn about them now
|
|
|
|
|
|
|
|
|
|
# Treat this error as a warning so tests can be executed as best as possible.
|
|
|
|
|
# This error should be detected by unit or integration tests.
|
|
|
|
|
display.warning('%s:%d Invalid module_utils import: %s' % (self.path, line_number, import_name))
|
|
|
|
|
|