Rewrite the tests from using plain 'assert' mixed with some nosetests methods to the standard unittest module layout. Improve the code to use the most canonical assertion methods whenever possible. This has a few major advantages: - the code uses standard methods now, resulting in a reduced number of WTFs whenever someone with basic Python knowledge gets to read it, - completely unnecessary dependency on nosetests is removed since the standard library supplies all that is necessary for the tests to run, - the tests can be run via any test runner, including the one built-in in Python, - the failure output for most of the tests is improved from 'assertion x == y failed' to actually telling the values. Differential Revision: https://reviews.llvm.org/D39763 llvm-svn: 317897
45 lines
1.3 KiB
Python
45 lines
1.3 KiB
Python
from clang.cindex import TokenKind
|
|
|
|
import unittest
|
|
|
|
|
|
class TestTokenKind(unittest.TestCase):
|
|
def test_constructor(self):
|
|
"""Ensure TokenKind constructor works as expected."""
|
|
|
|
t = TokenKind(5, 'foo')
|
|
|
|
self.assertEqual(t.value, 5)
|
|
self.assertEqual(t.name, 'foo')
|
|
|
|
def test_bad_register(self):
|
|
"""Ensure a duplicate value is rejected for registration."""
|
|
|
|
with self.assertRaises(ValueError):
|
|
TokenKind.register(2, 'foo')
|
|
|
|
def test_unknown_value(self):
|
|
"""Ensure trying to fetch an unknown value raises."""
|
|
|
|
with self.assertRaises(ValueError):
|
|
TokenKind.from_value(-1)
|
|
|
|
def test_registration(self):
|
|
"""Ensure that items registered appear as class attributes."""
|
|
self.assertTrue(hasattr(TokenKind, 'LITERAL'))
|
|
literal = TokenKind.LITERAL
|
|
|
|
self.assertIsInstance(literal, TokenKind)
|
|
|
|
def test_from_value(self):
|
|
"""Ensure registered values can be obtained from from_value()."""
|
|
t = TokenKind.from_value(3)
|
|
self.assertIsInstance(t, TokenKind)
|
|
self.assertEqual(t, TokenKind.LITERAL)
|
|
|
|
def test_repr(self):
|
|
"""Ensure repr() works."""
|
|
|
|
r = repr(TokenKind.LITERAL)
|
|
self.assertEqual(r, 'TokenKind.LITERAL')
|