third_party.pylibs.pylint.src/pylint/test/test_func.py
Claudiu Popa 211d81f84f Keep a consistent copyright notice across the board.
This was changed automatically in #894, but apparently
we need to have the copyright notice somewhere.
2016-07-19 17:42:07 +03:00

68 lines
1.7 KiB
Python

# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE).
# http://www.logilab.fr/ -- mailto:contact@logilab.fr
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/PyCQA/pylint/blob/master/COPYING
"""functional/non regression tests for pylint"""
import unittest
import sys
import re
from os import getcwd
from os.path import abspath, dirname, join
from pylint.testutils import (make_tests, LintTestUsingModule, LintTestUsingFile,
LintTestUpdate, cb_test_gen, linter, test_reporter)
PY3K = sys.version_info >= (3, 0)
# Configure paths
INPUT_DIR = join(dirname(abspath(__file__)), 'input')
MSG_DIR = join(dirname(abspath(__file__)), 'messages')
# Classes
quote = "'" if sys.version_info >= (3, 3) else ''
def gen_tests(filter_rgx):
if UPDATE:
callbacks = [cb_test_gen(LintTestUpdate)]
else:
callbacks = [cb_test_gen(LintTestUsingModule)]
tests = make_tests(INPUT_DIR, MSG_DIR, filter_rgx, callbacks)
if UPDATE:
return tests
if filter_rgx:
is_to_run = re.compile(filter_rgx).search
else:
is_to_run = lambda x: 1
assert len(tests) < 196, "Please do not add new test cases here."
return tests
# Create suite
FILTER_RGX = None
UPDATE = False
def suite():
return unittest.TestSuite([unittest.makeSuite(test, suiteClass=unittest.TestSuite)
for test in gen_tests(FILTER_RGX)])
def load_tests(loader, tests, pattern):
return suite()
if __name__=='__main__':
if '-u' in sys.argv:
UPDATE = True
sys.argv.remove('-u')
if len(sys.argv) > 1:
FILTER_RGX = sys.argv[1]
del sys.argv[1]
unittest.main(defaultTest='suite')