blob: 61c434c65136e0b9e1a7552b66502afdd568dbd7 [file] [log] [blame]
# Copyright 2012 IBM Corp.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from lxml import objectify
from tempest.common.rest_client import RestClientXML
from tempest import config
CONF = config.CONF
NS = "{http://docs.openstack.org/common/api/v1.0}"
class LimitsClientXML(RestClientXML):
def __init__(self, auth_provider):
super(LimitsClientXML, self).__init__(auth_provider)
self.service = CONF.compute.catalog_type
def get_absolute_limits(self):
resp, body = self.get("limits")
body = objectify.fromstring(body)
lim = NS + 'absolute'
ret = {}
for el in body[lim].iterchildren():
attributes = el.attrib
ret[attributes['name']] = attributes['value']
return resp, ret
def get_specific_absolute_limit(self, absolute_limit):
resp, body = self.get("limits")
body = objectify.fromstring(body)
lim = NS + 'absolute'
ret = {}
for el in body[lim].iterchildren():
attributes = el.attrib
ret[attributes['name']] = attributes['value']
if absolute_limit not in ret:
return None
else:
return ret[absolute_limit]