d651bda123
* Initial move of `test/runner/` content. `test/runner/lib/` -> `test/lib/ansible_test/_internal/` `test/runner/` -> `test/lib/ansible_test/_internal/data/` * Initial move of `test/sanity/` content. `test/sanity/` -> `test/lib/ansible_test/_internal/data/sanity/` (except `test/sanity/ignore.txt`) * Initial move of `test/units/pytest/` content. `test/units/pytest/` -> `test/lib/ansible_test/_internal/data/pytest/` * Follow-up move of `test/runner/unit/` content. `test/lib/ansible_test/_internal/data/unit/` -> `test/lib/ansible_test/tests/unit/` * Initial move of `ansible.cfg` content. `test/units/ansible.cfg` -> `test/lib/ansible_test/_internal/data/units/ansible.cfg` `test/env/ansible.cfg` -> `test/lib/ansible_test/_internal/data/env/ansible.cfg` * Follow-up move of `data` directory. `test/lib/ansible_test/_internal/data/` -> `test/lib/ansible_test/_data/` * Update import statements. * Add missing __init__.py for unit tests. * Fix path references and miscellaneous issues.
89 lines
2.9 KiB
Python
89 lines
2.9 KiB
Python
"""Sanity test for the sanity ignore file."""
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
import os
|
|
|
|
from ..sanity import (
|
|
SanityFailure,
|
|
SanityIgnoreParser,
|
|
SanityVersionNeutral,
|
|
SanitySuccess,
|
|
SanityMessage,
|
|
)
|
|
|
|
from ..test import (
|
|
calculate_confidence,
|
|
calculate_best_confidence,
|
|
)
|
|
|
|
from ..config import (
|
|
SanityConfig,
|
|
)
|
|
|
|
|
|
class IgnoresTest(SanityVersionNeutral):
|
|
"""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 no_targets(self): # type: () -> bool
|
|
"""True if the test does not use test targets. Mutually exclusive with all_targets."""
|
|
return True
|
|
|
|
# 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="%s '%s' does not exist" % ("Directory" if path.endswith(os.path.sep) else "File", 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)
|