tempest/tempest/lib/services/identity/v3/service_providers_client.py

94 lines
3.6 KiB
Python

# Copyright 2020 Samsung Electronics Co., Ltd
# 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 urllib import parse as urllib
from oslo_serialization import jsonutils as json
from tempest.lib.common import rest_client
class ServiceProvidersClient(rest_client.RestClient):
def register_service_provider(self, service_provider_id, **kwargs):
"""Register a service provider.
For a full list of available parameters, please refer to the official
API reference:
https://docs.openstack.org/api-ref/identity/v3-ext/index.html#register-a-service-provider
"""
post_body = json.dumps({'service_provider': kwargs})
resp, body = self.put(
'OS-FEDERATION/service_providers/%s' % service_provider_id,
post_body)
self.expected_success(201, resp.status)
body = json.loads(body)
return rest_client.ResponseBody(resp, body)
def list_service_providers(self, **kwargs):
"""List service providers.
For a full list of available parameters, please refer to the official
API reference:
https://docs.openstack.org/api-ref/identity/v3-ext/index.html#list-service-providers
"""
url = 'OS-FEDERATION/service_providers'
if kwargs:
url += '?%s' % urllib.urlencode(kwargs)
resp, body = self.get(url)
self.expected_success(200, resp.status)
body = json.loads(body)
return rest_client.ResponseBody(resp, body)
def get_service_provider(self, service_provider_id):
"""Get a service provider.
For a full list of available parameters, please refer to the official
API reference:
https://docs.openstack.org/api-ref/identity/v3-ext/index.html#get-service-provider
"""
resp, body = self.get(
'OS-FEDERATION/service_providers/%s' % service_provider_id)
self.expected_success(200, resp.status)
body = json.loads(body)
return rest_client.ResponseBody(resp, body)
def delete_service_provider(self, service_provider_id):
"""Delete a service provider.
For a full list of available parameters, please refer to the official
API reference:
https://docs.openstack.org/api-ref/identity/v3-ext/index.html#delete-service-provider
"""
resp, body = self.delete(
'OS-FEDERATION/service_providers/%s' % service_provider_id)
self.expected_success(204, resp.status)
return rest_client.ResponseBody(resp, body)
def update_service_provider(self, service_provider_id, **kwargs):
"""Update a service provider.
For a full list of available parameters, please refer to the official
API reference:
https://docs.openstack.org/api-ref/identity/v3-ext/index.html#update-service-provider
"""
post_body = json.dumps({'service_provider': kwargs})
resp, body = self.patch(
'OS-FEDERATION/service_providers/%s' % service_provider_id,
post_body)
self.expected_success(200, resp.status)
body = json.loads(body)
return rest_client.ResponseBody(resp, body)