-
-
Notifications
You must be signed in to change notification settings - Fork 252
Expand file tree
/
Copy pathtest_keys.py
More file actions
74 lines (59 loc) · 2.71 KB
/
test_keys.py
File metadata and controls
74 lines (59 loc) · 2.71 KB
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
try:
import unittest2 as unittest
except ImportError:
import unittest
import bpython.keys as keys
class TestCLIKeys(unittest.TestCase):
def test_keymap_map(self):
"""Verify KeyMap.map being a dictionary with the correct
length."""
self.assertEqual(len(keys.cli_key_dispatch.map), 43)
def test_keymap_setitem(self):
"""Verify keys.KeyMap correctly setting items."""
keys.cli_key_dispatch['simon'] = 'awesome'
self.assertEqual(keys.cli_key_dispatch['simon'], 'awesome')
def test_keymap_delitem(self):
"""Verify keys.KeyMap correctly removing items."""
keys.cli_key_dispatch['simon'] = 'awesome'
del keys.cli_key_dispatch['simon']
if 'simon' in keys.cli_key_dispatch.map:
raise Exception('Key still exists in dictionary')
def test_keymap_getitem(self):
"""Verify keys.KeyMap correctly looking up items."""
self.assertEqual(keys.cli_key_dispatch['C-['], (chr(27), '^['))
self.assertEqual(keys.cli_key_dispatch['F11'], ('KEY_F(11)',))
self.assertEqual(keys.cli_key_dispatch['C-a'], ('\x01', '^A'))
def test_keymap_keyerror(self):
"""Verify keys.KeyMap raising KeyError when getting undefined key"""
def raiser():
keys.cli_key_dispatch['C-asdf']
keys.cli_key_dispatch['C-qwerty']
self.assertRaises(KeyError, raiser)
class TestUrwidKeys(unittest.TestCase):
def test_keymap_map(self):
"""Verify KeyMap.map being a dictionary with the correct
length."""
self.assertEqual(len(keys.urwid_key_dispatch.map), 64)
def test_keymap_setitem(self):
"""Verify keys.KeyMap correctly setting items."""
keys.urwid_key_dispatch['simon'] = 'awesome'
self.assertEqual(keys.urwid_key_dispatch['simon'], 'awesome')
def test_keymap_delitem(self):
"""Verify keys.KeyMap correctly removing items."""
keys.urwid_key_dispatch['simon'] = 'awesome'
del keys.urwid_key_dispatch['simon']
if 'simon' in keys.urwid_key_dispatch.map:
raise Exception('Key still exists in dictionary')
def test_keymap_getitem(self):
"""Verify keys.KeyMap correctly looking up items."""
self.assertEqual(keys.urwid_key_dispatch['F11'], 'f11')
self.assertEqual(keys.urwid_key_dispatch['C-a'], 'ctrl a')
self.assertEqual(keys.urwid_key_dispatch['M-a'], 'meta a')
def test_keymap_keyerror(self):
"""Verify keys.KeyMap raising KeyError when getting undefined key"""
def raiser():
keys.urwid_key_dispatch['C-asdf']
keys.urwid_key_dispatch['C-qwerty']
self.assertRaises(KeyError, raiser)
if __name__ == '__main__':
unittest.main()