-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_data_utils.py
29 lines (22 loc) · 1.11 KB
/
test_data_utils.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
import unittest
import data_utils
class DictCompareTest(unittest.TestCase):
def test_empty(self):
result = data_utils.dict_compare({}, {})
expected = []
self.assertEqual(result, expected)
def test_non_dicts(self):
"""
Instead of dicts we feed the function integers, strings, etc. This works as expected
even though they are not dictionaries
"""
self.assertEqual(data_utils.dict_compare(1, 1), [])
self.assertEqual(data_utils.dict_compare(1, 2), [('Value difference', '', 1, 2)])
self.assertEqual(data_utils.dict_compare(2, 'bob'), [('Value difference', '', 2, 'bob')])
self.assertEqual(data_utils.dict_compare([2], set([2])), [('Value difference', '', [2], {2})])
def test_complex(self):
result = data_utils.dict_compare({99:{0:{'bob':1}, 1:1, 2:{'tipi':'hallo'}}}, {99:{0:{'bob':2}, 1:1, 2:2}})
expected = [('Value difference', '[99][2]', {'tipi': 'hallo'}, 2), ('Value difference', '[99][0][bob]', 1, 2)]
self.assertEqual(result, expected)
if __name__ == '__main__':
unittest.main()