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.
88 lines
2.8 KiB
Python
88 lines
2.8 KiB
Python
"""Sanity test for the sanity ignore file."""
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
from lib.sanity import (
|
|
SanityFailure,
|
|
SanityIgnoreParser,
|
|
SanitySingleVersion,
|
|
SanitySuccess,
|
|
SanityMessage,
|
|
)
|
|
|
|
from lib.test import (
|
|
calculate_confidence,
|
|
calculate_best_confidence,
|
|
)
|
|
|
|
from lib.config import (
|
|
SanityConfig,
|
|
)
|
|
|
|
|
|
class IgnoresTest(SanitySingleVersion):
|
|
"""Sanity test for sanity test ignore entries."""
|
|
@property
|
|
def can_ignore(self): # type: () -> bool
|
|
"""True if the test supports ignore entries."""
|
|
return False
|
|
|
|
@property
|
|
def can_skip(self): # type: () -> bool
|
|
"""True if the test supports skip entries."""
|
|
return False
|
|
|
|
# noinspection PyUnusedLocal
|
|
def test(self, args, targets): # pylint: disable=locally-disabled, unused-argument
|
|
"""
|
|
:type args: SanityConfig
|
|
:type targets: SanityTargets
|
|
:rtype: TestResult
|
|
"""
|
|
sanity_ignore = SanityIgnoreParser.load(args)
|
|
|
|
messages = []
|
|
|
|
# parse errors
|
|
|
|
messages.extend(SanityMessage(
|
|
message=message,
|
|
path=sanity_ignore.relative_path,
|
|
line=line,
|
|
column=column,
|
|
confidence=calculate_confidence(sanity_ignore.path, line, args.metadata) if args.metadata.changes else None,
|
|
) for line, column, message in sanity_ignore.parse_errors)
|
|
|
|
# file not found errors
|
|
|
|
messages.extend(SanityMessage(
|
|
message="File '%s' does not exist" % path,
|
|
path=sanity_ignore.relative_path,
|
|
line=line,
|
|
column=1,
|
|
confidence=calculate_best_confidence(((sanity_ignore.path, line), (path, 0)), args.metadata) if args.metadata.changes else None,
|
|
) for line, path in sanity_ignore.file_not_found_errors)
|
|
|
|
# conflicting ignores and skips
|
|
|
|
for test_name, ignores in sanity_ignore.ignores.items():
|
|
for ignore_path, ignore_entry in ignores.items():
|
|
skip_line_no = sanity_ignore.skips.get(test_name, {}).get(ignore_path)
|
|
|
|
if not skip_line_no:
|
|
continue
|
|
|
|
for ignore_line_no in ignore_entry.values():
|
|
messages.append(SanityMessage(
|
|
message="Ignoring '%s' is unnecessary due to skip entry on line %d" % (ignore_path, skip_line_no),
|
|
path=sanity_ignore.relative_path,
|
|
line=ignore_line_no,
|
|
column=1,
|
|
confidence=calculate_confidence(sanity_ignore.path, ignore_line_no, args.metadata) if args.metadata.changes else None,
|
|
))
|
|
|
|
if messages:
|
|
return SanityFailure(self.name, messages=messages)
|
|
|
|
return SanitySuccess(self.name)
|