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.
111 lines
3.1 KiB
Python
111 lines
3.1 KiB
Python
7 years ago
|
"""Sanity test using shellcheck."""
|
||
5 years ago
|
from __future__ import (absolute_import, division, print_function)
|
||
|
__metaclass__ = type
|
||
7 years ago
|
|
||
|
import os
|
||
|
|
||
|
from xml.etree.ElementTree import (
|
||
|
fromstring,
|
||
|
Element,
|
||
|
)
|
||
|
|
||
5 years ago
|
from .. import types as t
|
||
5 years ago
|
|
||
5 years ago
|
from ..sanity import (
|
||
5 years ago
|
SanityVersionNeutral,
|
||
7 years ago
|
SanityMessage,
|
||
|
SanityFailure,
|
||
|
SanitySuccess,
|
||
|
SanitySkipped,
|
||
5 years ago
|
SANITY_ROOT,
|
||
7 years ago
|
)
|
||
|
|
||
5 years ago
|
from ..target import (
|
||
5 years ago
|
TestTarget,
|
||
|
)
|
||
|
|
||
5 years ago
|
from ..util import (
|
||
7 years ago
|
SubprocessError,
|
||
6 years ago
|
read_lines_without_comments,
|
||
5 years ago
|
find_executable,
|
||
7 years ago
|
)
|
||
|
|
||
5 years ago
|
from ..util_common import (
|
||
5 years ago
|
run_command,
|
||
|
)
|
||
|
|
||
5 years ago
|
from ..config import (
|
||
7 years ago
|
SanityConfig,
|
||
|
)
|
||
|
|
||
|
|
||
5 years ago
|
class ShellcheckTest(SanityVersionNeutral):
|
||
7 years ago
|
"""Sanity test using shellcheck."""
|
||
5 years ago
|
@property
|
||
5 years ago
|
def error_code(self): # type: () -> t.Optional[str]
|
||
|
"""Error code for ansible-test matching the format used by the underlying test program, or None if the program does not use error codes."""
|
||
|
return 'AT1000'
|
||
|
|
||
5 years ago
|
def filter_targets(self, targets): # type: (t.List[TestTarget]) -> t.List[TestTarget]
|
||
|
"""Return the given list of test targets, filtered to include only those relevant for the test."""
|
||
|
return [target for target in targets if os.path.splitext(target.path)[1] == '.sh']
|
||
|
|
||
7 years ago
|
def test(self, args, targets):
|
||
|
"""
|
||
|
:type args: SanityConfig
|
||
|
:type targets: SanityTargets
|
||
7 years ago
|
:rtype: TestResult
|
||
7 years ago
|
"""
|
||
5 years ago
|
exclude_file = os.path.join(SANITY_ROOT, 'shellcheck', 'exclude.txt')
|
||
5 years ago
|
exclude = set(read_lines_without_comments(exclude_file, remove_blank_lines=True, optional=True))
|
||
7 years ago
|
|
||
5 years ago
|
settings = self.load_processor(args)
|
||
5 years ago
|
|
||
5 years ago
|
paths = [target.path for target in targets.include]
|
||
7 years ago
|
|
||
5 years ago
|
if not find_executable('shellcheck', required='warning'):
|
||
7 years ago
|
return SanitySkipped(self.name)
|
||
|
|
||
|
cmd = [
|
||
|
'shellcheck',
|
||
|
'-e', ','.join(sorted(exclude)),
|
||
|
'--format', 'checkstyle',
|
||
|
] + paths
|
||
|
|
||
|
try:
|
||
|
stdout, stderr = run_command(args, cmd, capture=True)
|
||
|
status = 0
|
||
|
except SubprocessError as ex:
|
||
|
stdout = ex.stdout
|
||
|
stderr = ex.stderr
|
||
|
status = ex.status
|
||
|
|
||
|
if stderr or status > 1:
|
||
|
raise SubprocessError(cmd=cmd, status=status, stderr=stderr, stdout=stdout)
|
||
|
|
||
|
if args.explain:
|
||
|
return SanitySuccess(self.name)
|
||
|
|
||
|
# json output is missing file paths in older versions of shellcheck, so we'll use xml instead
|
||
|
root = fromstring(stdout) # type: Element
|
||
|
|
||
|
results = []
|
||
|
|
||
|
for item in root: # type: Element
|
||
|
for entry in item: # type: Element
|
||
|
results.append(SanityMessage(
|
||
|
message=entry.attrib['message'],
|
||
|
path=item.attrib['name'],
|
||
|
line=int(entry.attrib['line']),
|
||
|
column=int(entry.attrib['column']),
|
||
|
level=entry.attrib['severity'],
|
||
|
code=entry.attrib['source'].replace('ShellCheck.', ''),
|
||
|
))
|
||
|
|
||
5 years ago
|
results = settings.process_errors(results, paths)
|
||
|
|
||
7 years ago
|
if results:
|
||
|
return SanityFailure(self.name, messages=results)
|
||
|
|
||
|
return SanitySuccess(self.name)
|