![Lin Yang](/assets/img/avatar_default.png)
Previously several places in murano tempest test use unstable tempest api. In fact, it should use api from tempest.lib.* [1]. So fixed them to make them more robust and resilient to tempest changes. The unstable api removed here include: * tempest.clients * tempest.test [1] http://docs.openstack.org/developer/tempest/plugin.html#stable-tempest-apis-plugins-may-use Change-Id: I018b00cc026a707da6afe40a327b44e97c16db53 Related-Bug: #1589713
134 lines
4.7 KiB
Python
134 lines
4.7 KiB
Python
# Copyright (c) 2015 Mirantis, Inc.
|
|
# 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.
|
|
|
|
import json
|
|
import time
|
|
|
|
from tempest.common import dynamic_creds
|
|
from tempest import config
|
|
from tempest.lib import base
|
|
from tempest.lib import exceptions
|
|
|
|
from murano_tempest_tests import clients
|
|
|
|
CONF = config.CONF
|
|
|
|
|
|
class BaseServiceBrokerTest(base.BaseTestCase):
|
|
"""Base test class for Murano Service Broker API tests."""
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
super(BaseServiceBrokerTest, cls).setUpClass()
|
|
cls.resource_setup()
|
|
|
|
@classmethod
|
|
def tearDownClass(cls):
|
|
cls.resource_cleanup()
|
|
super(BaseServiceBrokerTest, cls).tearDownClass()
|
|
|
|
@classmethod
|
|
def get_client_with_isolated_creds(cls, name=None,
|
|
type_of_creds="admin"):
|
|
|
|
cls.dynamic_cred = dynamic_creds.DynamicCredentialProvider(
|
|
identity_version=CONF.identity.auth_version,
|
|
name=cls.__name__)
|
|
if "admin" in type_of_creds:
|
|
creds = cls.dynamic_cred.get_admin_creds()
|
|
elif "alt" in type_of_creds:
|
|
creds = cls.dynamic_cred.get_alt_creds()
|
|
else:
|
|
creds = cls.dynamic_cred.get_credentials(type_of_creds)
|
|
cls.dynamic_cred.type_of_creds = type_of_creds
|
|
|
|
os = clients.Manager(credentials=creds)
|
|
client = os.service_broker_client
|
|
|
|
return client
|
|
|
|
@classmethod
|
|
def verify_nonempty(cls, *args):
|
|
if not all(args):
|
|
msg = "Missing API credentials in configuration."
|
|
raise cls.skipException(msg)
|
|
|
|
@classmethod
|
|
def resource_setup(cls):
|
|
if not CONF.service_broker.run_service_broker_tests:
|
|
skip_msg = "Service Broker API tests are disabled"
|
|
raise cls.skipException(skip_msg)
|
|
if not CONF.service_available.murano_cfapi:
|
|
skip_msg = "Service Broker API is disabled"
|
|
raise cls.skipException(skip_msg)
|
|
if not CONF.service_available.murano:
|
|
skip_msg = "Murano is disabled"
|
|
raise cls.skipException(skip_msg)
|
|
if not hasattr(cls, "os"):
|
|
cls.username = CONF.identity.username
|
|
cls.password = CONF.identity.password
|
|
cls.tenant_name = CONF.identity.tenant_name
|
|
cls.verify_nonempty(cls.username, cls.password, cls.tenant_name)
|
|
cls.os = clients.Manager()
|
|
cls.service_broker_client = cls.os.service_broker_client
|
|
cls.application_catalog_client = cls.os.application_catalog_client
|
|
|
|
def setUp(self):
|
|
super(BaseServiceBrokerTest, self).setUp()
|
|
self.addCleanup(self.clear_isolated_creds)
|
|
|
|
@classmethod
|
|
def resource_cleanup(cls):
|
|
cls.clear_isolated_creds()
|
|
|
|
@classmethod
|
|
def clear_isolated_creds(cls):
|
|
if hasattr(cls, "dynamic_cred"):
|
|
cls.dynamic_cred.clear_creds()
|
|
|
|
def wait_for_result(self, instance_id, timeout):
|
|
start_time = time.time()
|
|
start_status = self.service_broker_client.get_last_status(instance_id)
|
|
while start_status:
|
|
status = self.service_broker_client.get_last_status(instance_id)
|
|
if status == start_status and time.time() - start_time > timeout:
|
|
raise exceptions.TimeoutException
|
|
elif status != start_status:
|
|
try:
|
|
parced_stat = status['state']
|
|
self.assertIn(str(parced_stat), ['succeeded', 'failed'])
|
|
result = str(parced_stat)
|
|
return result
|
|
except KeyError:
|
|
parced_stat = json.loads(status)
|
|
self.assertIsInstance(parced_stat, dict)
|
|
result = parced_stat
|
|
return result
|
|
else:
|
|
time.sleep(2)
|
|
|
|
def perform_deprovision(self, instance_id):
|
|
self.service_broker_client.deprovision(instance_id)
|
|
status = self.wait_for_result(instance_id, 30)
|
|
self.assertEqual('succeeded', status)
|
|
|
|
|
|
class BaseServiceBrokerAdminTest(BaseServiceBrokerTest):
|
|
|
|
@classmethod
|
|
def resource_setup(cls):
|
|
cls.os = clients.Manager()
|
|
super(BaseServiceBrokerAdminTest, cls).resource_setup()
|