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.
ansible/test/sanity/code-smell/rstcheck.py

63 lines
1.5 KiB
Python

"""Sanity test using rstcheck and sphinx."""
from __future__ import annotations
import re
import subprocess
import sys
def main():
paths = sys.argv[1:] or sys.stdin.read().splitlines()
encoding = 'utf-8'
ignore_substitutions = (
'br',
)
cmd = [
sys.executable,
'-c', 'import rstcheck; rstcheck.main();',
'--report', 'warning',
'--ignore-substitutions', ','.join(ignore_substitutions),
] + paths
process = subprocess.run(cmd,
stdin=subprocess.DEVNULL,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
check=False,
)
if process.stdout:
raise Exception(process.stdout)
pattern = re.compile(r'^(?P<path>[^:]*):(?P<line>[0-9]+): \((?P<level>INFO|WARNING|ERROR|SEVERE)/[0-4]\) (?P<message>.*)$')
results = parse_to_list_of_dict(pattern, process.stderr.decode(encoding))
for result in results:
print('%s:%s:%s: %s' % (result['path'], result['line'], 0, result['message']))
def parse_to_list_of_dict(pattern, value):
matched = []
unmatched = []
for line in value.splitlines():
match = re.search(pattern, line)
if match:
matched.append(match.groupdict())
else:
unmatched.append(line)
if unmatched:
raise Exception('Pattern "%s" did not match values:\n%s' % (pattern, '\n'.join(unmatched)))
return matched
if __name__ == '__main__':
main()