Merge "py3: Make StoragePolicy objects hashable"

This commit is contained in:
Zuul 2019-05-06 20:36:36 +00:00 committed by Gerrit Code Review
commit 631b704e17
2 changed files with 17 additions and 0 deletions

View File

@ -206,6 +206,9 @@ class BaseStoragePolicy(object):
def __int__(self):
return self.idx
def __hash__(self):
return hash(self.idx)
def __eq__(self, other):
return self.idx == int(other)

View File

@ -1085,6 +1085,20 @@ class TestStoragePolicies(unittest.TestCase):
p503 = test_policies[503]
self.assertTrue(501 < p503 < 507)
def test_storage_policies_as_dict_keys(self):
# We have tests that expect to be able to map policies
# to expected values in a dict; check that we can use
# policies as keys.
test_policies = [StoragePolicy(0, 'aay', True),
StoragePolicy(1, 'bee', False),
StoragePolicy(2, 'cee', False)]
policy_to_name_map = {p: p.name for p in test_policies}
self.assertEqual(sorted(policy_to_name_map.keys()), test_policies)
self.assertIs(test_policies[0], next(
p for p in policy_to_name_map.keys() if p.is_default))
for p in test_policies:
self.assertEqual(policy_to_name_map[p], p.name)
def test_get_object_ring(self):
test_policies = [StoragePolicy(0, 'aay', True),
StoragePolicy(1, 'bee', False),