forked from hardbyte/python-can
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_util.py
49 lines (37 loc) · 1.62 KB
/
test_util.py
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
import unittest
import warnings
from can.util import rename_kwargs
class RenameKwargsTest(unittest.TestCase):
expected_kwargs = dict(a=1, b=2, c=3, d=4)
def _test(self, kwargs, aliases):
# Test that we do get the DeprecationWarning when called with deprecated kwargs
with self.assertWarnsRegex(DeprecationWarning, "is deprecated"):
rename_kwargs("unit_test", kwargs, aliases)
# Test that the aliases contains the deprecated values and
# the obsolete kwargs have been removed
assert kwargs == self.expected_kwargs
# Test that we do not get a DeprecationWarning when we call
# without deprecated kwargs
# Cause all warnings to always be triggered.
warnings.simplefilter("error", DeprecationWarning)
try:
rename_kwargs("unit_test", kwargs, aliases)
finally:
warnings.resetwarnings()
def test_rename(self):
kwargs = dict(old_a=1, old_b=2, c=3, d=4)
aliases = {"old_a": "a", "old_b": "b"}
self._test(kwargs, aliases)
def test_obsolete(self):
kwargs = dict(a=1, b=2, c=3, d=4, z=10)
aliases = {"z": None}
self._test(kwargs, aliases)
def test_rename_and_obsolete(self):
kwargs = dict(old_a=1, old_b=2, c=3, d=4, z=10)
aliases = {"old_a": "a", "old_b": "b", "z": None}
self._test(kwargs, aliases)
def test_with_new_and_alias_present(self):
kwargs = dict(old_a=1, a=1, b=2, c=3, d=4, z=10)
aliases = {"old_a": "a", "old_b": "b", "z": None}
with self.assertRaises(TypeError):
self._test(kwargs, aliases)