third_party.pylibs.pylint.src/test/unittest_reporters_json.py

55 lines
1.8 KiB
Python
Raw Normal View History

2014-11-04 20:16:20 +00:00
# Copyright (c) 2003-2014 LOGILAB S.A. (Paris, FRANCE).
# This program 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 2 of the License, or (at your option) any later
# version.
#
# This program 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
# this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
import json
import six
import unittest
from pylint.lint import PyLinter
from pylint import checkers
from pylint.reporters.json import JSONReporter
class TestJSONReporter(unittest.TestCase):
def test_simple_json_output(self):
output = six.StringIO()
reporter = JSONReporter()
linter = PyLinter(reporter=reporter)
checkers.initialize(linter)
linter.config.persistent = 0
linter.reporter.set_output(output)
linter.open()
linter.set_current_module('0123')
linter.add_message('line-too-long', line=1, args=(1, 2))
# we call this method because we didn't actually run the checkers
reporter.display_results(None)
asserted_result = [{
"obj": "",
"column": 0,
"module": "0123",
"message": "Line too long (1/2)",
"line": 1,
"type": "convention",
}]
report_result = json.loads(output.getvalue())
self.assertEqual(report_result, asserted_result)
if __name__ == '__main__':
unittest.main()