-
Notifications
You must be signed in to change notification settings - Fork 8
/
test_unused_arguments.py
503 lines (468 loc) · 13 KB
/
test_unused_arguments.py
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
import ast
import re
import subprocess
import textwrap
from contextlib import nullcontext
from unittest.mock import patch
import pytest
@pytest.mark.parametrize(
"function, expected_names",
[
("def foo(a, b, c): pass", ["a", "b", "c"]),
("def foo(a, b, *, c): pass", ["a", "b", "c"]),
("def foo(a, b, *, c=5): pass", ["a", "b", "c"]),
("def foo(*args): pass", ["args"]),
("def foo(**kwargs): pass", ["kwargs"]),
(
"def foo(a, b, *args, c, d=5, e, **kwargs): pass",
["a", "b", "args", "c", "d", "e", "kwargs"],
),
("async def foo(a, b, c): pass", ["a", "b", "c"]),
("async def foo(a, b, *, c): pass", ["a", "b", "c"]),
("async def foo(a, b, *, c=5): pass", ["a", "b", "c"]),
("async def foo(*args): pass", ["args"]),
("async def foo(**kwargs): pass", ["kwargs"]),
(
"async def foo(a, b, *args, c, d=5, e, **kwargs): pass",
["a", "b", "args", "c", "d", "e", "kwargs"],
),
(
"""
class foo:
def bar(self, cool):
pass
""",
["self", "cool"],
),
("l = lambda g: 5", ["g"]),
],
)
def test_get_argument_names(function, expected_names):
from flake8_unused_arguments import get_arguments
argument_names = [a.arg for a in get_arguments(get_function(function))]
print(argument_names)
print(expected_names)
assert argument_names == expected_names
@pytest.mark.parametrize(
"function, expected_names",
[
("def foo(a, b, c): return a + b", ["c"]),
(
"""
class foo:
def bar(self, cool):
self.thing = cool
""",
[],
),
(
"""
def external(a, b, c):
def internal():
a + b
""",
["c"],
),
("l = lambda g: 5", ["g"]),
],
)
def test_get_unused_arguments(function, expected_names):
from flake8_unused_arguments import get_unused_arguments
argument_names = [a.arg for _, a in get_unused_arguments(get_function(function))]
print(argument_names)
print(expected_names)
assert argument_names == expected_names
@pytest.mark.parametrize(
"function, expected_result",
[
(
"""
@a
@thing.b
@thing.c()
@d()
def foo():
pass
""",
["a", "b", "c", "d"],
),
("lambda g: 5", []),
],
)
def test_get_decorator_names(function, expected_result):
from flake8_unused_arguments import get_decorator_names
function_names = list(get_decorator_names(get_function(function)))
assert function_names == expected_result
@pytest.mark.parametrize(
"function, expected_result",
[
("def foo():\n 'with docstring'\n pass", True),
("def foo():\n 'with docstring'", True),
("def foo():\n 'with docstring'\n ...", True),
("def foo():\n 'with docstring'\n return 5", False),
("def foo():\n 'string' + 'with docstring'\n ...", False),
("def foo():\n f = 'string' + 'with docstring'\n ...", False),
("def foo(): pass", True),
("def foo(): ...", True),
("def foo(): return 5", False),
("def foo(): raise NotImplementedError()", True),
("def foo(): raise NotImplementedError", True),
("def foo(): raise NotImplementedError()", True),
("def foo(): raise NotImplementedError", True),
("def foo(): raise SomethingElse()", False),
("def foo(): raise object.error()", False),
("def foo(): raise object.error", False),
("def foo(): raise value", False),
("def foo(): raise 'cool string'", False),
("def foo(): raise", False),
("lambda: ...", True),
("lambda: 5", False),
(
"""
def foo():
a = 5
return 5
""",
False,
),
(
"""
def foo():
if 5:
return
else:
return
""",
False,
),
],
)
def test_is_stub_function(function, expected_result):
from flake8_unused_arguments import is_stub_function
assert is_stub_function(get_function(function)) == expected_result
@pytest.mark.parametrize(
"function, options, expected_warnings",
[
(
"""
@abstractmethod
def foo(a):
pass
""",
{"ignore_abstract": False},
[(3, 8, "U100 Unused argument 'a'", "unused argument")],
),
(
"""
@abstractmethod
def foo(a):
pass
""",
{"ignore_abstract": True},
[],
),
(
"""
@overload
def foo(a):
pass
""",
{"ignore_overload": False},
[(3, 8, "U100 Unused argument 'a'", "unused argument")],
),
(
"""
@overload
def foo(a):
pass
""",
{"ignore_overload": True},
[],
),
(
"""
@override
def foo(a):
pass
""",
{"ignore_override": False},
[(3, 8, "U100 Unused argument 'a'", "unused argument")],
),
(
"""
@override
def foo(a):
pass
""",
{"ignore_override": True},
[],
),
(
"""
def foo(a):
pass
""",
{"ignore_stubs": False},
[(2, 8, "U100 Unused argument 'a'", "unused argument")],
),
(
"""
def foo(a):
pass
""",
{"ignore_stubs": True},
[],
),
(
"""
def foo(*args):
pass
""",
{"ignore_variadic_names": True},
[],
),
(
"""
def foo(**kwargs):
pass
""",
{"ignore_variadic_names": True},
[],
),
(
"""
def foo(*args):
pass
""",
{"ignore_variadic_names": False},
[(2, 9, "U100 Unused argument 'args'", "unused argument")],
),
(
"""
def foo(**kwargs):
pass
""",
{"ignore_variadic_names": False},
[(2, 10, "U100 Unused argument 'kwargs'", "unused argument")],
),
(
"foo = lambda a: 1\n",
{"ignore_lambdas": True},
[],
),
(
"foo = lambda a: 1\n",
{"ignore_lambdas": False},
[(1, 13, "U100 Unused argument 'a'", "unused argument")],
),
(
"""
def foo(a):
def bar(b):
pass
zed = lambda c: lambda d: 1
""",
{"ignore_nested_functions": False},
[
(2, 8, "U100 Unused argument 'a'", "unused argument"),
(3, 12, "U100 Unused argument 'b'", "unused argument"),
(5, 13, "U100 Unused argument 'c'", "unused argument"),
(5, 23, "U100 Unused argument 'd'", "unused argument"),
],
),
(
"""
def foo(a):
def bar(b):
pass
zed = lambda c: lambda d: 1
""",
{"ignore_nested_functions": True},
[
(2, 8, "U100 Unused argument 'a'", "unused argument"),
(5, 13, "U100 Unused argument 'c'", "unused argument"),
],
),
(
"""
class Foo:
def __new__(cls):
return []
def __enter__(self):
return self
def __exit__(self, exc_tp, exc_v, exc_tb):
return False
def __setattr__(self, item, value):
raise ValueError("read-only")
def __reduce_ex__(self, protocol):
return Foo, ()
""",
{"ignore_dunder_methods": False},
[
(3, 16, "U100 Unused argument 'cls'", "unused argument"),
(7, 23, "U100 Unused argument 'exc_tp'", "unused argument"),
(7, 31, "U100 Unused argument 'exc_v'", "unused argument"),
(7, 38, "U100 Unused argument 'exc_tb'", "unused argument"),
(9, 26, "U100 Unused argument 'item'", "unused argument"),
(9, 32, "U100 Unused argument 'value'", "unused argument"),
(11, 28, "U100 Unused argument 'protocol'", "unused argument"),
],
),
(
"""
class Foo:
def __new__(cls):
return []
def __enter__(self):
return self
def __exit__(self, exc_tp, exc_v, exc_tb):
return False
def __setattr__(self, item, value):
raise ValueError("read-only")
def __reduce_ex__(self, protocol):
return Foo, ()
""",
{"ignore_dunder_methods": True},
[],
),
(
"""
def foo(_a):
pass
""",
{},
[(2, 8, "U101 Unused argument '_a'", "unused argument")],
),
(
"""
def foo(self):
pass
""",
{},
[],
),
(
"""
@classmethod
def foo(cls):
pass
""",
{},
[],
),
(
"""
@classmethod
def foo(cls, bar):
use(cls)
""",
{},
[(3, 13, "U100 Unused argument 'bar'", "unused argument")],
),
(
"""
def cool(a):
def inner(b):
pass
async def async_inner(c):
pass
async def async_cool(d):
def inner(e):
pass
async def async_inner(f):
pass
""",
{},
[
(2, 9, "U100 Unused argument 'a'", "unused argument"),
(3, 14, "U100 Unused argument 'b'", "unused argument"),
(5, 26, "U100 Unused argument 'c'", "unused argument"),
(7, 21, "U100 Unused argument 'd'", "unused argument"),
(8, 14, "U100 Unused argument 'e'", "unused argument"),
(10, 26, "U100 Unused argument 'f'", "unused argument"),
],
),
(
"""
# make sure we detect variables as used when they're referenced in an inner function
def cool(a):
def inner(c):
a()
""",
{},
[(4, 14, "U100 Unused argument 'c'", "unused argument")],
),
],
)
def test_integration(function, options, expected_warnings):
from flake8_unused_arguments import Plugin
with patch.multiple(Plugin, **options) if options else nullcontext():
plugin = Plugin(ast.parse(textwrap.dedent(function)))
warnings = list(plugin.run())
print(function)
print(warnings)
assert warnings == expected_warnings
@pytest.mark.release
def test_check_version() -> None:
from flake8_unused_arguments import Plugin
assert get_most_recent_tag() == Plugin.version
FF_CODE = """
def some_function(a=1):
def some_nested_function(b=1):
return b
return some_nested_function(a)
class SomeClass:
def some_method(a=1):
def some_nested_method(b=1):
return b
return some_nested_method(a)
"""
FF_ALL_FUNCTIONS = [
"some_function",
"some_nested_function",
"some_method",
"some_nested_method",
]
@pytest.mark.parametrize(
"only_top_level, expected",
[
(False, FF_ALL_FUNCTIONS),
(True, [n for n in FF_ALL_FUNCTIONS if "nested" not in n]),
],
)
def test_function_finder(only_top_level, expected):
from flake8_unused_arguments import FunctionFinder
finder = FunctionFinder(only_top_level=only_top_level)
finder.visit(ast.parse(FF_CODE))
names = [node.name for node in finder.functions]
assert names == expected
@pytest.mark.parametrize(
"code, expected_value",
[
("def foo(): pass", False),
("def __foo(): pass", False),
("def foo__(): pass", False),
("def __foo__(): pass", True),
("async def foo(): pass", False),
("async def __foo(): pass", False),
("async def foo__(): pass", False),
("async def __foo__(): pass", True),
("lambda: None", False),
]
)
def test_is_dunder_method(code, expected_value):
from flake8_unused_arguments import is_dunder_method
func = ast.parse(textwrap.dedent(code)).body[0]
if isinstance(func, ast.Expr):
func = func.value
assert is_dunder_method(func) == expected_value
def get_most_recent_tag() -> str:
return (
re.sub("^v", "", subprocess.check_output(["git", "describe", "--tags", "--abbrev=0"], text=True)
.strip())
)
def get_function(text):
from flake8_unused_arguments import FunctionFinder
finder = FunctionFinder()
finder.visit(ast.parse(textwrap.dedent(text)))
return finder.functions[0]