lkuchlan | 7bba16c | 2016-09-04 12:36:04 +0300 | [diff] [blame] | 1 | # Copyright 2016 Red Hat, Inc. |
| 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 | |
| 16 | from oslo_serialization import jsonutils as json |
| 17 | |
| 18 | from tempest.lib.common import rest_client |
| 19 | |
| 20 | |
| 21 | class CapabilitiesClient(rest_client.RestClient): |
ghanshyam | 49f99e7 | 2017-02-23 15:34:26 +0000 | [diff] [blame] | 22 | api_version = "v2" |
lkuchlan | 7bba16c | 2016-09-04 12:36:04 +0300 | [diff] [blame] | 23 | |
| 24 | def show_backend_capabilities(self, host): |
| 25 | """Shows capabilities for a storage back end. |
| 26 | |
zhufl | 6ea5f8b | 2017-04-05 17:34:08 +0800 | [diff] [blame] | 27 | For a full list of available parameters, please refer to the official |
| 28 | API reference: |
| 29 | https://developer.openstack.org/api-ref/block-storage/v2/index.html#show-back-end-capabilities |
lkuchlan | 7bba16c | 2016-09-04 12:36:04 +0300 | [diff] [blame] | 30 | """ |
| 31 | url = 'capabilities/%s' % host |
| 32 | resp, body = self.get(url) |
| 33 | body = json.loads(body) |
| 34 | self.expected_success(200, resp.status) |
| 35 | return rest_client.ResponseBody(resp, body) |