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
77
|
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/PyCQA/pylint/blob/master/LICENSE
# pylint: disable=redefined-outer-name
import pytest
from pylint.checkers import BaseChecker
from pylint.message import MessageDefinitionStore, MessageIdStore
@pytest.fixture
def msgid():
return "W1234"
@pytest.fixture
def symbol():
return "msg-symbol"
@pytest.fixture
def empty_store():
return MessageDefinitionStore()
@pytest.fixture
def store():
store_ = MessageDefinitionStore()
class Checker(BaseChecker):
name = "achecker"
msgs = {
"W1234": (
"message",
"msg-symbol",
"msg description.",
{"old_names": [("W0001", "old-symbol")]},
),
"E1234": (
"Duplicate keyword argument %r in %s call",
"duplicate-keyword-arg",
"Used when a function call passes the same keyword argument multiple times.",
{"maxversion": (2, 6)},
),
}
store_.register_messages_from_checker(Checker())
return store_
@pytest.fixture
def message_definitions(store):
return store.messages
@pytest.fixture
def msgids():
return {
"W1234": "warning-symbol",
"W1235": "warning-symbol-two",
"C1234": "convention-symbol",
"E1234": "error-symbol",
}
@pytest.fixture
def empty_msgid_store():
return MessageIdStore()
@pytest.fixture
def msgid_store(msgids):
msgid_store = MessageIdStore()
for msgid, symbol in msgids.items():
msgid_store.add_msgid_and_symbol(msgid, symbol)
return msgid_store
|