qutebrowser/scripts/run_checks.py

246 lines
7.4 KiB
Python
Raw Normal View History

2014-02-06 14:01:23 +01:00
# Copyright 2014 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
#
# This file is part of qutebrowser.
#
# qutebrowser is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# qutebrowser is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with qutebrowser. If not, see <http://www.gnu.org/licenses/>.
2014-05-15 08:24:10 +02:00
# pylint: disable=broad-except
2014-04-17 17:44:27 +02:00
""" Run different codecheckers over a codebase.
2014-04-29 08:34:49 +02:00
Runs flake8, pylint, pep257, a CRLF/whitespace/conflict-checker and pyroma by
default.
2014-04-17 17:44:27 +02:00
Module attributes:
status: An OrderedDict for return status values.
option: A dictionary with options.
"""
2014-01-28 15:25:40 +01:00
import sys
import subprocess
2014-01-28 22:44:39 +01:00
import os
import os.path
2014-05-06 14:37:47 +02:00
import unittest
2014-05-06 19:00:35 +02:00
import logging
from collections import OrderedDict
2014-01-28 15:25:40 +01:00
2014-02-10 11:07:21 +01:00
try:
import pep257
except ImportError:
do_check_257 = False
else:
do_check_257 = True
2014-01-29 04:07:27 +01:00
from pkg_resources import load_entry_point, DistributionNotFound
2014-05-06 19:00:35 +02:00
# We need to do this because pyroma is braindead enough to use logging instead
# of print...
logging.basicConfig(level=logging.INFO, format='%(msg)s')
status = OrderedDict()
2014-02-07 10:58:53 +01:00
options = {
2014-05-15 07:29:12 +02:00
'targets': ['qutebrowser', 'scripts'],
2014-02-07 10:58:53 +01:00
'disable': {
2014-02-07 19:44:56 +01:00
'pep257': [
2014-02-10 11:07:21 +01:00
'D102', # Docstring missing, will be handled by others
'D209', # Blank line before closing """ (removed from PEP257)
2014-04-17 15:31:30 +02:00
'D402', # First line should not be function's signature
# (false-positives)
2014-02-07 19:44:56 +01:00
],
2014-02-07 10:58:53 +01:00
},
2014-05-15 08:11:00 +02:00
'exclude': [],
'exclude_pep257': ['test_*', 'ez_setup'],
2014-02-07 10:58:53 +01:00
'other': {
2014-04-16 11:05:58 +02:00
'pylint': ['--output-format=colorized', '--reports=no',
'--rcfile=.pylintrc'],
'flake8': ['--max-complexity=10', '--config=.flake8'],
2014-02-07 10:58:53 +01:00
},
}
2014-01-28 15:25:40 +01:00
if os.name == 'nt':
# pep257 uses cp1252 by default on Windows, which can't handle the unicode
# arrows in configdata.py
options['exclude_pep257'].append('configdata.py')
2014-02-10 11:07:21 +01:00
2014-05-15 08:24:10 +02:00
2014-05-15 07:29:12 +02:00
def run(name, target, args=None):
2014-04-17 17:44:27 +02:00
"""Run a checker via distutils with optional args.
2014-01-29 04:07:27 +01:00
2014-04-17 17:44:27 +02:00
Arguments:
name: Name of the checker/binary
2014-05-15 07:29:12 +02:00
target: The package to check
2014-04-17 17:44:27 +02:00
args: Option list of arguments to pass
2014-01-29 04:07:27 +01:00
"""
2014-05-06 19:00:35 +02:00
sys.argv = [name]
2014-05-15 07:29:12 +02:00
status_key = '{}_{}'.format(name, target)
2014-05-06 19:00:35 +02:00
if name != 'pyroma':
2014-05-15 07:29:12 +02:00
args.append(target)
2014-05-15 08:12:44 +02:00
elif name == 'pyroma' and target != 'qutebrowser':
return
2014-01-28 15:25:40 +01:00
if args is not None:
sys.argv += args
2014-05-15 07:29:12 +02:00
print("------ {} ------".format(name))
2014-01-28 15:25:40 +01:00
try:
2014-05-06 19:00:35 +02:00
ep = load_entry_point(name, 'console_scripts', name)
ep()
2014-01-28 15:25:40 +01:00
except SystemExit as e:
2014-05-15 07:29:12 +02:00
status[status_key] = e
except DistributionNotFound:
if args is None:
args = []
try:
2014-05-15 07:29:12 +02:00
status[status_key] = subprocess.call([name] + args)
except FileNotFoundError as e:
print('{}: {}'.format(e.__class__.__name__, e))
2014-05-15 07:29:12 +02:00
status[status_key] = None
2014-01-28 15:25:40 +01:00
except Exception as e:
2014-01-28 15:50:11 +01:00
print('{}: {}'.format(e.__class__.__name__, e))
2014-05-15 07:29:12 +02:00
status[status_key] = None
2014-01-28 15:25:40 +01:00
print()
2014-02-10 11:07:21 +01:00
2014-05-15 07:29:12 +02:00
def check_pep257(target, args=None):
2014-04-17 17:44:27 +02:00
"""Run pep257 checker with args passed."""
2014-05-15 07:29:12 +02:00
sys.argv = ['pep257', target]
2014-02-07 19:44:56 +01:00
if args is not None:
sys.argv += args
2014-05-15 07:29:12 +02:00
print("------ pep257 ------")
2014-02-07 19:44:56 +01:00
try:
2014-05-15 07:29:12 +02:00
status['pep257_' + target] = pep257.main(*pep257.parse_options())
2014-02-07 19:44:56 +01:00
except Exception as e:
print('{}: {}'.format(e.__class__.__name__, e))
2014-05-15 07:29:12 +02:00
status['pep257_' + target] = None
2014-02-07 19:44:56 +01:00
print()
2014-02-10 11:07:21 +01:00
2014-05-06 14:37:47 +02:00
def check_unittest():
2014-05-15 08:24:10 +02:00
"""Run the unittest checker."""
2014-05-15 07:29:12 +02:00
print("==================== unittest ====================")
2014-05-06 14:37:47 +02:00
suite = unittest.TestLoader().discover('.')
result = unittest.TextTestRunner().run(suite)
print()
status['unittest'] = result.wasSuccessful()
2014-05-15 08:24:10 +02:00
2014-05-15 07:29:12 +02:00
def check_line(target):
2014-04-17 17:44:27 +02:00
"""Run _check_file over a filetree."""
2014-05-15 07:29:12 +02:00
print("------ line ------")
2014-01-28 22:44:39 +01:00
ret = []
try:
2014-05-15 08:24:10 +02:00
for (dirpath, _dirnames, filenames) in os.walk(target):
for name in (e for e in filenames if e.endswith('.py')):
2014-01-28 22:44:39 +01:00
fn = os.path.join(dirpath, name)
2014-04-17 17:44:27 +02:00
ret.append(_check_file(fn))
2014-05-15 07:29:12 +02:00
status['line_' + target] = all(ret)
2014-01-28 22:44:39 +01:00
except Exception as e:
print('{}: {}'.format(e.__class__.__name__, e))
2014-05-15 07:29:12 +02:00
status['line_' + target] = None
2014-01-28 22:44:39 +01:00
print()
2014-02-10 11:07:21 +01:00
2014-04-17 17:44:27 +02:00
def _check_file(fn):
"""Check a single file for CRLFs, conflict markers and weird whitespace."""
2014-01-28 22:44:39 +01:00
with open(fn, 'rb') as f:
for line in f:
if b'\r\n' in line:
2014-04-25 16:53:23 +02:00
print("Found CRLF in {}".format(fn))
2014-01-28 22:44:39 +01:00
return False
elif any(line.decode('UTF-8').startswith(c * 7) for c in "<>=|"):
2014-04-25 16:53:23 +02:00
print("Found conflict marker in {}".format(fn))
2014-02-04 22:10:27 +01:00
return False
elif any([line.decode('UTF-8').rstrip('\r\n').endswith(c)
for c in " \t"]):
2014-04-25 16:53:23 +02:00
print("Found whitespace at line ending in {}".format(fn))
2014-02-04 22:10:27 +01:00
return False
elif b' \t' in line or b'\t ' in line:
2014-04-25 16:53:23 +02:00
print("Found tab-space mix in {}".format(fn))
2014-02-04 22:10:27 +01:00
return False
2014-01-28 22:44:39 +01:00
return True
2014-02-10 11:07:21 +01:00
2014-02-07 19:39:55 +01:00
def _get_args(checker):
2014-04-17 17:44:27 +02:00
"""Construct the arguments for a given checker.
Return:
A list of commandline arguments.
"""
2014-05-15 08:24:10 +02:00
# pylint: disable=too-many-branches
2014-02-07 19:39:55 +01:00
args = []
if checker == 'pylint':
try:
args += ['--disable=' + ','.join(options['disable']['pylint'])]
2014-04-16 11:05:58 +02:00
except KeyError:
pass
2014-05-15 08:11:00 +02:00
if options['exclude']:
try:
args += ['--ignore=' + ','.join(options['exclude'])]
except KeyError:
pass
2014-04-16 11:05:58 +02:00
try:
2014-02-07 19:39:55 +01:00
args += options['other']['pylint']
except KeyError:
pass
elif checker == 'flake8':
try:
args += ['--ignore=' + ','.join(options['disable']['flake8'])]
2014-04-16 11:05:58 +02:00
except KeyError:
pass
2014-05-15 08:11:00 +02:00
if options['exclude']:
try:
args += ['--exclude=' + ','.join(options['exclude'])]
except KeyError:
pass
2014-04-16 11:05:58 +02:00
try:
2014-02-07 19:39:55 +01:00
args += options['other']['flake8']
except KeyError:
pass
2014-02-07 19:44:56 +01:00
elif checker == 'pep257':
args = []
try:
args += ['--ignore=' + ','.join(options['disable']['pep257'])]
2014-04-16 11:05:58 +02:00
except KeyError:
pass
try:
2014-05-15 08:24:10 +02:00
args += [r'--match=(?!{}).*\.py'.format('|'.join(
options['exclude'] + options['exclude_pep257']))]
2014-04-16 11:05:58 +02:00
except KeyError:
pass
try:
2014-02-07 19:44:56 +01:00
args += options['other']['pep257']
except KeyError:
pass
2014-04-29 08:34:49 +02:00
elif checker == 'pyroma':
args = ['.']
2014-02-07 19:39:55 +01:00
return args
2014-02-07 10:58:53 +01:00
2014-05-15 07:29:12 +02:00
2014-05-06 14:37:47 +02:00
check_unittest()
2014-05-15 08:24:10 +02:00
for trg in options['targets']:
print("==================== {} ====================".format(trg))
2014-05-15 07:29:12 +02:00
if do_check_257:
2014-05-15 08:24:10 +02:00
check_pep257(trg, _get_args('pep257'))
for chk in ['pylint', 'flake8', 'pyroma']:
2014-05-15 07:29:12 +02:00
# FIXME what the hell is the flake8 exit status?
2014-05-15 08:24:10 +02:00
run(chk, trg, _get_args(chk))
check_line(trg, )
2014-01-28 15:25:40 +01:00
2014-04-25 16:53:23 +02:00
print("Exit status values:")
2014-01-28 15:25:40 +01:00
for (k, v) in status.items():
print(' {} - {}'.format(k, v))
2014-01-30 20:49:08 +01:00
if all(val in [True, 0] for val in status):
2014-01-30 20:49:08 +01:00
sys.exit(0)
else:
sys.exit(1)