/usr/lib/python2.6/site-packages/openstack/tests/functional
NameSizeModeActions
block_store/-0755rm
compute/-0755rm
image/-0755rm
network/-0755rm
object_store/-0755rm
orchestration/-0755rm
telemetry/-0755rm
base.py25860644editdlrm
base.pyc32190644editdlrm
__init__.py00644editdlrm
__init__.pyc1600644editdlrm
Edit: /usr/lib/python2.6/site-packages/openstack/tests/functional/base.py (2586B)
# 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 os_client_config import time import unittest from keystoneauth1 import exceptions as _exceptions from openstack import connection #: Defines the OpenStack Client Config (OCC) cloud key in your OCC config #: file, typically in $HOME/.config/openstack/clouds.yaml. That configuration #: will determine where the functional tests will be run and what resource #: defaults will be used to run the functional tests. TEST_CLOUD = os.getenv('OS_CLOUD', 'test_cloud') class Opts(object): def __init__(self, cloud_name='test_cloud', debug=False): self.cloud = cloud_name self.debug = debug def _get_resource_value(resource_key, default): try: return cloud.config['functional'][resource_key] except KeyError: return default opts = Opts(cloud_name=TEST_CLOUD) occ = os_client_config.OpenStackConfig() cloud = occ.get_one_cloud(opts.cloud, argparse=opts) IMAGE_NAME = _get_resource_value('image_name', 'cirros-0.3.4-x86_64-uec') FLAVOR_NAME = _get_resource_value('flavor_name', 'm1.small') def service_exists(**kwargs): """Decorator function to check whether a service exists Usage: @unittest.skipUnless(base.service_exists(service_type="metering"), "Metering service does not exist") class TestMeter(base.BaseFunctionalTest): ... :param kwargs: The kwargs needed to filter an endpoint. :returns: True if the service exists, otherwise False. """ try: conn = connection.from_config(cloud_name=TEST_CLOUD) conn.session.get_endpoint(**kwargs) return True except _exceptions.EndpointNotFound: return False class BaseFunctionalTest(unittest.TestCase): @classmethod def setUpClass(cls): cls.conn = connection.from_config(cloud_name=TEST_CLOUD) @classmethod def assertIs(cls, expected, actual): if expected != actual: raise Exception(expected + ' != ' + actual) @classmethod def linger_for_delete(cls): time.sleep(40)