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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
|
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE
# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt
from __future__ import annotations
import unittest
import astroid
from astroid import nodes
try:
import attr # type: ignore[import] # pylint: disable=unused-import
HAS_ATTR = True
except ImportError:
HAS_ATTR = False
@unittest.skipUnless(HAS_ATTR, "These tests require the attr library")
class AttrsTest(unittest.TestCase):
def test_attr_transform(self) -> None:
module = astroid.parse(
"""
import attr
from attr import attrs, attrib, field
@attr.s
class Foo:
d = attr.ib(attr.Factory(dict))
f = Foo()
f.d['answer'] = 42
@attr.s(slots=True)
class Bar:
d = attr.ib(attr.Factory(dict))
g = Bar()
g.d['answer'] = 42
@attrs
class Bah:
d = attrib(attr.Factory(dict))
h = Bah()
h.d['answer'] = 42
@attr.attrs
class Bai:
d = attr.attrib(attr.Factory(dict))
i = Bai()
i.d['answer'] = 42
@attr.define
class Spam:
d = field(default=attr.Factory(dict))
j = Spam(d=1)
j.d['answer'] = 42
@attr.mutable
class Eggs:
d = attr.field(default=attr.Factory(dict))
k = Eggs(d=1)
k.d['answer'] = 42
@attr.frozen
class Eggs:
d = attr.field(default=attr.Factory(dict))
l = Eggs(d=1)
l.d['answer'] = 42
@attr.attrs(auto_attribs=True)
class Eggs:
d: int = attr.Factory(lambda: 3)
m = Eggs(d=1)
"""
)
for name in ("f", "g", "h", "i", "j", "k", "l", "m"):
should_be_unknown = next(module.getattr(name)[0].infer()).getattr("d")[0]
self.assertIsInstance(should_be_unknown, astroid.Unknown)
def test_attrs_transform(self) -> None:
"""Test brain for decorators of the 'attrs' package.
Package added support for 'attrs' a long side 'attr' in v21.3.0.
See: https://github.com/python-attrs/attrs/releases/tag/21.3.0
"""
module = astroid.parse(
"""
import attrs
from attrs import field, mutable, frozen, define
from attrs import mutable as my_mutable
@attrs.define
class Foo:
d = attrs.field(attrs.Factory(dict))
f = Foo()
f.d['answer'] = 42
@attrs.define(slots=True)
class Bar:
d = field(attrs.Factory(dict))
g = Bar()
g.d['answer'] = 42
@attrs.mutable
class Bah:
d = field(attrs.Factory(dict))
h = Bah()
h.d['answer'] = 42
@attrs.frozen
class Bai:
d = attrs.field(attrs.Factory(dict))
i = Bai()
i.d['answer'] = 42
@attrs.define
class Spam:
d = field(default=attrs.Factory(dict))
j = Spam(d=1)
j.d['answer'] = 42
@attrs.mutable
class Eggs:
d = attrs.field(default=attrs.Factory(dict))
k = Eggs(d=1)
k.d['answer'] = 42
@attrs.frozen
class Eggs:
d = attrs.field(default=attrs.Factory(dict))
l = Eggs(d=1)
l.d['answer'] = 42
@frozen
class Legs:
d = attrs.field(default=attrs.Factory(dict))
m = Legs(d=1)
m.d['answer'] = 42
@define
class FooBar:
d = attrs.field(default=attrs.Factory(dict))
n = FooBar(d=1)
n.d['answer'] = 42
@mutable
class BarFoo:
d = attrs.field(default=attrs.Factory(dict))
o = BarFoo(d=1)
o.d['answer'] = 42
@my_mutable
class FooFoo:
d = attrs.field(default=attrs.Factory(dict))
p = FooFoo(d=1)
p.d['answer'] = 42
"""
)
for name in ("f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p"):
should_be_unknown = next(module.getattr(name)[0].infer()).getattr("d")[0]
self.assertIsInstance(should_be_unknown, astroid.Unknown)
def test_special_attributes(self) -> None:
"""Make sure special attrs attributes exist"""
code = """
import attr
@attr.s
class Foo:
pass
Foo()
"""
foo_inst = next(astroid.extract_node(code).infer())
[attr_node] = foo_inst.getattr("__attrs_attrs__")
# Prevents https://github.com/pylint-dev/pylint/issues/1884
assert isinstance(attr_node, nodes.Unknown)
def test_dont_consider_assignments_but_without_attrs(self) -> None:
code = """
import attr
class Cls: pass
@attr.s
class Foo:
temp = Cls()
temp.prop = 5
bar_thing = attr.ib(default=temp)
Foo()
"""
next(astroid.extract_node(code).infer())
def test_attrs_with_annotation(self) -> None:
code = """
import attr
@attr.s
class Foo:
bar: int = attr.ib(default=5)
Foo()
"""
should_be_unknown = next(astroid.extract_node(code).infer()).getattr("bar")[0]
self.assertIsInstance(should_be_unknown, astroid.Unknown)
|