2017-11-13 10:51:18 -06:00
|
|
|
#!/usr/bin/env python
|
|
|
|
from __future__ import print_function
|
|
|
|
|
2018-07-17 11:37:23 -07:00
|
|
|
import os
|
2017-11-13 10:51:18 -06:00
|
|
|
import re
|
|
|
|
import sys
|
|
|
|
|
|
|
|
ASSERT_RE = re.compile(r'.*(?<![-:a-zA-Z#][ -])\bassert\b(?!:).*')
|
|
|
|
|
|
|
|
|
2018-02-20 13:37:23 -08:00
|
|
|
def main():
|
2018-07-17 11:37:23 -07:00
|
|
|
skip = set([
|
|
|
|
'test/sanity/code-smell/%s' % os.path.basename(__file__),
|
|
|
|
'lib/ansible/module_utils/compat/ipaddress.py',
|
|
|
|
])
|
|
|
|
|
2018-02-26 23:32:19 -08:00
|
|
|
for path in sys.argv[1:] or sys.stdin.read().splitlines():
|
2018-07-17 11:37:23 -07:00
|
|
|
if path in skip:
|
|
|
|
continue
|
|
|
|
|
2017-11-13 10:51:18 -06:00
|
|
|
with open(path, 'r') as f:
|
|
|
|
for i, line in enumerate(f.readlines()):
|
|
|
|
matches = ASSERT_RE.findall(line)
|
|
|
|
|
|
|
|
if matches:
|
2018-02-20 13:37:23 -08:00
|
|
|
lineno = i + 1
|
|
|
|
colno = line.index('assert') + 1
|
|
|
|
print('%s:%d:%d: raise AssertionError instead of: %s' % (path, lineno, colno, matches[0][colno - 1:]))
|
2017-11-13 10:51:18 -06:00
|
|
|
|
|
|
|
|
2018-02-20 13:37:23 -08:00
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|