mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
ANSIBLE_METADATA doesn't support YAML currently, change 315 to invalid data type (#35009)
This commit is contained in:
parent
b20df1be02
commit
3c400c5899
2 changed files with 28 additions and 18 deletions
|
@ -100,7 +100,7 @@ Errors
|
||||||
312 No ``RETURN`` documentation provided
|
312 No ``RETURN`` documentation provided
|
||||||
313 ``RETURN`` is not valid YAML
|
313 ``RETURN`` is not valid YAML
|
||||||
314 No ``ANSIBLE_METADATA`` provided
|
314 No ``ANSIBLE_METADATA`` provided
|
||||||
315 ``ANSIBLE_METADATA`` is not valid YAML
|
315 ``ANSIBLE_METADATA`` was not provided as a dict, YAML not supported
|
||||||
316 Invalid ``ANSIBLE_METADATA`` schema
|
316 Invalid ``ANSIBLE_METADATA`` schema
|
||||||
317 option is marked as required but specifies a default.
|
317 option is marked as required but specifies a default.
|
||||||
Arguments with a default should not be marked as required
|
Arguments with a default should not be marked as required
|
||||||
|
|
|
@ -840,7 +840,7 @@ class ModuleValidator(Validator):
|
||||||
code=303,
|
code=303,
|
||||||
msg='DOCUMENTATION fragment missing: %s' % fragment
|
msg='DOCUMENTATION fragment missing: %s' % fragment
|
||||||
)
|
)
|
||||||
except Exception:
|
except Exception as e:
|
||||||
self.reporter.trace(
|
self.reporter.trace(
|
||||||
path=self.object_path,
|
path=self.object_path,
|
||||||
tracebk=traceback.format_exc()
|
tracebk=traceback.format_exc()
|
||||||
|
@ -848,7 +848,7 @@ class ModuleValidator(Validator):
|
||||||
self.reporter.error(
|
self.reporter.error(
|
||||||
path=self.object_path,
|
path=self.object_path,
|
||||||
code=304,
|
code=304,
|
||||||
msg='Unknown DOCUMENTATION error, see TRACE'
|
msg='Unknown DOCUMENTATION error, see TRACE: %s' % e
|
||||||
)
|
)
|
||||||
|
|
||||||
if 'options' in doc and doc['options'] is None:
|
if 'options' in doc and doc['options'] is None:
|
||||||
|
@ -946,22 +946,32 @@ class ModuleValidator(Validator):
|
||||||
doc_info['ANSIBLE_METADATA']['value']
|
doc_info['ANSIBLE_METADATA']['value']
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
metadata, errors, traces = parse_yaml(
|
# ANSIBLE_METADATA doesn't properly support YAML
|
||||||
doc_info['ANSIBLE_METADATA']['value'].s,
|
# we should consider removing it from the spec
|
||||||
doc_info['ANSIBLE_METADATA']['lineno'],
|
# Below code kept, incase we change our minds
|
||||||
self.name, 'ANSIBLE_METADATA'
|
|
||||||
|
# metadata, errors, traces = parse_yaml(
|
||||||
|
# doc_info['ANSIBLE_METADATA']['value'].s,
|
||||||
|
# doc_info['ANSIBLE_METADATA']['lineno'],
|
||||||
|
# self.name, 'ANSIBLE_METADATA'
|
||||||
|
# )
|
||||||
|
# for error in errors:
|
||||||
|
# self.reporter.error(
|
||||||
|
# path=self.object_path,
|
||||||
|
# code=315,
|
||||||
|
# **error
|
||||||
|
# )
|
||||||
|
# for trace in traces:
|
||||||
|
# self.reporter.trace(
|
||||||
|
# path=self.object_path,
|
||||||
|
# tracebk=trace
|
||||||
|
# )
|
||||||
|
|
||||||
|
self.reporter.error(
|
||||||
|
path=self.object_path,
|
||||||
|
code=315,
|
||||||
|
msg='ANSIBLE_METADATA was not provided as a dict, YAML not supported'
|
||||||
)
|
)
|
||||||
for error in errors:
|
|
||||||
self.reporter.error(
|
|
||||||
path=self.object_path,
|
|
||||||
code=315,
|
|
||||||
**error
|
|
||||||
)
|
|
||||||
for trace in traces:
|
|
||||||
self.reporter.trace(
|
|
||||||
path=self.object_path,
|
|
||||||
tracebk=trace
|
|
||||||
)
|
|
||||||
|
|
||||||
if metadata:
|
if metadata:
|
||||||
self._validate_docs_schema(metadata, metadata_1_1_schema(deprecated),
|
self._validate_docs_schema(metadata, metadata_1_1_schema(deprecated),
|
||||||
|
|
Loading…
Reference in a new issue