blob: 85f8f0c7604f1048ad480ed247ce87a545edbd96 [file] [log] [blame]
Matthew Treinish9e26ca82016-02-23 11:43:20 -05001# Copyright 2012 OpenStack Foundation
2# All Rights Reserved.
3#
4# Licensed under the Apache License, Version 2.0 (the "License"); you may
5# not use this file except in compliance with the License. You may obtain
6# a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13# License for the specific language governing permissions and limitations
14# under the License.
15
16from oslo_serialization import jsonutils as json
17
18from tempest.lib.api_schema.response.compute.v2_1 import extensions as schema
19from tempest.lib.common import rest_client
20
21
22class ExtensionsClient(rest_client.RestClient):
23
24 def list_extensions(self):
25 url = 'extensions'
26 resp, body = self.get(url)
27 body = json.loads(body)
28 self.validate_response(schema.list_extensions, resp, body)
29 return rest_client.ResponseBody(resp, body)
30
31 def show_extension(self, extension_alias):
32 resp, body = self.get('extensions/%s' % extension_alias)
33 body = json.loads(body)
34 return rest_client.ResponseBody(resp, body)