1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
import os
import unittest
from pathlib import Path
from prospector.suppression import get_noqa_suppressions
from tests.utils import patch_workdir_argv
class SuppressionTest(unittest.TestCase):
def _get_file_contents(self, name):
path = os.path.join(os.path.dirname(__file__), "testdata", name)
with open(path) as testfile:
return testfile.readlines()
def test_ignore_file(self):
file_contents = self._get_file_contents("test_ignore_file/test.py")
whole_file, _ = get_noqa_suppressions(file_contents)
self.assertTrue(whole_file)
def test_ignore_lines(self):
file_contents = self._get_file_contents("test_ignore_lines/test.py")
_, lines = get_noqa_suppressions(file_contents)
self.assertSetEqual({2, 3, 4}, lines)
def test_ignore_enum_error(self):
file_contents = self._get_file_contents("test_ignore_enum/test.py")
_, lines = get_noqa_suppressions(file_contents)
self.assertSetEqual({5}, lines)
def test_filter_messages(self):
with patch_workdir_argv(
target="setoptconf.source.commandline.sys.argv",
workdir=Path(__file__).parent / "testdata/test_filter_messages",
) as pros:
self.assertEqual(0, pros.summary["message_count"])
def test_filter_messages_negative(self):
with patch_workdir_argv(
target="setoptconf.source.commandline.sys.argv",
workdir=Path(__file__).parent / "testdata/test_filter_messages_negative",
) as pros:
self.assertEqual(5, pros.summary["message_count"])
|