/opt/imh-python/lib/python3.9/site-packages/pylint/testutils
NameSizeModeActions
functional/-0755rm
_primer/-0755rm
__pycache__/-0755rm
checker_test_case.py33250644editdlrm
configuration_test.py54160644editdlrm
constants.py11590644editdlrm
decorator.py12620644editdlrm
get_test_info.py21370644editdlrm
global_test_linter.py6950644editdlrm
lint_module_test.py125380644editdlrm
output_line.py39940644editdlrm
pyreverse.py42540644editdlrm
reporter_for_tests.py23210644editdlrm
testing_pylintrc2640644editdlrm
tokenize_str.py4570644editdlrm
unittest_linter.py26920644editdlrm
utils.py31070644editdlrm
_run.py14300644editdlrm
__init__.py13190644editdlrm
Edit: /opt/imh-python/lib/python3.9/site-packages/pylint/testutils/checker_test_case.py (3325B)
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE # Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt from __future__ import annotations import contextlib from collections.abc import Generator, Iterator from typing import Any from astroid import nodes from pylint.testutils.global_test_linter import linter from pylint.testutils.output_line import MessageTest from pylint.testutils.unittest_linter import UnittestLinter from pylint.utils import ASTWalker class CheckerTestCase: """A base testcase class for unit testing individual checker classes.""" # TODO: Figure out way to type this as type[BaseChecker] while also # setting self.checker correctly. CHECKER_CLASS: Any CONFIG: dict[str, Any] = {} def setup_method(self) -> None: self.linter = UnittestLinter() self.checker = self.CHECKER_CLASS(self.linter) for key, value in self.CONFIG.items(): setattr(self.checker.linter.config, key, value) self.checker.open() @contextlib.contextmanager def assertNoMessages(self) -> Iterator[None]: """Assert that no messages are added by the given method.""" with self.assertAddsMessages(): yield @contextlib.contextmanager def assertAddsMessages( self, *messages: MessageTest, ignore_position: bool = False ) -> Generator[None]: """Assert that exactly the given method adds the given messages. The list of messages must exactly match *all* the messages added by the method. Additionally, we check to see whether the args in each message can actually be substituted into the message string. Using the keyword argument `ignore_position`, all checks for position arguments (line, col_offset, ...) will be skipped. This can be used to just test messages for the correct node. """ yield got = self.linter.release_messages() no_msg = "No message." expected = "\n".join(repr(m) for m in messages) or no_msg got_str = "\n".join(repr(m) for m in got) or no_msg msg = ( "Expected messages did not match actual.\n" f"\nExpected:\n{expected}\n\nGot:\n{got_str}\n" ) assert len(messages) == len(got), msg for expected_msg, gotten_msg in zip(messages, got): assert expected_msg.msg_id == gotten_msg.msg_id, msg assert expected_msg.node == gotten_msg.node, msg assert expected_msg.args == gotten_msg.args, msg assert expected_msg.confidence == gotten_msg.confidence, msg if ignore_position: # Do not check for line, col_offset etc... continue assert expected_msg.line == gotten_msg.line, msg assert expected_msg.col_offset == gotten_msg.col_offset, msg assert expected_msg.end_line == gotten_msg.end_line, msg assert expected_msg.end_col_offset == gotten_msg.end_col_offset, msg def walk(self, node: nodes.NodeNG) -> None: """Recursive walk on the given node.""" walker = ASTWalker(linter) walker.add_checker(self.checker) walker.walk(node)