Enable test_absolute_limits.test_absLimits_get
Removed the elements.
Because elements for the volume has been migrated to Cinder from Nova.
Fixes bug 1119091
Change-Id: I543ce1439bf08ad3286789c4831822329f136704
diff --git a/tempest/tests/compute/limits/test_absolute_limits.py b/tempest/tests/compute/limits/test_absolute_limits.py
index d520b92..4b17af9 100644
--- a/tempest/tests/compute/limits/test_absolute_limits.py
+++ b/tempest/tests/compute/limits/test_absolute_limits.py
@@ -26,22 +26,18 @@
def setUpClass(cls):
cls.client = cls.limits_client
- @testtools.skip("Skipped until the Bug #1025294 is resolved")
def test_absLimits_get(self):
# To check if all limits are present in the response
resp, absolute_limits = self.client.get_absolute_limits()
expected_elements = ['maxImageMeta', 'maxPersonality',
'maxPersonalitySize',
- 'maxPersonalityFilePathSize',
'maxServerMeta', 'maxTotalCores',
'maxTotalFloatingIps', 'maxSecurityGroups',
'maxSecurityGroupRules', 'maxTotalInstances',
'maxTotalKeypairs', 'maxTotalRAMSize',
- 'maxTotalVolumeGigabytes', 'maxTotalVolumes',
'totalCoresUsed', 'totalFloatingIpsUsed',
'totalSecurityGroupsUsed', 'totalInstancesUsed',
- 'totalKeyPairsUsed', 'totalRAMUsed',
- 'totalVolumeGigabytesUsed', 'totalVolumesUsed']
+ 'totalRAMUsed']
# check whether all expected elements exist
missing_elements =\
[ele for ele in expected_elements if ele not in absolute_limits]