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
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
|
# -*- encoding=utf-8 -*-
# Copyright (c) 2017-2018 hippo91 <guillaume.peillex@gmail.com>
# Copyright (c) 2017 Claudiu Popa <pcmanticore@gmail.com>
# Copyright (c) 2018 Bryce Guinta <bryce.paul.guinta@gmail.com>
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER
import unittest
import contextlib
try:
import numpy # pylint: disable=unused-import
HAS_NUMPY = True
except ImportError:
HAS_NUMPY = False
from astroid import builder
from astroid import nodes
from astroid import node_classes
class SubTestWrapper(unittest.TestCase):
"""
A class for supporting all unittest version wether or not subTest is available
"""
def subTest(self, msg=None, **params):
try:
# For python versions above 3.5 this should be ok
return super(SubTestWrapper, self).subTest(msg, **params)
except AttributeError:
# For python versions below 3.5
return subTestMock(msg)
@contextlib.contextmanager
def subTestMock(msg=None):
"""
A mock for subTest which do nothing
"""
yield msg
@unittest.skipUnless(HAS_NUMPY, "This test requires the numpy library.")
class NumpyBrainCoreUmathTest(SubTestWrapper):
"""
Test of all members of numpy.core.umath module
"""
no_arg_ufunc = ("geterrobj",)
one_arg_ufunc_spec = ("seterrobj",)
one_arg_ufunc = (
"arccos",
"arccosh",
"arcsin",
"arcsinh",
"arctan",
"arctanh",
"cbrt",
"conj",
"conjugate",
"cosh",
"deg2rad",
"degrees",
"exp2",
"expm1",
"fabs",
"frexp",
"isfinite",
"isinf",
"log",
"log1p",
"log2",
"logical_not",
"modf",
"negative",
"rad2deg",
"radians",
"reciprocal",
"rint",
"sign",
"signbit",
"spacing",
"square",
"tan",
"tanh",
"trunc",
)
two_args_ufunc = (
"bitwise_and",
"bitwise_or",
"bitwise_xor",
"copysign",
"divide",
"equal",
"float_power",
"floor_divide",
"fmax",
"fmin",
"fmod",
"greater",
"hypot",
"ldexp",
"left_shift",
"less",
"logaddexp",
"logaddexp2",
"logical_and",
"logical_or",
"logical_xor",
"maximum",
"minimum",
"nextafter",
"not_equal",
"power",
"remainder",
"right_shift",
"subtract",
"true_divide",
)
all_ufunc = no_arg_ufunc + one_arg_ufunc_spec + one_arg_ufunc + two_args_ufunc
constants = ("e", "euler_gamma")
def _inferred_numpy_attribute(self, func_name):
node = builder.extract_node(
"""
import numpy.core.umath as tested_module
func = tested_module.{:s}
func""".format(
func_name
)
)
return next(node.infer())
def test_numpy_core_umath_constants(self):
"""
Test that constants have Const type.
"""
for const in self.constants:
with self.subTest(const=const):
inferred = self._inferred_numpy_attribute(const)
self.assertIsInstance(inferred, nodes.Const)
def test_numpy_core_umath_constants_values(self):
"""
Test the values of the constants.
"""
exact_values = {"e": 2.718281828459045, "euler_gamma": 0.5772156649015329}
for const in self.constants:
with self.subTest(const=const):
inferred = self._inferred_numpy_attribute(const)
self.assertEqual(inferred.value, exact_values[const])
def test_numpy_core_umath_functions(self):
"""
Test that functions have FunctionDef type.
"""
for func in self.all_ufunc:
with self.subTest(func=func):
inferred = self._inferred_numpy_attribute(func)
self.assertIsInstance(inferred, nodes.FunctionDef)
def test_numpy_core_umath_functions_no_arg(self):
"""
Test that functions with no arguments have really no arguments.
"""
for func in self.no_arg_ufunc:
with self.subTest(func=func):
inferred = self._inferred_numpy_attribute(func)
self.assertFalse(inferred.argnames())
def test_numpy_core_umath_functions_one_arg_spec(self):
"""
Test the arguments names of functions.
"""
exact_arg_names = ["errobj"]
for func in self.one_arg_ufunc_spec:
with self.subTest(func=func):
inferred = self._inferred_numpy_attribute(func)
self.assertEqual(inferred.argnames(), exact_arg_names)
def test_numpy_core_umath_functions_one_arg(self):
"""
Test the arguments names of functions.
"""
exact_arg_names = ["x", "out", "where", "casting", "order", "dtype", "subok"]
for func in self.one_arg_ufunc:
with self.subTest(func=func):
inferred = self._inferred_numpy_attribute(func)
self.assertEqual(inferred.argnames(), exact_arg_names)
def test_numpy_core_umath_functions_two_args(self):
"""
Test the arguments names of functions.
"""
exact_arg_names = [
"x1",
"x2",
"out",
"where",
"casting",
"order",
"dtype",
"subok",
]
for func in self.two_args_ufunc:
with self.subTest(func=func):
inferred = self._inferred_numpy_attribute(func)
self.assertEqual(inferred.argnames(), exact_arg_names)
def test_numpy_core_umath_functions_kwargs_default_values(self):
"""
Test the default values for keyword arguments.
"""
exact_kwargs_default_values = [None, True, "same_kind", "K", None, True]
for func in self.one_arg_ufunc + self.two_args_ufunc:
with self.subTest(func=func):
inferred = self._inferred_numpy_attribute(func)
default_args_values = [
default.value for default in inferred.args.defaults
]
self.assertEqual(default_args_values, exact_kwargs_default_values)
@unittest.skipUnless(HAS_NUMPY, "This test requires the numpy library.")
class NumpyBrainRandomMtrandTest(SubTestWrapper):
"""
Test of all the functions of numpy.random.mtrand module.
"""
# Map between functions names and arguments names and default values
all_mtrand = {
"beta": (["a", "b", "size"], [None]),
"binomial": (["n", "p", "size"], [None]),
"bytes": (["length"], []),
"chisquare": (["df", "size"], [None]),
"choice": (["a", "size", "replace", "p"], [None, True, None]),
"dirichlet": (["alpha", "size"], [None]),
"exponential": (["scale", "size"], [1.0, None]),
"f": (["dfnum", "dfden", "size"], [None]),
"gamma": (["shape", "scale", "size"], [1.0, None]),
"geometric": (["p", "size"], [None]),
"get_state": ([], []),
"gumbel": (["loc", "scale", "size"], [0.0, 1.0, None]),
"hypergeometric": (["ngood", "nbad", "nsample", "size"], [None]),
"laplace": (["loc", "scale", "size"], [0.0, 1.0, None]),
"logistic": (["loc", "scale", "size"], [0.0, 1.0, None]),
"lognormal": (["mean", "sigma", "size"], [0.0, 1.0, None]),
"logseries": (["p", "size"], [None]),
"multinomial": (["n", "pvals", "size"], [None]),
"multivariate_normal": (["mean", "cov", "size"], [None]),
"negative_binomial": (["n", "p", "size"], [None]),
"noncentral_chisquare": (["df", "nonc", "size"], [None]),
"noncentral_f": (["dfnum", "dfden", "nonc", "size"], [None]),
"normal": (["loc", "scale", "size"], [0.0, 1.0, None]),
"pareto": (["a", "size"], [None]),
"permutation": (["x"], []),
"poisson": (["lam", "size"], [1.0, None]),
"power": (["a", "size"], [None]),
"rand": (["args"], []),
"randint": (["low", "high", "size", "dtype"], [None, None, "l"]),
"randn": (["args"], []),
"random_integers": (["low", "high", "size"], [None, None]),
"random_sample": (["size"], [None]),
"rayleigh": (["scale", "size"], [1.0, None]),
"seed": (["seed"], [None]),
"set_state": (["state"], []),
"shuffle": (["x"], []),
"standard_cauchy": (["size"], [None]),
"standard_exponential": (["size"], [None]),
"standard_gamma": (["shape", "size"], [None]),
"standard_normal": (["size"], [None]),
"standard_t": (["df", "size"], [None]),
"triangular": (["left", "mode", "right", "size"], [None]),
"uniform": (["low", "high", "size"], [0.0, 1.0, None]),
"vonmises": (["mu", "kappa", "size"], [None]),
"wald": (["mean", "scale", "size"], [None]),
"weibull": (["a", "size"], [None]),
"zipf": (["a", "size"], [None]),
}
def _inferred_numpy_attribute(self, func_name):
node = builder.extract_node(
"""
import numpy.random.mtrand as tested_module
func = tested_module.{:s}
func""".format(
func_name
)
)
return next(node.infer())
def test_numpy_random_mtrand_functions(self):
"""
Test that all functions have FunctionDef type.
"""
for func in self.all_mtrand:
with self.subTest(func=func):
inferred = self._inferred_numpy_attribute(func)
self.assertIsInstance(inferred, nodes.FunctionDef)
def test_numpy_random_mtrand_functions_signature(self):
"""
Test the arguments names and default values.
"""
for (
func,
(exact_arg_names, exact_kwargs_default_values),
) in self.all_mtrand.items():
with self.subTest(func=func):
inferred = self._inferred_numpy_attribute(func)
self.assertEqual(inferred.argnames(), exact_arg_names)
default_args_values = [
default.value for default in inferred.args.defaults
]
self.assertEqual(default_args_values, exact_kwargs_default_values)
@unittest.skipUnless(HAS_NUMPY, "This test requires the numpy library.")
class NumpyBrainCoreNumericTypesTest(SubTestWrapper):
"""
Test of all the missing types defined in numerictypes module.
"""
all_types = [
"uint16",
"uint32",
"uint64",
"float16",
"float32",
"float64",
"float96",
"complex64",
"complex128",
"complex192",
"timedelta64",
"datetime64",
"unicode_",
"str_",
"bool_",
"bool8",
"byte",
"int8",
"bytes0",
"bytes_",
"cdouble",
"cfloat",
"character",
"clongdouble",
"clongfloat",
"complexfloating",
"csingle",
"double",
"flexible",
"floating",
"half",
"inexact",
"int0",
"longcomplex",
"longdouble",
"longfloat",
"short",
"signedinteger",
"single",
"singlecomplex",
"str0",
"ubyte",
"uint",
"uint0",
"uintc",
"uintp",
"ulonglong",
"unsignedinteger",
"ushort",
"void0",
]
def _inferred_numpy_attribute(self, attrib):
node = builder.extract_node(
"""
import numpy.core.numerictypes as tested_module
missing_type = tested_module.{:s}""".format(
attrib
)
)
return next(node.value.infer())
def test_numpy_core_types(self):
"""
Test that all defined types have ClassDef type.
"""
for typ in self.all_types:
with self.subTest(typ=typ):
inferred = self._inferred_numpy_attribute(typ)
self.assertIsInstance(inferred, nodes.ClassDef)
def test_generic_types_have_methods(self):
"""
Test that all generic derived types have specified methods
"""
generic_methods = [
"all",
"any",
"argmax",
"argmin",
"argsort",
"astype",
"base",
"byteswap",
"choose",
"clip",
"compress",
"conj",
"conjugate",
"copy",
"cumprod",
"cumsum",
"data",
"diagonal",
"dtype",
"dump",
"dumps",
"fill",
"flags",
"flat",
"flatten",
"getfield",
"imag",
"item",
"itemset",
"itemsize",
"max",
"mean",
"min",
"nbytes",
"ndim",
"newbyteorder",
"nonzero",
"prod",
"ptp",
"put",
"ravel",
"real",
"repeat",
"reshape",
"resize",
"round",
"searchsorted",
"setfield",
"setflags",
"shape",
"size",
"sort",
"squeeze",
"std",
"strides",
"sum",
"swapaxes",
"take",
"tobytes",
"tofile",
"tolist",
"tostring",
"trace",
"transpose",
"var",
"view",
]
for type_ in (
"bool_",
"bytes_",
"character",
"complex128",
"complex192",
"complex64",
"complexfloating",
"datetime64",
"flexible",
"float16",
"float32",
"float64",
"float96",
"floating",
"generic",
"inexact",
"int16",
"int32",
"int32",
"int64",
"int8",
"integer",
"number",
"signedinteger",
"str_",
"timedelta64",
"uint16",
"uint32",
"uint32",
"uint64",
"uint8",
"unsignedinteger",
"void",
):
with self.subTest(typ=type_):
inferred = self._inferred_numpy_attribute(type_)
for meth in generic_methods:
with self.subTest(meth=meth):
self.assertTrue(meth in {m.name for m in inferred.methods()})
def test_generic_types_have_attributes(self):
"""
Test that all generic derived types have specified attributes
"""
generic_attr = [
"base",
"data",
"dtype",
"flags",
"flat",
"imag",
"itemsize",
"nbytes",
"ndim",
"real",
"size",
"strides",
]
for type_ in (
"bool_",
"bytes_",
"character",
"complex128",
"complex192",
"complex64",
"complexfloating",
"datetime64",
"flexible",
"float16",
"float32",
"float64",
"float96",
"floating",
"generic",
"inexact",
"int16",
"int32",
"int32",
"int64",
"int8",
"integer",
"number",
"signedinteger",
"str_",
"timedelta64",
"uint16",
"uint32",
"uint32",
"uint64",
"uint8",
"unsignedinteger",
"void",
):
with self.subTest(typ=type_):
inferred = self._inferred_numpy_attribute(type_)
for attr in generic_attr:
with self.subTest(attr=attr):
self.assertNotEqual(len(inferred.getattr(attr)), 0)
def test_number_types_have_unary_operators(self):
"""
Test that number types have unary operators
"""
unary_ops = ("__neg__",)
for type_ in (
"float64",
"float96",
"floating",
"int16",
"int32",
"int32",
"int64",
"int8",
"integer",
"number",
"signedinteger",
"uint16",
"uint32",
"uint32",
"uint64",
"uint8",
"unsignedinteger",
):
with self.subTest(typ=type_):
inferred = self._inferred_numpy_attribute(type_)
for attr in unary_ops:
with self.subTest(attr=attr):
self.assertNotEqual(len(inferred.getattr(attr)), 0)
def test_array_types_have_unary_operators(self):
"""
Test that array types have unary operators
"""
unary_ops = ("__neg__", "__inv__", "__invert__")
for type_ in ("ndarray",):
with self.subTest(typ=type_):
inferred = self._inferred_numpy_attribute(type_)
for attr in unary_ops:
with self.subTest(attr=attr):
self.assertNotEqual(len(inferred.getattr(attr)), 0)
@unittest.skipUnless(HAS_NUMPY, "This test requires the numpy library.")
class NumpyBrainFunctionReturningArrayTest(SubTestWrapper):
"""
Test that calls to numpy functions returning arrays are correctly inferred
"""
def _inferred_numpy_func_call(self, func_name, *func_args):
node = builder.extract_node(
"""
import numpy as np
func = np.{:s}
func({:s})
""".format(
func_name, ",".join(func_args)
)
)
return node.infer()
def test_numpy_function_calls_not_inferred_as_list(self):
"""
Test that some calls to numpy functions are not inferred as list nor tuple
"""
for func_ in (("array", "[1, 2]"),):
with self.subTest(typ=func_):
for inferred in self._inferred_numpy_func_call(*func_):
self.assertFalse(isinstance(inferred, node_classes.List))
def test_numpy_function_calls_not_inferred_as_tuple(self):
"""
Test that some calls to numpy functions are not inferred as list nor tuple
"""
for func_ in (("array", "(1, 2)"), ("linspace", "1, 100")):
with self.subTest(typ=func_):
for inferred in self._inferred_numpy_func_call(*func_):
self.assertFalse(isinstance(inferred, node_classes.Tuple))
if __name__ == "__main__":
unittest.main()
|