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
|
# Copyright (c) 2003-2005 LOGILAB S.A. (Paris, FRANCE).
# http://www.logilab.fr/ -- mailto:contact@logilab.fr
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""Tests for the pylint.checkers.utils module."""
import unittest
import warnings
from astroid import test_utils
from pylint.checkers import utils
from pylint import __pkginfo__
class UtilsTC(unittest.TestCase):
def test_is_builtin(self):
self.assertEqual(utils.is_builtin('min'), True)
self.assertEqual(utils.is_builtin('__builtins__'), True)
self.assertEqual(utils.is_builtin('__path__'), False)
self.assertEqual(utils.is_builtin('__file__'), False)
self.assertEqual(utils.is_builtin('whatever'), False)
self.assertEqual(utils.is_builtin('mybuiltin'), False)
def testGetArgumentFromCall(self):
node = test_utils.extract_node('foo(bar=3)')
self.assertIsNotNone(utils.get_argument_from_call(node, keyword='bar'))
with self.assertRaises(utils.NoSuchArgumentError):
node = test_utils.extract_node('foo(3)')
utils.get_argument_from_call(node, keyword='bar')
with self.assertRaises(utils.NoSuchArgumentError):
node = test_utils.extract_node('foo(one=a, two=b, three=c)')
utils.get_argument_from_call(node, position=1)
node = test_utils.extract_node('foo(a, b, c)')
self.assertIsNotNone(utils.get_argument_from_call(node, position=1))
node = test_utils.extract_node('foo(a, not_this_one=1, this_one=2)')
arg = utils.get_argument_from_call(node, position=2, keyword='this_one')
self.assertEqual(2, arg.value)
node = test_utils.extract_node('foo(a)')
with self.assertRaises(utils.NoSuchArgumentError):
utils.get_argument_from_call(node, position=1)
with self.assertRaises(ValueError):
utils.get_argument_from_call(node, None, None)
name = utils.get_argument_from_call(node, position=0)
self.assertEqual(name.name, 'a')
def test_error_of_type(self):
nodes = test_utils.extract_node("""
try: pass
except AttributeError: #@
pass
try: pass
except Exception: #@
pass
except: #@
pass
""")
self.assertTrue(utils.error_of_type(nodes[0], AttributeError))
self.assertTrue(utils.error_of_type(nodes[0], (AttributeError, )))
self.assertFalse(utils.error_of_type(nodes[0], Exception))
self.assertTrue(utils.error_of_type(nodes[1], Exception))
self.assertFalse(utils.error_of_type(nodes[2], ImportError))
def test_node_ignores_exception(self):
nodes = test_utils.extract_node("""
try:
1/0 #@
except ZeroDivisionError:
pass
try:
1/0 #@
except Exception:
pass
try:
2/0 #@
except:
pass
try:
1/0 #@
except ValueError:
pass
""")
self.assertTrue(utils.node_ignores_exception(nodes[0], ZeroDivisionError))
self.assertFalse(utils.node_ignores_exception(nodes[1], ZeroDivisionError))
self.assertFalse(utils.node_ignores_exception(nodes[2], ZeroDivisionError))
self.assertFalse(utils.node_ignores_exception(nodes[3], ZeroDivisionError))
if __name__ == '__main__':
unittest.main()
|