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

47 lines
1.3 KiB
Python
Raw Normal View History

# Copyright (c) 2015-2016 Claudiu Popa <pcmanticore@gmail.com>
# 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
"""Test for the JSON reporter."""
2014-11-04 20:16:20 +00:00
import json
import six
2014-11-04 20:16:20 +00:00
from pylint.lint import PyLinter
from pylint import checkers
from pylint.reporters.json import JSONReporter
2016-12-06 15:42:53 +00:00
def test_simple_json_output():
output = six.StringIO()
2014-11-04 20:16:20 +00:00
2016-12-06 15:42:53 +00:00
reporter = JSONReporter()
linter = PyLinter(reporter=reporter)
checkers.initialize(linter)
2014-11-04 20:16:20 +00:00
2016-12-06 15:42:53 +00:00
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))
2014-11-04 20:16:20 +00:00
2016-12-06 15:42:53 +00:00
# we call this method because we didn't actually run the checkers
reporter.display_messages(None)
2014-11-04 20:16:20 +00:00
2016-12-06 15:42:53 +00:00
expected_result = [[
("column", 0),
("line", 1),
("message", "Line too long (1/2)"),
("module", "0123"),
("obj", ""),
("path", "0123"),
("symbol", "line-too-long"),
("type", "convention"),
]]
report_result = json.loads(output.getvalue())
report_result = [sorted(report_result[0].items(),
key=lambda item: item[0])]
assert report_result == expected_result