mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add plugins to ansible-doc test and fix issues.
This commit is contained in:
parent
9130490048
commit
dff662fa0f
5 changed files with 69 additions and 29 deletions
|
@ -6,7 +6,7 @@ from __future__ import (absolute_import, division, print_function)
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = '''
|
DOCUMENTATION = '''
|
||||||
callback: null
|
callback: 'null'
|
||||||
callback_type: stdout
|
callback_type: stdout
|
||||||
requirements:
|
requirements:
|
||||||
- set as main display callback
|
- set as main display callback
|
||||||
|
|
|
@ -11,7 +11,7 @@ DOCUMENTATION = """
|
||||||
short_description: fetch data from Redis
|
short_description: fetch data from Redis
|
||||||
deprecated:
|
deprecated:
|
||||||
why: This lookup uses options intermingled with terms which blurs the interface between settings and data
|
why: This lookup uses options intermingled with terms which blurs the interface between settings and data
|
||||||
version: '2.9'
|
removed_in: '2.9'
|
||||||
alternative: new 'redis' lookup
|
alternative: new 'redis' lookup
|
||||||
description:
|
description:
|
||||||
- this lookup returns a list of items given to it, if any of the top level items is also a list it will flatten it, but it will not recurse
|
- this lookup returns a list of items given to it, if any of the top level items is also a list it will flatten it, but it will not recurse
|
||||||
|
|
|
@ -11,6 +11,7 @@ DOCUMENTATION = """
|
||||||
requirements:
|
requirements:
|
||||||
- CyberArk AIM tool installed
|
- CyberArk AIM tool installed
|
||||||
description:
|
description:
|
||||||
|
- Get secrets from CyberArk AIM.
|
||||||
options :
|
options :
|
||||||
_command:
|
_command:
|
||||||
description: Cyberark CLI utility.
|
description: Cyberark CLI utility.
|
||||||
|
|
|
@ -10,6 +10,7 @@ DOCUMENTATION = """
|
||||||
version_added: "2.0"
|
version_added: "2.0"
|
||||||
short_description: read keys from Python shelve file
|
short_description: read keys from Python shelve file
|
||||||
description:
|
description:
|
||||||
|
- Read keys from Python shelve file.
|
||||||
optoins:
|
optoins:
|
||||||
_terms:
|
_terms:
|
||||||
description: sets of key value pairs of parameters
|
description: sets of key value pairs of parameters
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
"""Sanity test for ansible-doc."""
|
"""Sanity test for ansible-doc."""
|
||||||
from __future__ import absolute_import, print_function
|
from __future__ import absolute_import, print_function
|
||||||
|
|
||||||
|
import collections
|
||||||
|
import os
|
||||||
import re
|
import re
|
||||||
|
|
||||||
from lib.sanity import (
|
from lib.sanity import (
|
||||||
|
@ -38,51 +40,87 @@ class AnsibleDocTest(SanityMultipleVersion):
|
||||||
with open('test/sanity/ansible-doc/skip.txt', 'r') as skip_fd:
|
with open('test/sanity/ansible-doc/skip.txt', 'r') as skip_fd:
|
||||||
skip_modules = set(skip_fd.read().splitlines())
|
skip_modules = set(skip_fd.read().splitlines())
|
||||||
|
|
||||||
|
plugin_type_blacklist = set([
|
||||||
|
# not supported by ansible-doc
|
||||||
|
'action',
|
||||||
|
'cliconf',
|
||||||
|
'filter',
|
||||||
|
'httpapi',
|
||||||
|
'netconf',
|
||||||
|
'terminal',
|
||||||
|
'test',
|
||||||
|
])
|
||||||
|
|
||||||
modules = sorted(set(m for i in targets.include_external for m in i.modules) -
|
modules = sorted(set(m for i in targets.include_external for m in i.modules) -
|
||||||
set(m for i in targets.exclude_external for m in i.modules) -
|
set(m for i in targets.exclude_external for m in i.modules) -
|
||||||
skip_modules)
|
skip_modules)
|
||||||
|
|
||||||
if not modules:
|
plugins = [os.path.splitext(i.path)[0].split('/')[-2:] + [i.path] for i in targets.include if os.path.splitext(i.path)[1] == '.py' and
|
||||||
|
os.path.basename(i.path) != '__init__.py' and
|
||||||
|
re.search(r'^lib/ansible/plugins/[^/]+/', i.path)
|
||||||
|
and i.path != 'lib/ansible/plugins/cache/base.py']
|
||||||
|
|
||||||
|
doc_targets = collections.defaultdict(list)
|
||||||
|
target_paths = collections.defaultdict(dict)
|
||||||
|
|
||||||
|
for module in modules:
|
||||||
|
doc_targets['module'].append(module)
|
||||||
|
|
||||||
|
for plugin_type, plugin_name, plugin_path in plugins:
|
||||||
|
if plugin_type in plugin_type_blacklist:
|
||||||
|
continue
|
||||||
|
|
||||||
|
doc_targets[plugin_type].append(plugin_name)
|
||||||
|
target_paths[plugin_type][plugin_name] = plugin_path
|
||||||
|
|
||||||
|
if not doc_targets:
|
||||||
return SanitySkipped(self.name, python_version=python_version)
|
return SanitySkipped(self.name, python_version=python_version)
|
||||||
|
|
||||||
module_paths = dict((t.module, t.path) for t in targets.targets if t.module)
|
target_paths['module'] = dict((t.module, t.path) for t in targets.targets if t.module)
|
||||||
|
|
||||||
env = ansible_environment(args, color=False)
|
env = ansible_environment(args, color=False)
|
||||||
cmd = ['ansible-doc'] + modules
|
error_messages = []
|
||||||
|
|
||||||
try:
|
for doc_type in sorted(doc_targets):
|
||||||
stdout, stderr = intercept_command(args, cmd, target_name='ansible-doc', env=env, capture=True, python_version=python_version)
|
cmd = ['ansible-doc', '-t', doc_type] + sorted(doc_targets[doc_type])
|
||||||
status = 0
|
|
||||||
except SubprocessError as ex:
|
|
||||||
stdout = ex.stdout
|
|
||||||
stderr = ex.stderr
|
|
||||||
status = ex.status
|
|
||||||
|
|
||||||
if stderr:
|
try:
|
||||||
errors = stderr.strip().splitlines()
|
stdout, stderr = intercept_command(args, cmd, target_name='ansible-doc', env=env, capture=True, python_version=python_version)
|
||||||
messages = [self.parse_error(e, module_paths) for e in errors]
|
status = 0
|
||||||
|
except SubprocessError as ex:
|
||||||
|
stdout = ex.stdout
|
||||||
|
stderr = ex.stderr
|
||||||
|
status = ex.status
|
||||||
|
|
||||||
if messages and all(messages):
|
if stderr:
|
||||||
return SanityFailure(self.name, messages=messages, python_version=python_version)
|
errors = stderr.strip().splitlines()
|
||||||
|
messages = [self.parse_error(e, target_paths) for e in errors]
|
||||||
|
|
||||||
if status:
|
if messages and all(messages):
|
||||||
summary = u'%s' % SubprocessError(cmd=cmd, status=status, stderr=stderr)
|
error_messages += messages
|
||||||
return SanityFailure(self.name, summary=summary, python_version=python_version)
|
continue
|
||||||
|
|
||||||
if stdout:
|
if status:
|
||||||
display.info(stdout.strip(), verbosity=3)
|
summary = u'%s' % SubprocessError(cmd=cmd, status=status, stderr=stderr)
|
||||||
|
return SanityFailure(self.name, summary=summary, python_version=python_version)
|
||||||
|
|
||||||
if stderr:
|
if stdout:
|
||||||
summary = u'Output on stderr from ansible-doc is considered an error.\n\n%s' % SubprocessError(cmd, stderr=stderr)
|
display.info(stdout.strip(), verbosity=3)
|
||||||
return SanityFailure(self.name, summary=summary, python_version=python_version)
|
|
||||||
|
if stderr:
|
||||||
|
summary = u'Output on stderr from ansible-doc is considered an error.\n\n%s' % SubprocessError(cmd, stderr=stderr)
|
||||||
|
return SanityFailure(self.name, summary=summary, python_version=python_version)
|
||||||
|
|
||||||
|
if error_messages:
|
||||||
|
return SanityFailure(self.name, messages=error_messages, python_version=python_version)
|
||||||
|
|
||||||
return SanitySuccess(self.name, python_version=python_version)
|
return SanitySuccess(self.name, python_version=python_version)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def parse_error(error, module_paths):
|
def parse_error(error, target_paths):
|
||||||
"""
|
"""
|
||||||
:type error: str
|
:type error: str
|
||||||
:type module_paths: dict[str, str]
|
:type target_paths: dict[str, dict[str, str]]
|
||||||
:rtype: SanityMessage | None
|
:rtype: SanityMessage | None
|
||||||
"""
|
"""
|
||||||
# example error messages from lib/ansible/cli/doc.py:
|
# example error messages from lib/ansible/cli/doc.py:
|
||||||
|
@ -97,10 +135,10 @@ class AnsibleDocTest(SanityMultipleVersion):
|
||||||
error_name = groups['name']
|
error_name = groups['name']
|
||||||
error_text = groups['text']
|
error_text = groups['text']
|
||||||
|
|
||||||
if error_type == 'module' and error_name in module_paths:
|
if error_name in target_paths.get(error_type, {}):
|
||||||
return SanityMessage(
|
return SanityMessage(
|
||||||
message=error_text,
|
message=error_text,
|
||||||
path=module_paths[error_name],
|
path=target_paths[error_type][error_name],
|
||||||
)
|
)
|
||||||
|
|
||||||
return None
|
return None
|
||||||
|
|
Loading…
Reference in a new issue