Пример #1
0
    def disable_test_check(self):
        """Test check() method."""
        errors = []

        def _mock_handle_style_error(line_number, category, confidence,
                                     message):
            error = (line_number, category, confidence, message)
            errors.append(error)

        current_dir = os.path.dirname(__file__)
        file_path = os.path.join(current_dir, "python_unittest_input.py")

        checker = PythonChecker(file_path, _mock_handle_style_error)
        checker.check()

        self.assertEqual([
            (2, 'pep8/W291', 5, 'trailing whitespace'),
            (3, 'pep8/E261', 5, 'at least two spaces before inline comment'),
            (3, 'pep8/E262', 5, "inline comment should start with '# '"),
            (2, 'pylint/C0303(trailing-whitespace)', 5,
             '[] Trailing whitespace'),
            (2, 'pylint/E0602(undefined-variable)', 5,
             u"[] Undefined variable 'error'"),
            (3, 'pylint/W0611(unused-import)', 5, '[] Unused import math'),
        ], errors)
Пример #2
0
    def _create_checker(self, file_type, file_path, handle_style_error,
                        min_confidence):
        """Instantiate and return a style checker based on file type."""
        if file_type == FileType.NONE:
            checker = None
        elif file_type == FileType.CPP:
            file_extension = self._file_extension(file_path)
            checker = CppChecker(file_path, file_extension,
                                 handle_style_error, min_confidence)
        elif file_type == FileType.JSON:
            checker = JSONChecker(file_path, handle_style_error)
        elif file_type == FileType.PYTHON:
            checker = PythonChecker(file_path, handle_style_error)
        elif file_type == FileType.XML:
            checker = XMLChecker(file_path, handle_style_error)
        elif file_type == FileType.XCODEPROJ:
            checker = XcodeProjectFileChecker(file_path, handle_style_error)
        elif file_type == FileType.PNG:
            checker = PNGChecker(file_path, handle_style_error)
        elif file_type == FileType.TEXT:
            basename = os.path.basename(file_path)
            if basename == 'TestExpectations':
                checker = TestExpectationsChecker(file_path, handle_style_error)
            else:
                checker = TextChecker(file_path, handle_style_error)
        else:
            raise ValueError('Invalid file type "%(file_type)s": the only valid file types '
                             'are %(NONE)s, %(CPP)s, and %(TEXT)s.'
                             % {'file_type': file_type,
                                'NONE': FileType.NONE,
                                'CPP': FileType.CPP,
                                'TEXT': FileType.TEXT})

        return checker
Пример #3
0
    def test_init(self):
        """Test __init__() method."""
        def _mock_handle_style_error(self):
            pass

        checker = PythonChecker("foo.txt", _mock_handle_style_error)
        self.assertEqual(checker._file_path, "foo.txt")
        self.assertEqual(checker._handle_style_error, _mock_handle_style_error)
Пример #4
0
# copyright notice, this list of conditions and the following disclaimer
# in the documentation and/or other materials provided with the
# distribution.
#     * Neither the name of Google Inc. nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

import sys

from blinkpy.style.checkers.python import PythonChecker

if len(sys.argv) <= 1:
    sys.stderr.write('Usage: lint_blinkpy.py path [path ...]\n')
    sys.exit(1)

for path in sys.argv[1:]:
    checker = PythonChecker(path, lambda *args: None)
    sys.stdout.write(checker.run_pylint(path))