summaryrefslogtreecommitdiff
path: root/tests/lint/unittest_expand_modules.py
blob: a1dd75c8f96556d40aafbbbf52033cde334dcd7b (plain)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# 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


import re
from pathlib import Path

import pytest

from pylint.lint.expand_modules import _basename_in_ignore_list_re, expand_modules


def test__basename_in_ignore_list_re_match():
    patterns = [re.compile(".*enchilada.*"), re.compile("unittest_.*")]
    assert _basename_in_ignore_list_re("unittest_utils.py", patterns)
    assert _basename_in_ignore_list_re("cheese_enchiladas.xml", patterns)


def test__basename_in_ignore_list_re_nomatch():
    patterns = [re.compile(".*enchilada.*"), re.compile("unittest_.*")]
    assert not _basename_in_ignore_list_re("test_utils.py", patterns)
    assert not _basename_in_ignore_list_re("enchilad.py", patterns)


TEST_DIRECTORY = Path(__file__).parent.parent
INIT_PATH = str(TEST_DIRECTORY / "lint/__init__.py")
EXPAND_MODULES = str(TEST_DIRECTORY / "lint/unittest_expand_modules.py")
this_file = {
    "basename": "lint.unittest_expand_modules",
    "basepath": EXPAND_MODULES,
    "isarg": True,
    "name": "lint.unittest_expand_modules",
    "path": EXPAND_MODULES,
}

this_file_from_init = {
    "basename": "lint",
    "basepath": INIT_PATH,
    "isarg": False,
    "name": "lint.unittest_expand_modules",
    "path": EXPAND_MODULES,
}

unittest_lint = {
    "basename": "lint",
    "basepath": INIT_PATH,
    "isarg": False,
    "name": "lint.unittest_lint",
    "path": str(TEST_DIRECTORY / "lint/unittest_lint.py"),
}


init_of_package = {
    "basename": "lint",
    "basepath": INIT_PATH,
    "isarg": True,
    "name": "lint",
    "path": INIT_PATH,
}


@pytest.mark.parametrize(
    "files_or_modules,expected",
    [
        ([__file__], [this_file]),
        (
            [Path(__file__).parent],
            [init_of_package, this_file_from_init, unittest_lint],
        ),
    ],
)
def test_expand_modules(files_or_modules, expected):
    ignore_list, ignore_list_re = [], []
    modules, errors = expand_modules(files_or_modules, ignore_list, ignore_list_re)
    assert modules == expected
    assert not errors