multi_inventory_test.py 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. #!/usr/bin/env python2
  2. '''
  3. Unit tests for MultiInventory
  4. '''
  5. import unittest
  6. import multi_inventory
  7. # Removing invalid variable names for tests so that I can
  8. # keep them brief
  9. # pylint: disable=invalid-name
  10. class MultiInventoryTest(unittest.TestCase):
  11. '''
  12. Test class for multiInventory
  13. '''
  14. # def setUp(self):
  15. # '''setup method'''
  16. # pass
  17. def test_merge_simple_1(self):
  18. '''Testing a simple merge of 2 dictionaries'''
  19. a = {"key1" : 1}
  20. b = {"key1" : 2}
  21. result = {}
  22. _ = [multi_inventory.MultiInventory.merge_destructively(result, x) for x in [a, b]]
  23. self.assertEqual(result, {"key1": [1, 2]})
  24. def test_merge_b_empty(self):
  25. '''Testing a merge of an emtpy dictionary'''
  26. a = {"key1" : 1}
  27. b = {}
  28. result = {}
  29. _ = [multi_inventory.MultiInventory.merge_destructively(result, x) for x in [a, b]]
  30. self.assertEqual(result, {"key1": 1})
  31. def test_merge_a_empty(self):
  32. '''Testing a merge of an emtpy dictionary'''
  33. b = {"key1" : 1}
  34. a = {}
  35. result = {}
  36. _ = [multi_inventory.MultiInventory.merge_destructively(result, x) for x in [a, b]]
  37. self.assertEqual(result, {"key1": 1})
  38. def test_merge_hash_array(self):
  39. '''Testing a merge of a dictionary and a dictionary with an array'''
  40. a = {"key1" : {"hasha": 1}}
  41. b = {"key1" : [1, 2]}
  42. result = {}
  43. _ = [multi_inventory.MultiInventory.merge_destructively(result, x) for x in [a, b]]
  44. self.assertEqual(result, {"key1": [{"hasha": 1}, 1, 2]})
  45. def test_merge_array_hash(self):
  46. '''Testing a merge of a dictionary with an array and a dictionary with a hash'''
  47. a = {"key1" : [1, 2]}
  48. b = {"key1" : {"hasha": 1}}
  49. result = {}
  50. _ = [multi_inventory.MultiInventory.merge_destructively(result, x) for x in [a, b]]
  51. self.assertEqual(result, {"key1": [1, 2, {"hasha": 1}]})
  52. def test_merge_keys_1(self):
  53. '''Testing a merge on a dictionary for keys'''
  54. a = {"key1" : [1, 2], "key2" : {"hasha": 2}}
  55. b = {"key2" : {"hashb": 1}}
  56. result = {}
  57. _ = [multi_inventory.MultiInventory.merge_destructively(result, x) for x in [a, b]]
  58. self.assertEqual(result, {"key1": [1, 2], "key2": {"hasha": 2, "hashb": 1}})
  59. def test_merge_recursive_1(self):
  60. '''Testing a recursive merge'''
  61. a = {"a" : {"b": {"c": 1}}}
  62. b = {"a" : {"b": {"c": 2}}}
  63. result = {}
  64. _ = [multi_inventory.MultiInventory.merge_destructively(result, x) for x in [a, b]]
  65. self.assertEqual(result, {"a": {"b": {"c": [1, 2]}}})
  66. def test_merge_recursive_array_item(self):
  67. '''Testing a recursive merge for an array'''
  68. a = {"a" : {"b": {"c": [1]}}}
  69. b = {"a" : {"b": {"c": 2}}}
  70. result = {}
  71. _ = [multi_inventory.MultiInventory.merge_destructively(result, x) for x in [a, b]]
  72. self.assertEqual(result, {"a": {"b": {"c": [1, 2]}}})
  73. def test_merge_recursive_hash_item(self):
  74. '''Testing a recursive merge for a hash'''
  75. a = {"a" : {"b": {"c": {"d": 1}}}}
  76. b = {"a" : {"b": {"c": 2}}}
  77. result = {}
  78. _ = [multi_inventory.MultiInventory.merge_destructively(result, x) for x in [a, b]]
  79. self.assertEqual(result, {"a": {"b": {"c": [{"d": 1}, 2]}}})
  80. def test_merge_recursive_array_hash(self):
  81. '''Testing a recursive merge for an array and a hash'''
  82. a = {"a" : [{"b": {"c": 1}}]}
  83. b = {"a" : {"b": {"c": 1}}}
  84. result = {}
  85. _ = [multi_inventory.MultiInventory.merge_destructively(result, x) for x in [a, b]]
  86. self.assertEqual(result, {"a": [{"b": {"c": 1}}]})
  87. def test_merge_recursive_hash_array(self):
  88. '''Testing a recursive merge for an array and a hash'''
  89. a = {"a" : {"b": {"c": 1}}}
  90. b = {"a" : [{"b": {"c": 1}}]}
  91. result = {}
  92. _ = [multi_inventory.MultiInventory.merge_destructively(result, x) for x in [a, b]]
  93. self.assertEqual(result, {"a": [{"b": {"c": 1}}]})
  94. # def tearDown(self):
  95. # '''TearDown method'''
  96. # pass
  97. if __name__ == "__main__":
  98. unittest.main()