Neutron LBaaS: Base Test Case Class

* used in setting up clients for use in tests
* contains all relevant test clients
 * ex: listeners, pools, health monitor, members, load balancers
* adds lb creation method with clean-up functionality
* includes example tempest conf file

Co-Authored-By: Carlos D. Garza <carlos.garza@rackspace.com>
Co-Authored-By: Trevor Vardeman <trevor.vardeman@rackspace.com>

Change-Id: Ie87c09ade81bd012dbb84acb2731d268414edaa2
This commit is contained in:
Franklin Naval 2015-02-03 14:36:02 -06:00
parent acc87a1f42
commit 6f6f0c4083
4 changed files with 170 additions and 1 deletions

View File

@ -0,0 +1,28 @@
[DEFAULT]
# Leaving this as a placeholder
[identity]
# Replace these with values that represent your identity configuration
uri=http://localhost:9696/v2.0
uri_v3=http://localhost:9696/v3
auth_version=v3
region=RegionOne
username=admin
tenant_name=admin
password=password
domain_name=Default
admin_username=admin
admin_tenant_name=admin
admin_password=password
admin_domain_name=Default
[lbaas]
# These are not currently being pulled in.
# Need to implement CONF strategy for this.
catalog_type=network
region=RegionOne
endpoint_type=publicURL
build_interval=10
build_timeout=300

View File

@ -0,0 +1,141 @@
# Copyright 2015 Rackspace
#
# 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 os
import time
from neutron.i18n import _, _LI
from neutron_lbaas.tests.tempest.v2.clients import health_monitors_client
from neutron_lbaas.tests.tempest.v2.clients import listeners_client
from neutron_lbaas.tests.tempest.v2.clients import load_balancers_client
from neutron_lbaas.tests.tempest.v2.clients import members_client
from neutron_lbaas.tests.tempest.v2.clients import pools_client
from tempest.api.network import base
from tempest import clients as tempest_clients
from tempest import config
from tempest.openstack.common import log as logging
CONF = config.CONF
# Use local tempest conf if one is available.
# This usually means we're running tests outside of devstack
if os.path.exists('./tests/tempest/etc/dev_tempest.conf'):
CONF.set_config_path('./tests/tempest/etc/dev_tempest.conf')
class BaseTestCase(base.BaseNetworkTest):
_lbs_to_delete = []
@classmethod
def resource_setup(cls):
super(BaseTestCase, cls).resource_setup()
credentials = cls.isolated_creds.get_primary_creds()
mgr = tempest_clients.Manager(credentials=credentials)
auth_provider = mgr.get_auth_provider(credentials)
client_args = [auth_provider, 'network', 'regionOne']
cls.load_balancers_client = \
load_balancers_client.LoadBalancersClientJSON(*client_args)
cls.listeners_client = \
listeners_client.ListenersClientJSON(*client_args)
cls.pools_client = pools_client.PoolsClientJSON(*client_args)
cls.members_client = members_client.MembersClientJSON(*client_args)
cls.health_monitors_client = \
health_monitors_client.HealthMonitorsClientJSON(*client_args)
@classmethod
def resource_cleanup(cls):
for lb_id in cls._lbs_to_delete:
lb = cls.load_balancers_client.get_load_balancer_status_tree(
lb_id).get('loadbalancer')
for listener in lb.get('listeners'):
for pool in listener.get('pools'):
cls._try_delete_resource(cls.pools_client.delete_pool,
pool.get('id'))
cls._wait_for_load_balancer_status(lb_id)
health_monitor = pool.get('healthmonitor')
if health_monitor:
cls._try_delete_resource(
cls.health_monitors_client.delete_health_monitor,
health_monitor.get('id'))
cls._wait_for_load_balancer_status(lb_id)
cls._try_delete_resource(cls.listeners_client.delete_listener,
listener.get('id'))
cls._wait_for_load_balancer_status(lb_id)
cls._try_delete_resource(
cls.load_balancers_client.delete_load_balancer, lb_id)
super(BaseTestCase, cls).resource_cleanup()
@classmethod
def setUpClass(cls):
cls.LOG = logging.getLogger(cls._get_full_case_name())
super(BaseTestCase, cls).setUpClass()
def setUp(self):
self.LOG.info(_LI('Starting: {0}').format(self._testMethodName))
super(BaseTestCase, self).setUp()
def tearDown(self):
super(BaseTestCase, self).tearDown()
self.LOG.info(_LI('Finished: {0}\n').format(self._testMethodName))
@classmethod
def _create_load_balancer(cls, **kwargs):
try:
lb = cls.load_balancers_client.create_load_balancer(**kwargs)
except Exception:
raise Exception(_("Failed to create load balancer..."))
cls._lbs_to_delete.append(lb.get('id'))
return lb
@classmethod
def _create_active_load_balancer(cls, **kwargs):
lb = cls._create_load_balancer(**kwargs)
lb = cls._wait_for_load_balancer_status(lb.get('id'))
return lb
@classmethod
def _wait_for_load_balancer_status(cls, load_balancer_id,
provisioning_status='ACTIVE',
operating_status='ONLINE'):
interval_time = 10
timeout = 300
end_time = time.time() + timeout
while time.time() < end_time:
lb = cls.load_balancers_client.get_load_balancer(load_balancer_id)
if (lb.get('provisioning_status') == provisioning_status and
lb.get('operating_status') == operating_status):
break
time.sleep(interval_time)
else:
raise Exception(
_("Wait for load balancer ran for {timeout} seconds and did "
"not observe {lb_id} reach {provisioning_status} "
"provisioning status and {operating_status} "
"operating status.").format(
timeout=timeout,
lb_id=lb.get('id'),
provisioning_status=provisioning_status,
operating_status=operating_status))
return lb
@classmethod
def _get_full_case_name(cls):
name = '{module}:{case_name}'.format(
module=cls.__module__,
case_name=cls.__name__
)
return name

View File

@ -56,7 +56,7 @@ class PoolsClientJSON(service_client.ServiceClient):
"""Update a pool"""
url = 'v2.0/lbaas/pools/{pool_id}'.format(pool_id=pool_id)
post_body = jsonutils.dumps({'pool': kwargs})
resp, body = self.post(url, post_body)
resp, body = self.put(url, post_body)
body = jsonutils.loads(body)
self.expected_success(200, resp.status)
return service_client.ResponseBody(resp, body['pool'])