third_party.pylibs.pylint.src/pylint/test/unittest_checkers_utils.py

101 lines
3.9 KiB
Python
Raw Normal View History

2006-04-26 10:48:09 +00:00
# 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.,
2014-02-23 23:02:47 +00:00
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""Tests for the pylint.checkers.utils module."""
2006-04-26 10:48:09 +00:00
import sys
import unittest
import warnings
2006-04-26 10:48:09 +00:00
from astroid import test_utils
2006-04-26 10:48:09 +00:00
from pylint.checkers import utils
from pylint import __pkginfo__
2006-04-26 10:48:09 +00:00
try:
__builtins__.mybuiltin = 2
except AttributeError:
__builtins__['mybuiltin'] = 2
class UtilsTC(unittest.TestCase):
2006-04-26 10:48:09 +00:00
## def test_is_native_builtin(self):
2010-09-28 13:02:35 +00:00
## self.assertEqual(utils.is_native_builtin('min'), True)
## self.assertEqual(utils.is_native_builtin('__path__'), True)
## self.assertEqual(utils.is_native_builtin('__file__'), True)
## self.assertEqual(utils.is_native_builtin('whatever'), False)
## self.assertEqual(utils.is_native_builtin('mybuiltin'), False)
2006-04-26 10:48:09 +00:00
def test_is_builtin(self):
2010-09-28 13:02:35 +00:00
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)
2006-04-26 10:48:09 +00:00
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=1, 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_is_import_error(self):
import_error, not_import_error = test_utils.extract_node("""
try:
pass
except ImportError: #@
pass
try:
pass
except AttributeError: #@
pass
""")
if __pkginfo__.numversion >= (1, 6, 0):
with self.assertRaises(AttributeError):
utils.is_import_error
with warnings.catch_warnings(record=True) as cm:
warnings.simplefilter("always")
self.assertTrue(utils.is_import_error(import_error))
self.assertFalse(utils.is_import_error(not_import_error))
self.assertEqual(len(cm), 2)
self.assertIsInstance(cm[0].message, DeprecationWarning)
2006-04-26 10:48:09 +00:00
if __name__ == '__main__':
unittest.main()
2006-04-26 10:48:09 +00:00