ANSIBLE_METADATA doesn't support YAML currently, change 315 to invalid data type (#35009)

pull/35017/head
Matt Martz 7 years ago committed by GitHub
parent b20df1be02
commit 3c400c5899
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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,21 +946,31 @@ 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(
for error in errors: # 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( self.reporter.error(
path=self.object_path, path=self.object_path,
code=315, code=315,
**error msg='ANSIBLE_METADATA was not provided as a dict, YAML not supported'
)
for trace in traces:
self.reporter.trace(
path=self.object_path,
tracebk=trace
) )
if metadata: if metadata:

Loading…
Cancel
Save