ZhiQiang Fan | 39f9722 | 2013-09-20 04:49:44 +0800 | [diff] [blame] | 1 | # Copyright 2012 OpenStack Foundation |
Jay Pipes | 051075a | 2012-04-28 17:39:37 -0400 | [diff] [blame] | 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 | |
Attila Fazekas | f86fa31 | 2013-07-30 19:56:39 +0200 | [diff] [blame] | 16 | import atexit |
Masayuki Igawa | 80c1b9f | 2013-10-07 17:19:11 +0900 | [diff] [blame] | 17 | import functools |
Ian Wienand | 98c35f3 | 2013-07-23 20:34:23 +1000 | [diff] [blame] | 18 | import os |
Attila Fazekas | 5394332 | 2014-02-10 16:07:34 +0100 | [diff] [blame] | 19 | import sys |
Jay Pipes | 051075a | 2012-04-28 17:39:37 -0400 | [diff] [blame] | 20 | |
Jordan Pittier | 35a6375 | 2016-08-30 13:09:12 +0200 | [diff] [blame] | 21 | import debtcollector.moves |
Matthew Treinish | 78561ad | 2013-07-26 11:41:56 -0400 | [diff] [blame] | 22 | import fixtures |
Doug Hellmann | 583ce2c | 2015-03-11 14:55:46 +0000 | [diff] [blame] | 23 | from oslo_log import log as logging |
Chris Hoge | 296558c | 2015-02-19 00:29:49 -0600 | [diff] [blame] | 24 | import six |
ivan-zhu | 1feeb38 | 2013-01-24 10:14:39 +0800 | [diff] [blame] | 25 | import testtools |
Jay Pipes | 051075a | 2012-04-28 17:39:37 -0400 | [diff] [blame] | 26 | |
Matthew Treinish | 3e04685 | 2013-07-23 16:00:24 -0400 | [diff] [blame] | 27 | from tempest import clients |
Andrea Frittoli (andreaf) | 290b3e1 | 2015-10-08 10:25:02 +0100 | [diff] [blame] | 28 | from tempest.common import credentials_factory as credentials |
Rohan Kanade | 9ce97df | 2013-12-10 18:59:35 +0530 | [diff] [blame] | 29 | from tempest.common import fixed_network |
nithya-ganesan | 222efd7 | 2015-01-22 12:20:27 +0000 | [diff] [blame] | 30 | import tempest.common.validation_resources as vresources |
Attila Fazekas | dc21642 | 2013-01-29 15:12:14 +0100 | [diff] [blame] | 31 | from tempest import config |
Matthew Treinish | 3787e4c | 2016-10-07 21:25:33 -0400 | [diff] [blame] | 32 | from tempest.lib.common import cred_client |
Andrea Frittoli (andreaf) | db9672e | 2016-02-23 14:07:24 -0500 | [diff] [blame] | 33 | from tempest.lib import decorators |
Andrea Frittoli (andreaf) | af4f7cf | 2016-06-13 15:12:26 +0100 | [diff] [blame] | 34 | from tempest.lib import exceptions as lib_exc |
Jay Pipes | 051075a | 2012-04-28 17:39:37 -0400 | [diff] [blame] | 35 | |
| 36 | LOG = logging.getLogger(__name__) |
| 37 | |
Sean Dague | 86bd842 | 2013-12-20 09:56:44 -0500 | [diff] [blame] | 38 | CONF = config.CONF |
| 39 | |
Ken'ichi Ohmichi | 44f0127 | 2017-01-27 18:44:14 -0800 | [diff] [blame] | 40 | # TODO(oomichi): This test.idempotent_id should be removed after all projects |
| 41 | # switch to use decorators.idempotent_id. |
| 42 | idempotent_id = debtcollector.moves.moved_function( |
| 43 | decorators.idempotent_id, 'idempotent_id', __name__, |
| 44 | version='Mitaka', removal_version='?') |
Matthew Treinish | c1802bc | 2015-12-03 18:48:11 -0500 | [diff] [blame] | 45 | |
Jay Pipes | 051075a | 2012-04-28 17:39:37 -0400 | [diff] [blame] | 46 | |
Jordan Pittier | c5665a6 | 2017-04-12 16:42:53 +0200 | [diff] [blame] | 47 | related_bug = debtcollector.moves.moved_function( |
| 48 | decorators.related_bug, 'related_bug', __name__, |
| 49 | version='Pike', removal_version='?') |
| 50 | |
| 51 | |
Jordan Pittier | 3b46d27 | 2017-04-12 16:17:28 +0200 | [diff] [blame] | 52 | attr = debtcollector.moves.moved_function( |
| 53 | decorators.attr, 'attr', __name__, |
| 54 | version='Pike', removal_version='?') |
Chris Yeoh | 55530bb | 2013-02-08 16:04:27 +1030 | [diff] [blame] | 55 | |
| 56 | |
Andrea Frittoli | 07acf26 | 2017-04-09 19:36:37 +0200 | [diff] [blame] | 57 | class InvalidServiceTag(lib_exc.TempestException): |
| 58 | message = "Invalid service tag" |
| 59 | |
| 60 | |
Matthew Treinish | 3d8c732 | 2014-08-03 23:53:28 -0400 | [diff] [blame] | 61 | def get_service_list(): |
Matthew Treinish | 8afbffd | 2014-01-21 23:56:13 +0000 | [diff] [blame] | 62 | service_list = { |
| 63 | 'compute': CONF.service_available.nova, |
| 64 | 'image': CONF.service_available.glance, |
| 65 | 'volume': CONF.service_available.cinder, |
Matthew Treinish | 8afbffd | 2014-01-21 23:56:13 +0000 | [diff] [blame] | 66 | 'network': True, |
| 67 | 'identity': True, |
| 68 | 'object_storage': CONF.service_available.swift, |
Matthew Treinish | 8afbffd | 2014-01-21 23:56:13 +0000 | [diff] [blame] | 69 | } |
Matthew Treinish | 3d8c732 | 2014-08-03 23:53:28 -0400 | [diff] [blame] | 70 | return service_list |
Matthew Treinish | 16c4379 | 2013-09-09 19:55:23 +0000 | [diff] [blame] | 71 | |
Matthew Treinish | 3d8c732 | 2014-08-03 23:53:28 -0400 | [diff] [blame] | 72 | |
Yaroslav Lobankov | da999f7 | 2015-06-30 20:32:55 +0300 | [diff] [blame] | 73 | def services(*args): |
Matthew Treinish | 3d8c732 | 2014-08-03 23:53:28 -0400 | [diff] [blame] | 74 | """A decorator used to set an attr for each service used in a test case |
| 75 | |
| 76 | This decorator applies a testtools attr for each service that gets |
| 77 | exercised by a test case. |
| 78 | """ |
Matthew Treinish | 16c4379 | 2013-09-09 19:55:23 +0000 | [diff] [blame] | 79 | def decorator(f): |
Andrea Frittoli | 6f05307 | 2017-04-09 19:22:47 +0200 | [diff] [blame] | 80 | known_services = get_service_list() |
| 81 | |
Matthew Treinish | 16c4379 | 2013-09-09 19:55:23 +0000 | [diff] [blame] | 82 | for service in args: |
Andrea Frittoli | 6f05307 | 2017-04-09 19:22:47 +0200 | [diff] [blame] | 83 | if service not in known_services: |
Andrea Frittoli | 07acf26 | 2017-04-09 19:36:37 +0200 | [diff] [blame] | 84 | raise InvalidServiceTag('%s is not a valid service' % service) |
Jordan Pittier | 3b46d27 | 2017-04-12 16:17:28 +0200 | [diff] [blame] | 85 | decorators.attr(type=list(args))(f) |
Matthew Treinish | 8afbffd | 2014-01-21 23:56:13 +0000 | [diff] [blame] | 86 | |
| 87 | @functools.wraps(f) |
| 88 | def wrapper(self, *func_args, **func_kwargs): |
Matthew Treinish | 3d8c732 | 2014-08-03 23:53:28 -0400 | [diff] [blame] | 89 | service_list = get_service_list() |
| 90 | |
Matthew Treinish | 8afbffd | 2014-01-21 23:56:13 +0000 | [diff] [blame] | 91 | for service in args: |
| 92 | if not service_list[service]: |
| 93 | msg = 'Skipped because the %s service is not available' % ( |
| 94 | service) |
| 95 | raise testtools.TestCase.skipException(msg) |
| 96 | return f(self, *func_args, **func_kwargs) |
| 97 | return wrapper |
Matthew Treinish | 16c4379 | 2013-09-09 19:55:23 +0000 | [diff] [blame] | 98 | return decorator |
| 99 | |
| 100 | |
Yaroslav Lobankov | da999f7 | 2015-06-30 20:32:55 +0300 | [diff] [blame] | 101 | def requires_ext(**kwargs): |
Matthew Treinish | e3d2614 | 2013-11-26 19:14:58 +0000 | [diff] [blame] | 102 | """A decorator to skip tests if an extension is not enabled |
| 103 | |
| 104 | @param extension |
| 105 | @param service |
| 106 | """ |
| 107 | def decorator(func): |
| 108 | @functools.wraps(func) |
| 109 | def wrapper(*func_args, **func_kwargs): |
| 110 | if not is_extension_enabled(kwargs['extension'], |
| 111 | kwargs['service']): |
| 112 | msg = "Skipped because %s extension: %s is not enabled" % ( |
| 113 | kwargs['service'], kwargs['extension']) |
| 114 | raise testtools.TestCase.skipException(msg) |
| 115 | return func(*func_args, **func_kwargs) |
| 116 | return wrapper |
| 117 | return decorator |
| 118 | |
| 119 | |
| 120 | def is_extension_enabled(extension_name, service): |
| 121 | """A function that will check the list of enabled extensions from config |
| 122 | |
| 123 | """ |
Matthew Treinish | e3d2614 | 2013-11-26 19:14:58 +0000 | [diff] [blame] | 124 | config_dict = { |
Matthew Treinish | bc0e03e | 2014-01-30 16:51:06 +0000 | [diff] [blame] | 125 | 'compute': CONF.compute_feature_enabled.api_extensions, |
Matthew Treinish | bc0e03e | 2014-01-30 16:51:06 +0000 | [diff] [blame] | 126 | 'volume': CONF.volume_feature_enabled.api_extensions, |
| 127 | 'network': CONF.network_feature_enabled.api_extensions, |
| 128 | 'object': CONF.object_storage_feature_enabled.discoverable_apis, |
Jane Zadorozhna | 121576d | 2015-06-23 12:57:13 +0300 | [diff] [blame] | 129 | 'identity': CONF.identity_feature_enabled.api_extensions |
Matthew Treinish | e3d2614 | 2013-11-26 19:14:58 +0000 | [diff] [blame] | 130 | } |
Masayuki Igawa | 0c0f014 | 2017-04-10 17:22:02 +0900 | [diff] [blame] | 131 | if not config_dict[service]: |
Simeon Monov | 5d7effe | 2014-07-16 07:32:38 +0300 | [diff] [blame] | 132 | return False |
Matthew Treinish | e3d2614 | 2013-11-26 19:14:58 +0000 | [diff] [blame] | 133 | if config_dict[service][0] == 'all': |
| 134 | return True |
| 135 | if extension_name in config_dict[service]: |
| 136 | return True |
| 137 | return False |
| 138 | |
Ian Wienand | 98c35f3 | 2013-07-23 20:34:23 +1000 | [diff] [blame] | 139 | |
Yair Fried | 9591412 | 2016-03-03 09:14:40 +0200 | [diff] [blame] | 140 | def is_scheduler_filter_enabled(filter_name): |
ghanshyam | 5817e14 | 2016-12-01 11:38:46 +0900 | [diff] [blame] | 141 | """Check the list of enabled compute scheduler filters from config. |
| 142 | |
| 143 | This function checks whether the given compute scheduler filter is |
| 144 | available and configured in the config file. If the |
| 145 | scheduler_available_filters option is set to 'all' (Default value. which |
| 146 | means default filters are configured in nova) in tempest.conf then, this |
| 147 | function returns True with assumption that requested filter 'filter_name' |
| 148 | is one of available filter in nova ("nova.scheduler.filters.all_filters"). |
| 149 | """ |
Yair Fried | ca5cfb5 | 2016-01-04 15:41:55 +0200 | [diff] [blame] | 150 | |
| 151 | filters = CONF.compute_feature_enabled.scheduler_available_filters |
Masayuki Igawa | 0c0f014 | 2017-04-10 17:22:02 +0900 | [diff] [blame] | 152 | if not filters: |
Yair Fried | ca5cfb5 | 2016-01-04 15:41:55 +0200 | [diff] [blame] | 153 | return False |
| 154 | if 'all' in filters: |
| 155 | return True |
| 156 | if filter_name in filters: |
| 157 | return True |
| 158 | return False |
| 159 | |
| 160 | |
Attila Fazekas | f86fa31 | 2013-07-30 19:56:39 +0200 | [diff] [blame] | 161 | at_exit_set = set() |
| 162 | |
| 163 | |
| 164 | def validate_tearDownClass(): |
| 165 | if at_exit_set: |
Sean Dague | eb1523b | 2014-03-10 10:17:44 -0400 | [diff] [blame] | 166 | LOG.error( |
| 167 | "tearDownClass does not call the super's " |
| 168 | "tearDownClass in these classes: \n" |
| 169 | + str(at_exit_set)) |
| 170 | |
Attila Fazekas | f86fa31 | 2013-07-30 19:56:39 +0200 | [diff] [blame] | 171 | |
| 172 | atexit.register(validate_tearDownClass) |
| 173 | |
Attila Fazekas | 5394332 | 2014-02-10 16:07:34 +0100 | [diff] [blame] | 174 | |
Matthew Treinish | 2474f41 | 2014-11-17 18:11:56 -0500 | [diff] [blame] | 175 | class BaseTestCase(testtools.testcase.WithAttributes, |
| 176 | testtools.TestCase): |
Andrea Frittoli | a5ddd55 | 2014-08-19 18:30:00 +0100 | [diff] [blame] | 177 | """The test base class defines Tempest framework for class level fixtures. |
Ken'ichi Ohmichi | 2e2ee19 | 2015-11-19 09:48:27 +0000 | [diff] [blame] | 178 | |
Andrea Frittoli | a5ddd55 | 2014-08-19 18:30:00 +0100 | [diff] [blame] | 179 | `setUpClass` and `tearDownClass` are defined here and cannot be overwritten |
| 180 | by subclasses (enforced via hacking rule T105). |
| 181 | |
| 182 | Set-up is split in a series of steps (setup stages), which can be |
| 183 | overwritten by test classes. Set-up stages are: |
| 184 | - skip_checks |
| 185 | - setup_credentials |
| 186 | - setup_clients |
| 187 | - resource_setup |
| 188 | |
| 189 | Tear-down is also split in a series of steps (teardown stages), which are |
| 190 | stacked for execution only if the corresponding setup stage had been |
| 191 | reached during the setup phase. Tear-down stages are: |
Andrea Frittoli (andreaf) | 17209bb | 2015-05-22 10:16:57 -0700 | [diff] [blame] | 192 | - clear_credentials (defined in the base test class) |
Andrea Frittoli | a5ddd55 | 2014-08-19 18:30:00 +0100 | [diff] [blame] | 193 | - resource_cleanup |
| 194 | """ |
Attila Fazekas | c43fec8 | 2013-04-09 23:17:52 +0200 | [diff] [blame] | 195 | |
Attila Fazekas | f86fa31 | 2013-07-30 19:56:39 +0200 | [diff] [blame] | 196 | setUpClassCalled = False |
| 197 | |
Andrea Frittoli | b21de6c | 2015-02-06 20:12:38 +0000 | [diff] [blame] | 198 | # NOTE(andreaf) credentials holds a list of the credentials to be allocated |
Andrea Frittoli (andreaf) | 825b2d3 | 2015-04-08 20:58:01 +0100 | [diff] [blame] | 199 | # at class setup time. Credential types can be 'primary', 'alt', 'admin' or |
| 200 | # a list of roles - the first element of the list being a label, and the |
| 201 | # rest the actual roles |
Andrea Frittoli | b21de6c | 2015-02-06 20:12:38 +0000 | [diff] [blame] | 202 | credentials = [] |
nithya-ganesan | 222efd7 | 2015-01-22 12:20:27 +0000 | [diff] [blame] | 203 | # Resources required to validate a server using ssh |
| 204 | validation_resources = {} |
Matthew Treinish | 9f756a0 | 2014-01-15 10:26:07 -0500 | [diff] [blame] | 205 | network_resources = {} |
| 206 | |
Sean Dague | 2ef32ac | 2014-06-09 11:32:23 -0400 | [diff] [blame] | 207 | # NOTE(sdague): log_format is defined inline here instead of using the oslo |
| 208 | # default because going through the config path recouples config to the |
| 209 | # stress tests too early, and depending on testr order will fail unit tests |
| 210 | log_format = ('%(asctime)s %(process)d %(levelname)-8s ' |
| 211 | '[%(name)s] %(message)s') |
| 212 | |
Ryota MIBU | 60687e5 | 2015-12-09 18:37:39 +0900 | [diff] [blame] | 213 | # Client manager class to use in this test case. |
| 214 | client_manager = clients.Manager |
| 215 | |
Sean Dague | 02620fd | 2016-03-02 15:52:51 -0500 | [diff] [blame] | 216 | # A way to adjust slow test classes |
| 217 | TIMEOUT_SCALING_FACTOR = 1 |
| 218 | |
Pavel Sedlák | 1053bd3 | 2013-04-16 16:47:40 +0200 | [diff] [blame] | 219 | @classmethod |
| 220 | def setUpClass(cls): |
Andrea Frittoli | 73ee247 | 2014-09-15 12:31:53 +0100 | [diff] [blame] | 221 | # It should never be overridden by descendants |
Pavel Sedlák | 1053bd3 | 2013-04-16 16:47:40 +0200 | [diff] [blame] | 222 | if hasattr(super(BaseTestCase, cls), 'setUpClass'): |
| 223 | super(BaseTestCase, cls).setUpClass() |
Attila Fazekas | f86fa31 | 2013-07-30 19:56:39 +0200 | [diff] [blame] | 224 | cls.setUpClassCalled = True |
Andrea Frittoli | a5ddd55 | 2014-08-19 18:30:00 +0100 | [diff] [blame] | 225 | # Stack of (name, callable) to be invoked in reverse order at teardown |
| 226 | cls.teardowns = [] |
| 227 | # All the configuration checks that may generate a skip |
| 228 | cls.skip_checks() |
Andrea Frittoli | 73ee247 | 2014-09-15 12:31:53 +0100 | [diff] [blame] | 229 | try: |
Andrea Frittoli | a5ddd55 | 2014-08-19 18:30:00 +0100 | [diff] [blame] | 230 | # Allocation of all required credentials and client managers |
Andrea Frittoli (andreaf) | 17209bb | 2015-05-22 10:16:57 -0700 | [diff] [blame] | 231 | cls.teardowns.append(('credentials', cls.clear_credentials)) |
Andrea Frittoli | a5ddd55 | 2014-08-19 18:30:00 +0100 | [diff] [blame] | 232 | cls.setup_credentials() |
| 233 | # Shortcuts to clients |
| 234 | cls.setup_clients() |
| 235 | # Additional class-wide test resources |
| 236 | cls.teardowns.append(('resources', cls.resource_cleanup)) |
Andrea Frittoli | 73ee247 | 2014-09-15 12:31:53 +0100 | [diff] [blame] | 237 | cls.resource_setup() |
| 238 | except Exception: |
| 239 | etype, value, trace = sys.exc_info() |
Jordan Pittier | 525ec71 | 2016-12-07 17:51:26 +0100 | [diff] [blame] | 240 | LOG.info("%s raised in %s.setUpClass. Invoking tearDownClass.", |
| 241 | etype, cls.__name__) |
Andrea Frittoli | a5ddd55 | 2014-08-19 18:30:00 +0100 | [diff] [blame] | 242 | cls.tearDownClass() |
Andrea Frittoli | 73ee247 | 2014-09-15 12:31:53 +0100 | [diff] [blame] | 243 | try: |
Matthew Treinish | 843227d | 2015-04-23 10:17:17 -0400 | [diff] [blame] | 244 | six.reraise(etype, value, trace) |
Andrea Frittoli | 73ee247 | 2014-09-15 12:31:53 +0100 | [diff] [blame] | 245 | finally: |
Andrea Frittoli | a5ddd55 | 2014-08-19 18:30:00 +0100 | [diff] [blame] | 246 | del trace # to avoid circular refs |
Pavel Sedlák | 1053bd3 | 2013-04-16 16:47:40 +0200 | [diff] [blame] | 247 | |
Attila Fazekas | f86fa31 | 2013-07-30 19:56:39 +0200 | [diff] [blame] | 248 | @classmethod |
| 249 | def tearDownClass(cls): |
Attila Fazekas | 5d27530 | 2013-08-29 12:35:12 +0200 | [diff] [blame] | 250 | at_exit_set.discard(cls) |
Andrea Frittoli | 73ee247 | 2014-09-15 12:31:53 +0100 | [diff] [blame] | 251 | # It should never be overridden by descendants |
Attila Fazekas | f86fa31 | 2013-07-30 19:56:39 +0200 | [diff] [blame] | 252 | if hasattr(super(BaseTestCase, cls), 'tearDownClass'): |
| 253 | super(BaseTestCase, cls).tearDownClass() |
Andrea Frittoli | a5ddd55 | 2014-08-19 18:30:00 +0100 | [diff] [blame] | 254 | # Save any existing exception, we always want to re-raise the original |
| 255 | # exception only |
| 256 | etype, value, trace = sys.exc_info() |
| 257 | # If there was no exception during setup we shall re-raise the first |
| 258 | # exception in teardown |
| 259 | re_raise = (etype is None) |
| 260 | while cls.teardowns: |
| 261 | name, teardown = cls.teardowns.pop() |
| 262 | # Catch any exception in tearDown so we can re-raise the original |
| 263 | # exception at the end |
| 264 | try: |
| 265 | teardown() |
| 266 | except Exception as te: |
| 267 | sys_exec_info = sys.exc_info() |
| 268 | tetype = sys_exec_info[0] |
| 269 | # TODO(andreaf): Till we have the ability to cleanup only |
| 270 | # resources that were successfully setup in resource_cleanup, |
| 271 | # log AttributeError as info instead of exception. |
| 272 | if tetype is AttributeError and name == 'resources': |
Jordan Pittier | 525ec71 | 2016-12-07 17:51:26 +0100 | [diff] [blame] | 273 | LOG.info("tearDownClass of %s failed: %s", name, te) |
Andrea Frittoli | a5ddd55 | 2014-08-19 18:30:00 +0100 | [diff] [blame] | 274 | else: |
Jordan Pittier | 525ec71 | 2016-12-07 17:51:26 +0100 | [diff] [blame] | 275 | LOG.exception("teardown of %s failed: %s", name, te) |
Andrea Frittoli | a5ddd55 | 2014-08-19 18:30:00 +0100 | [diff] [blame] | 276 | if not etype: |
| 277 | etype, value, trace = sys_exec_info |
Joshua White | bd76960 | 2016-02-02 09:30:11 -0800 | [diff] [blame] | 278 | # If exceptions were raised during teardown, and not before, re-raise |
Andrea Frittoli | a5ddd55 | 2014-08-19 18:30:00 +0100 | [diff] [blame] | 279 | # the first one |
| 280 | if re_raise and etype is not None: |
| 281 | try: |
Matthew Treinish | 843227d | 2015-04-23 10:17:17 -0400 | [diff] [blame] | 282 | six.reraise(etype, value, trace) |
Andrea Frittoli | a5ddd55 | 2014-08-19 18:30:00 +0100 | [diff] [blame] | 283 | finally: |
| 284 | del trace # to avoid circular refs |
Andrea Frittoli | 73ee247 | 2014-09-15 12:31:53 +0100 | [diff] [blame] | 285 | |
| 286 | @classmethod |
Andrea Frittoli | a5ddd55 | 2014-08-19 18:30:00 +0100 | [diff] [blame] | 287 | def skip_checks(cls): |
Ken'ichi Ohmichi | 2e2ee19 | 2015-11-19 09:48:27 +0000 | [diff] [blame] | 288 | """Class level skip checks. |
| 289 | |
| 290 | Subclasses verify in here all conditions that might prevent the |
| 291 | execution of the entire test class. |
Andrea Frittoli | a5ddd55 | 2014-08-19 18:30:00 +0100 | [diff] [blame] | 292 | Checks implemented here may not make use API calls, and should rely on |
| 293 | configuration alone. |
| 294 | In general skip checks that require an API call are discouraged. |
| 295 | If one is really needed it may be implemented either in the |
| 296 | resource_setup or at test level. |
| 297 | """ |
Andrea Frittoli (andreaf) | 32d0de1 | 2015-10-09 14:43:53 +0100 | [diff] [blame] | 298 | identity_version = cls.get_identity_version() |
| 299 | if 'admin' in cls.credentials and not credentials.is_admin_available( |
| 300 | identity_version=identity_version): |
Andrea Frittoli | b21de6c | 2015-02-06 20:12:38 +0000 | [diff] [blame] | 301 | msg = "Missing Identity Admin API credentials in configuration." |
| 302 | raise cls.skipException(msg) |
Andrea Frittoli (andreaf) | 32d0de1 | 2015-10-09 14:43:53 +0100 | [diff] [blame] | 303 | if 'alt' in cls.credentials and not credentials.is_alt_available( |
| 304 | identity_version=identity_version): |
Andrea Frittoli | b21de6c | 2015-02-06 20:12:38 +0000 | [diff] [blame] | 305 | msg = "Missing a 2nd set of API credentials in configuration." |
| 306 | raise cls.skipException(msg) |
Andrea Frittoli (andreaf) | 4160141 | 2015-05-12 16:39:03 +0100 | [diff] [blame] | 307 | if hasattr(cls, 'identity_version'): |
| 308 | if cls.identity_version == 'v2': |
| 309 | if not CONF.identity_feature_enabled.api_v2: |
| 310 | raise cls.skipException("Identity api v2 is not enabled") |
| 311 | elif cls.identity_version == 'v3': |
| 312 | if not CONF.identity_feature_enabled.api_v3: |
| 313 | raise cls.skipException("Identity api v3 is not enabled") |
Andrea Frittoli | a5ddd55 | 2014-08-19 18:30:00 +0100 | [diff] [blame] | 314 | |
| 315 | @classmethod |
| 316 | def setup_credentials(cls): |
edannon | 6cc6fbc | 2016-05-03 11:56:12 +0300 | [diff] [blame] | 317 | """Allocate credentials and create the client managers from them. |
Ken'ichi Ohmichi | 2e2ee19 | 2015-11-19 09:48:27 +0000 | [diff] [blame] | 318 | |
edannon | 6cc6fbc | 2016-05-03 11:56:12 +0300 | [diff] [blame] | 319 | For every element of credentials param function creates tenant/user, |
| 320 | Then it creates client manager for that credential. |
| 321 | |
| 322 | Network related tests must override this function with |
| 323 | set_network_resources() method, otherwise it will create |
| 324 | network resources(network resources are created in a later step). |
Andrea Frittoli | b21de6c | 2015-02-06 20:12:38 +0000 | [diff] [blame] | 325 | """ |
| 326 | for credentials_type in cls.credentials: |
| 327 | # This may raise an exception in case credentials are not available |
| 328 | # In that case we want to let the exception through and the test |
| 329 | # fail accordingly |
Andrea Frittoli (andreaf) | 825b2d3 | 2015-04-08 20:58:01 +0100 | [diff] [blame] | 330 | if isinstance(credentials_type, six.string_types): |
| 331 | manager = cls.get_client_manager( |
| 332 | credential_type=credentials_type) |
| 333 | setattr(cls, 'os_%s' % credentials_type, manager) |
Jordan Pittier | 8160d31 | 2017-04-18 11:52:23 +0200 | [diff] [blame] | 334 | # NOTE(jordanP): Tempest should use os_primary, os_admin |
| 335 | # and os_alt throughout its code base but we keep the aliases |
| 336 | # around for a while for Tempest plugins. Aliases should be |
| 337 | # removed eventually. |
Andrea Frittoli (andreaf) | 825b2d3 | 2015-04-08 20:58:01 +0100 | [diff] [blame] | 338 | # Setup some common aliases |
Andrea Frittoli (andreaf) | 825b2d3 | 2015-04-08 20:58:01 +0100 | [diff] [blame] | 339 | if credentials_type == 'primary': |
Jordan Pittier | 8160d31 | 2017-04-18 11:52:23 +0200 | [diff] [blame] | 340 | cls.os = debtcollector.moves.moved_read_only_property( |
| 341 | 'os', 'os_primary', version='Pike', |
Jakub Libosvar | 7835ca1 | 2017-05-04 16:44:23 +0200 | [diff] [blame] | 342 | removal_version='Queens') |
Jordan Pittier | 8160d31 | 2017-04-18 11:52:23 +0200 | [diff] [blame] | 343 | cls.manager =\ |
| 344 | debtcollector.moves.moved_read_only_property( |
| 345 | 'manager', 'os_primary', version='Pike', |
Jakub Libosvar | 7835ca1 | 2017-05-04 16:44:23 +0200 | [diff] [blame] | 346 | removal_version='Queens') |
Andrea Frittoli (andreaf) | 825b2d3 | 2015-04-08 20:58:01 +0100 | [diff] [blame] | 347 | if credentials_type == 'admin': |
Jordan Pittier | 8160d31 | 2017-04-18 11:52:23 +0200 | [diff] [blame] | 348 | cls.os_adm = debtcollector.moves.moved_read_only_property( |
| 349 | 'os_adm', 'os_admin', version='Pike', |
Jakub Libosvar | 7835ca1 | 2017-05-04 16:44:23 +0200 | [diff] [blame] | 350 | removal_version='Queens') |
Jordan Pittier | 8160d31 | 2017-04-18 11:52:23 +0200 | [diff] [blame] | 351 | cls.admin_manager =\ |
| 352 | debtcollector.moves.moved_read_only_property( |
| 353 | 'admin_manager', 'os_admin', version='Pike', |
Jakub Libosvar | 7835ca1 | 2017-05-04 16:44:23 +0200 | [diff] [blame] | 354 | removal_version='Queens') |
Andrea Frittoli (andreaf) | 825b2d3 | 2015-04-08 20:58:01 +0100 | [diff] [blame] | 355 | if credentials_type == 'alt': |
Jordan Pittier | 8160d31 | 2017-04-18 11:52:23 +0200 | [diff] [blame] | 356 | cls.alt_manager =\ |
| 357 | debtcollector.moves.moved_read_only_property( |
| 358 | 'alt_manager', 'os_alt', version='Pike', |
Jakub Libosvar | 7835ca1 | 2017-05-04 16:44:23 +0200 | [diff] [blame] | 359 | removal_version='Queens') |
Andrea Frittoli (andreaf) | 825b2d3 | 2015-04-08 20:58:01 +0100 | [diff] [blame] | 360 | elif isinstance(credentials_type, list): |
| 361 | manager = cls.get_client_manager(roles=credentials_type[1:], |
| 362 | force_new=True) |
| 363 | setattr(cls, 'os_roles_%s' % credentials_type[0], manager) |
Andrea Frittoli | a5ddd55 | 2014-08-19 18:30:00 +0100 | [diff] [blame] | 364 | |
| 365 | @classmethod |
| 366 | def setup_clients(cls): |
| 367 | """Create links to the clients into the test object.""" |
| 368 | # TODO(andreaf) There is a fair amount of code that could me moved from |
| 369 | # base / test classes in here. Ideally tests should be able to only |
| 370 | # specify which client is `client` and nothing else. |
Andrea Frittoli | 73ee247 | 2014-09-15 12:31:53 +0100 | [diff] [blame] | 371 | pass |
Attila Fazekas | f86fa31 | 2013-07-30 19:56:39 +0200 | [diff] [blame] | 372 | |
Emily Hugenbruch | 5bd4cbf | 2014-12-17 21:38:38 +0000 | [diff] [blame] | 373 | @classmethod |
| 374 | def resource_setup(cls): |
Ken'ichi Ohmichi | 2e2ee19 | 2015-11-19 09:48:27 +0000 | [diff] [blame] | 375 | """Class level resource setup for test cases.""" |
Andrea Frittoli | cf999a8 | 2017-05-24 10:44:46 +0100 | [diff] [blame] | 376 | if hasattr(cls, "os_primary"): |
nithya-ganesan | 222efd7 | 2015-01-22 12:20:27 +0000 | [diff] [blame] | 377 | cls.validation_resources = vresources.create_validation_resources( |
Andrea Frittoli | cf999a8 | 2017-05-24 10:44:46 +0100 | [diff] [blame] | 378 | cls.os_primary, cls.validation_resources) |
nithya-ganesan | 222efd7 | 2015-01-22 12:20:27 +0000 | [diff] [blame] | 379 | else: |
zhangguoqing | 6c09664 | 2016-01-04 06:17:21 +0000 | [diff] [blame] | 380 | LOG.warning("Client manager not found, validation resources not" |
| 381 | " created") |
Emily Hugenbruch | 5bd4cbf | 2014-12-17 21:38:38 +0000 | [diff] [blame] | 382 | |
| 383 | @classmethod |
| 384 | def resource_cleanup(cls): |
| 385 | """Class level resource cleanup for test cases. |
Ken'ichi Ohmichi | 2e2ee19 | 2015-11-19 09:48:27 +0000 | [diff] [blame] | 386 | |
Emily Hugenbruch | 5bd4cbf | 2014-12-17 21:38:38 +0000 | [diff] [blame] | 387 | Resource cleanup must be able to handle the case of partially setup |
| 388 | resources, in case a failure during `resource_setup` should happen. |
| 389 | """ |
nithya-ganesan | 222efd7 | 2015-01-22 12:20:27 +0000 | [diff] [blame] | 390 | if cls.validation_resources: |
Andrea Frittoli | cf999a8 | 2017-05-24 10:44:46 +0100 | [diff] [blame] | 391 | if hasattr(cls, "os_primary"): |
| 392 | vresources.clear_validation_resources(cls.os_primary, |
nithya-ganesan | 222efd7 | 2015-01-22 12:20:27 +0000 | [diff] [blame] | 393 | cls.validation_resources) |
| 394 | cls.validation_resources = {} |
| 395 | else: |
zhangguoqing | 6c09664 | 2016-01-04 06:17:21 +0000 | [diff] [blame] | 396 | LOG.warning("Client manager not found, validation resources " |
| 397 | "not deleted") |
Emily Hugenbruch | 5bd4cbf | 2014-12-17 21:38:38 +0000 | [diff] [blame] | 398 | |
Attila Fazekas | f86fa31 | 2013-07-30 19:56:39 +0200 | [diff] [blame] | 399 | def setUp(self): |
| 400 | super(BaseTestCase, self).setUp() |
| 401 | if not self.setUpClassCalled: |
| 402 | raise RuntimeError("setUpClass does not calls the super's" |
| 403 | "setUpClass in the " |
| 404 | + self.__class__.__name__) |
| 405 | at_exit_set.add(self.__class__) |
Matthew Treinish | 78561ad | 2013-07-26 11:41:56 -0400 | [diff] [blame] | 406 | test_timeout = os.environ.get('OS_TEST_TIMEOUT', 0) |
| 407 | try: |
Sean Dague | 02620fd | 2016-03-02 15:52:51 -0500 | [diff] [blame] | 408 | test_timeout = int(test_timeout) * self.TIMEOUT_SCALING_FACTOR |
Matthew Treinish | 78561ad | 2013-07-26 11:41:56 -0400 | [diff] [blame] | 409 | except ValueError: |
| 410 | test_timeout = 0 |
| 411 | if test_timeout > 0: |
Attila Fazekas | f86fa31 | 2013-07-30 19:56:39 +0200 | [diff] [blame] | 412 | self.useFixture(fixtures.Timeout(test_timeout, gentle=True)) |
Matthew Treinish | 78561ad | 2013-07-26 11:41:56 -0400 | [diff] [blame] | 413 | |
| 414 | if (os.environ.get('OS_STDOUT_CAPTURE') == 'True' or |
| 415 | os.environ.get('OS_STDOUT_CAPTURE') == '1'): |
Attila Fazekas | f86fa31 | 2013-07-30 19:56:39 +0200 | [diff] [blame] | 416 | stdout = self.useFixture(fixtures.StringStream('stdout')).stream |
| 417 | self.useFixture(fixtures.MonkeyPatch('sys.stdout', stdout)) |
Matthew Treinish | 78561ad | 2013-07-26 11:41:56 -0400 | [diff] [blame] | 418 | if (os.environ.get('OS_STDERR_CAPTURE') == 'True' or |
| 419 | os.environ.get('OS_STDERR_CAPTURE') == '1'): |
Attila Fazekas | f86fa31 | 2013-07-30 19:56:39 +0200 | [diff] [blame] | 420 | stderr = self.useFixture(fixtures.StringStream('stderr')).stream |
| 421 | self.useFixture(fixtures.MonkeyPatch('sys.stderr', stderr)) |
Attila Fazekas | 3138807 | 2013-08-15 08:58:07 +0200 | [diff] [blame] | 422 | if (os.environ.get('OS_LOG_CAPTURE') != 'False' and |
| 423 | os.environ.get('OS_LOG_CAPTURE') != '0'): |
Attila Fazekas | 3138807 | 2013-08-15 08:58:07 +0200 | [diff] [blame] | 424 | self.useFixture(fixtures.LoggerFixture(nuke_handlers=False, |
Sean Dague | 2ef32ac | 2014-06-09 11:32:23 -0400 | [diff] [blame] | 425 | format=self.log_format, |
Attila Fazekas | 90445be | 2013-10-24 16:46:03 +0200 | [diff] [blame] | 426 | level=None)) |
Matthew Treinish | 78561ad | 2013-07-26 11:41:56 -0400 | [diff] [blame] | 427 | |
Andrea Frittoli (andreaf) | 1f34241 | 2015-05-12 16:37:19 +0100 | [diff] [blame] | 428 | @property |
| 429 | def credentials_provider(self): |
| 430 | return self._get_credentials_provider() |
| 431 | |
Jamie Lennox | 1535017 | 2015-08-17 10:54:25 +1000 | [diff] [blame] | 432 | @property |
| 433 | def identity_utils(self): |
| 434 | """A client that abstracts v2 and v3 identity operations. |
| 435 | |
| 436 | This can be used for creating and tearing down projects in tests. It |
| 437 | should not be used for testing identity features. |
| 438 | """ |
| 439 | if CONF.identity.auth_version == 'v2': |
| 440 | client = self.os_admin.identity_client |
Daniel Mellado | 7aea534 | 2016-02-09 09:10:12 +0000 | [diff] [blame] | 441 | users_client = self.os_admin.users_client |
Daniel Mellado | b04da90 | 2015-11-20 17:43:12 +0100 | [diff] [blame] | 442 | project_client = self.os_admin.tenants_client |
Daniel Mellado | 6b16b92 | 2015-12-07 12:43:08 +0000 | [diff] [blame] | 443 | roles_client = self.os_admin.roles_client |
Daniel Mellado | 91a26b6 | 2016-02-11 11:13:04 +0000 | [diff] [blame] | 444 | domains_client = None |
Jamie Lennox | 1535017 | 2015-08-17 10:54:25 +1000 | [diff] [blame] | 445 | else: |
| 446 | client = self.os_admin.identity_v3_client |
Daniel Mellado | 7aea534 | 2016-02-09 09:10:12 +0000 | [diff] [blame] | 447 | users_client = self.os_admin.users_v3_client |
Arx Cruz | 24bcb88 | 2016-02-10 15:20:16 +0100 | [diff] [blame] | 448 | project_client = self.os_admin.projects_client |
| 449 | roles_client = self.os_admin.roles_v3_client |
Daniel Mellado | 91a26b6 | 2016-02-11 11:13:04 +0000 | [diff] [blame] | 450 | domains_client = self.os_admin.domains_client |
Jamie Lennox | 1535017 | 2015-08-17 10:54:25 +1000 | [diff] [blame] | 451 | |
| 452 | try: |
| 453 | domain = client.auth_provider.credentials.project_domain_name |
| 454 | except AttributeError: |
| 455 | domain = 'Default' |
| 456 | |
Daniel Mellado | b04da90 | 2015-11-20 17:43:12 +0100 | [diff] [blame] | 457 | return cred_client.get_creds_client(client, project_client, |
Daniel Mellado | 82c83a5 | 2015-12-09 15:16:49 +0000 | [diff] [blame] | 458 | users_client, |
Daniel Mellado | 7aea534 | 2016-02-09 09:10:12 +0000 | [diff] [blame] | 459 | roles_client, |
Daniel Mellado | 91a26b6 | 2016-02-11 11:13:04 +0000 | [diff] [blame] | 460 | domains_client, |
Daniel Mellado | b04da90 | 2015-11-20 17:43:12 +0100 | [diff] [blame] | 461 | project_domain_name=domain) |
Jamie Lennox | 1535017 | 2015-08-17 10:54:25 +1000 | [diff] [blame] | 462 | |
Andrea Frittoli (andreaf) | 1f34241 | 2015-05-12 16:37:19 +0100 | [diff] [blame] | 463 | @classmethod |
Andrea Frittoli (andreaf) | 32d0de1 | 2015-10-09 14:43:53 +0100 | [diff] [blame] | 464 | def get_identity_version(cls): |
| 465 | """Returns the identity version used by the test class""" |
| 466 | identity_version = getattr(cls, 'identity_version', None) |
| 467 | return identity_version or CONF.identity.auth_version |
| 468 | |
| 469 | @classmethod |
Andrea Frittoli (andreaf) | 1f34241 | 2015-05-12 16:37:19 +0100 | [diff] [blame] | 470 | def _get_credentials_provider(cls): |
| 471 | """Returns a credentials provider |
| 472 | |
| 473 | If no credential provider exists yet creates one. |
Andrea Frittoli | 9e01dbb | 2017-04-20 15:28:30 +0100 | [diff] [blame] | 474 | It always use the configuration value from identity.auth_version, |
| 475 | since we always want to provision accounts with the current version |
| 476 | of the identity API. |
Andrea Frittoli (andreaf) | 1f34241 | 2015-05-12 16:37:19 +0100 | [diff] [blame] | 477 | """ |
| 478 | if (not hasattr(cls, '_creds_provider') or not cls._creds_provider or |
| 479 | not cls._creds_provider.name == cls.__name__): |
| 480 | force_tenant_isolation = getattr(cls, 'force_tenant_isolation', |
| 481 | False) |
Andrea Frittoli (andreaf) | 1f34241 | 2015-05-12 16:37:19 +0100 | [diff] [blame] | 482 | |
Andrea Frittoli (andreaf) | 17209bb | 2015-05-22 10:16:57 -0700 | [diff] [blame] | 483 | cls._creds_provider = credentials.get_credentials_provider( |
Andrea Frittoli (andreaf) | 1f34241 | 2015-05-12 16:37:19 +0100 | [diff] [blame] | 484 | name=cls.__name__, network_resources=cls.network_resources, |
Andrea Frittoli | 9e01dbb | 2017-04-20 15:28:30 +0100 | [diff] [blame] | 485 | force_tenant_isolation=force_tenant_isolation) |
Andrea Frittoli (andreaf) | 1f34241 | 2015-05-12 16:37:19 +0100 | [diff] [blame] | 486 | return cls._creds_provider |
| 487 | |
Matthew Treinish | 3e04685 | 2013-07-23 16:00:24 -0400 | [diff] [blame] | 488 | @classmethod |
Andrea Frittoli (andreaf) | 4160141 | 2015-05-12 16:39:03 +0100 | [diff] [blame] | 489 | def get_client_manager(cls, credential_type=None, roles=None, |
| 490 | force_new=None): |
Andrea Frittoli (andreaf) | 737fac9 | 2015-05-12 16:14:35 +0100 | [diff] [blame] | 491 | """Returns an OpenStack client manager |
| 492 | |
| 493 | Returns an OpenStack client manager based on either credential_type |
| 494 | or a list of roles. If neither is specified, it defaults to |
| 495 | credential_type 'primary' |
Andrea Frittoli (andreaf) | 737fac9 | 2015-05-12 16:14:35 +0100 | [diff] [blame] | 496 | :param credential_type: string - primary, alt or admin |
| 497 | :param roles: list of roles |
| 498 | |
lei zhang | dd552b2 | 2015-11-25 20:41:48 +0800 | [diff] [blame] | 499 | :returns: the created client manager |
Andrea Frittoli (andreaf) | 737fac9 | 2015-05-12 16:14:35 +0100 | [diff] [blame] | 500 | :raises skipException: if the requested credentials are not available |
Ryan Hsu | 6c4bb3d | 2013-10-21 21:22:50 -0700 | [diff] [blame] | 501 | """ |
Andrea Frittoli (andreaf) | 737fac9 | 2015-05-12 16:14:35 +0100 | [diff] [blame] | 502 | if all([roles, credential_type]): |
| 503 | msg = "Cannot get credentials by type and roles at the same time" |
| 504 | raise ValueError(msg) |
| 505 | if not any([roles, credential_type]): |
| 506 | credential_type = 'primary' |
Andrea Frittoli (andreaf) | 1f34241 | 2015-05-12 16:37:19 +0100 | [diff] [blame] | 507 | cred_provider = cls._get_credentials_provider() |
Andrea Frittoli (andreaf) | 737fac9 | 2015-05-12 16:14:35 +0100 | [diff] [blame] | 508 | if roles: |
| 509 | for role in roles: |
Andrea Frittoli (andreaf) | 1f34241 | 2015-05-12 16:37:19 +0100 | [diff] [blame] | 510 | if not cred_provider.is_role_available(role): |
Andrea Frittoli (andreaf) | 737fac9 | 2015-05-12 16:14:35 +0100 | [diff] [blame] | 511 | skip_msg = ( |
| 512 | "%s skipped because the configured credential provider" |
| 513 | " is not able to provide credentials with the %s role " |
| 514 | "assigned." % (cls.__name__, role)) |
| 515 | raise cls.skipException(skip_msg) |
| 516 | params = dict(roles=roles) |
| 517 | if force_new is not None: |
| 518 | params.update(force_new=force_new) |
Andrea Frittoli (andreaf) | 1f34241 | 2015-05-12 16:37:19 +0100 | [diff] [blame] | 519 | creds = cred_provider.get_creds_by_roles(**params) |
Andrea Frittoli | b21de6c | 2015-02-06 20:12:38 +0000 | [diff] [blame] | 520 | else: |
Andrea Frittoli (andreaf) | 737fac9 | 2015-05-12 16:14:35 +0100 | [diff] [blame] | 521 | credentials_method = 'get_%s_creds' % credential_type |
Andrea Frittoli (andreaf) | 1f34241 | 2015-05-12 16:37:19 +0100 | [diff] [blame] | 522 | if hasattr(cred_provider, credentials_method): |
| 523 | creds = getattr(cred_provider, credentials_method)() |
Andrea Frittoli (andreaf) | 737fac9 | 2015-05-12 16:14:35 +0100 | [diff] [blame] | 524 | else: |
Andrea Frittoli (andreaf) | af4f7cf | 2016-06-13 15:12:26 +0100 | [diff] [blame] | 525 | raise lib_exc.InvalidCredentials( |
Andrea Frittoli (andreaf) | 737fac9 | 2015-05-12 16:14:35 +0100 | [diff] [blame] | 526 | "Invalid credentials type %s" % credential_type) |
Jordan Pittier | e4be907 | 2017-01-04 19:17:35 +0100 | [diff] [blame] | 527 | manager = cls.client_manager(credentials=creds.credentials) |
Andrea Frittoli | 7322467 | 2016-12-09 21:08:19 +0000 | [diff] [blame] | 528 | # NOTE(andreaf) Ensure credentials have user and project id fields. |
| 529 | # It may not be the case when using pre-provisioned credentials. |
| 530 | manager.auth_provider.set_auth() |
| 531 | return manager |
Ryan Hsu | 6c4bb3d | 2013-10-21 21:22:50 -0700 | [diff] [blame] | 532 | |
| 533 | @classmethod |
Andrea Frittoli (andreaf) | 17209bb | 2015-05-22 10:16:57 -0700 | [diff] [blame] | 534 | def clear_credentials(cls): |
Ken'ichi Ohmichi | 2e2ee19 | 2015-11-19 09:48:27 +0000 | [diff] [blame] | 535 | """Clears creds if set""" |
Attila Fazekas | 5b0d926 | 2015-05-20 10:17:39 +0200 | [diff] [blame] | 536 | if hasattr(cls, '_creds_provider'): |
Andrea Frittoli (andreaf) | 17209bb | 2015-05-22 10:16:57 -0700 | [diff] [blame] | 537 | cls._creds_provider.clear_creds() |
Ryan Hsu | 6c4bb3d | 2013-10-21 21:22:50 -0700 | [diff] [blame] | 538 | |
| 539 | @classmethod |
nithya-ganesan | 222efd7 | 2015-01-22 12:20:27 +0000 | [diff] [blame] | 540 | def set_validation_resources(cls, keypair=None, floating_ip=None, |
| 541 | security_group=None, |
| 542 | security_group_rules=None): |
| 543 | """Specify which ssh server validation resources should be created. |
Ken'ichi Ohmichi | 2e2ee19 | 2015-11-19 09:48:27 +0000 | [diff] [blame] | 544 | |
nithya-ganesan | 222efd7 | 2015-01-22 12:20:27 +0000 | [diff] [blame] | 545 | Each of the argument must be set to either None, True or False, with |
| 546 | None - use default from config (security groups and security group |
| 547 | rules get created when set to None) |
| 548 | False - Do not create the validation resource |
| 549 | True - create the validation resource |
| 550 | |
| 551 | @param keypair |
| 552 | @param security_group |
| 553 | @param security_group_rules |
| 554 | @param floating_ip |
| 555 | """ |
Matthew Treinish | e5cca00 | 2015-05-11 15:36:50 -0400 | [diff] [blame] | 556 | if not CONF.validation.run_validation: |
| 557 | return |
Jordan Pittier | 79cd182 | 2016-12-08 17:20:35 +0100 | [diff] [blame] | 558 | |
nithya-ganesan | 222efd7 | 2015-01-22 12:20:27 +0000 | [diff] [blame] | 559 | if keypair is None: |
Jordan Pittier | 79cd182 | 2016-12-08 17:20:35 +0100 | [diff] [blame] | 560 | keypair = (CONF.validation.auth_method.lower() == "keypair") |
| 561 | |
nithya-ganesan | 222efd7 | 2015-01-22 12:20:27 +0000 | [diff] [blame] | 562 | if floating_ip is None: |
Jordan Pittier | 79cd182 | 2016-12-08 17:20:35 +0100 | [diff] [blame] | 563 | floating_ip = (CONF.validation.connect_method.lower() == |
| 564 | "floating") |
| 565 | |
nithya-ganesan | 222efd7 | 2015-01-22 12:20:27 +0000 | [diff] [blame] | 566 | if security_group is None: |
Brandon Palm | c6cc91d | 2015-08-19 13:20:21 -0500 | [diff] [blame] | 567 | security_group = CONF.validation.security_group |
Jordan Pittier | 79cd182 | 2016-12-08 17:20:35 +0100 | [diff] [blame] | 568 | |
nithya-ganesan | 222efd7 | 2015-01-22 12:20:27 +0000 | [diff] [blame] | 569 | if security_group_rules is None: |
Brandon Palm | c6cc91d | 2015-08-19 13:20:21 -0500 | [diff] [blame] | 570 | security_group_rules = CONF.validation.security_group_rules |
| 571 | |
nithya-ganesan | 222efd7 | 2015-01-22 12:20:27 +0000 | [diff] [blame] | 572 | if not cls.validation_resources: |
| 573 | cls.validation_resources = { |
| 574 | 'keypair': keypair, |
| 575 | 'security_group': security_group, |
| 576 | 'security_group_rules': security_group_rules, |
| 577 | 'floating_ip': floating_ip} |
| 578 | |
| 579 | @classmethod |
Andrea Frittoli | 7d5ed59 | 2015-02-10 01:10:23 +0000 | [diff] [blame] | 580 | def set_network_resources(cls, network=False, router=False, subnet=False, |
Matthew Treinish | 9f756a0 | 2014-01-15 10:26:07 -0500 | [diff] [blame] | 581 | dhcp=False): |
| 582 | """Specify which network resources should be created |
| 583 | |
| 584 | @param network |
| 585 | @param router |
| 586 | @param subnet |
| 587 | @param dhcp |
| 588 | """ |
Salvatore Orlando | 5a33724 | 2014-01-15 22:49:22 +0000 | [diff] [blame] | 589 | # network resources should be set only once from callers |
| 590 | # in order to ensure that even if it's called multiple times in |
| 591 | # a chain of overloaded methods, the attribute is set only |
| 592 | # in the leaf class |
Andrea Frittoli | 7d5ed59 | 2015-02-10 01:10:23 +0000 | [diff] [blame] | 593 | if not cls.network_resources: |
| 594 | cls.network_resources = { |
Salvatore Orlando | 5a33724 | 2014-01-15 22:49:22 +0000 | [diff] [blame] | 595 | 'network': network, |
| 596 | 'router': router, |
| 597 | 'subnet': subnet, |
| 598 | 'dhcp': dhcp} |
Matthew Treinish | 9f756a0 | 2014-01-15 10:26:07 -0500 | [diff] [blame] | 599 | |
Rohan Kanade | 9ce97df | 2013-12-10 18:59:35 +0530 | [diff] [blame] | 600 | @classmethod |
Ryan Rossiter | 9228bf7 | 2016-02-25 03:06:12 +0000 | [diff] [blame] | 601 | def get_tenant_network(cls, credentials_type='primary'): |
Rohan Kanade | 9ce97df | 2013-12-10 18:59:35 +0530 | [diff] [blame] | 602 | """Get the network to be used in testing |
| 603 | |
Ryan Rossiter | 9228bf7 | 2016-02-25 03:06:12 +0000 | [diff] [blame] | 604 | :param credentials_type: The type of credentials for which to get the |
| 605 | tenant network |
| 606 | |
Rohan Kanade | 9ce97df | 2013-12-10 18:59:35 +0530 | [diff] [blame] | 607 | :return: network dict including 'id' and 'name' |
| 608 | """ |
Ryan Rossiter | 9228bf7 | 2016-02-25 03:06:12 +0000 | [diff] [blame] | 609 | # Get a manager for the given credentials_type, but at least |
| 610 | # always fall back on getting the manager for primary credentials |
| 611 | if isinstance(credentials_type, six.string_types): |
| 612 | manager = cls.get_client_manager(credential_type=credentials_type) |
| 613 | elif isinstance(credentials_type, list): |
| 614 | manager = cls.get_client_manager(roles=credentials_type[1:]) |
| 615 | else: |
| 616 | manager = cls.get_client_manager() |
| 617 | |
Andrea Frittoli (andreaf) | 17209bb | 2015-05-22 10:16:57 -0700 | [diff] [blame] | 618 | # Make sure cred_provider exists and get a network client |
Ryan Rossiter | 9228bf7 | 2016-02-25 03:06:12 +0000 | [diff] [blame] | 619 | networks_client = manager.compute_networks_client |
Andrea Frittoli (andreaf) | 1f34241 | 2015-05-12 16:37:19 +0100 | [diff] [blame] | 620 | cred_provider = cls._get_credentials_provider() |
Andrea Frittoli | 700711e | 2015-04-02 11:39:38 +0100 | [diff] [blame] | 621 | # In case of nova network, isolated tenants are not able to list the |
Joshua White | bd76960 | 2016-02-02 09:30:11 -0800 | [diff] [blame] | 622 | # network configured in fixed_network_name, even if they can use it |
Andrea Frittoli | 700711e | 2015-04-02 11:39:38 +0100 | [diff] [blame] | 623 | # for their servers, so using an admin network client to validate |
| 624 | # the network name |
| 625 | if (not CONF.service_available.neutron and |
Andrea Frittoli (andreaf) | 32d0de1 | 2015-10-09 14:43:53 +0100 | [diff] [blame] | 626 | credentials.is_admin_available( |
| 627 | identity_version=cls.get_identity_version())): |
Andrea Frittoli (andreaf) | 1f34241 | 2015-05-12 16:37:19 +0100 | [diff] [blame] | 628 | admin_creds = cred_provider.get_admin_creds() |
Andrea Frittoli (andreaf) | 848c4a1 | 2016-06-09 11:09:02 +0100 | [diff] [blame] | 629 | admin_manager = clients.Manager(admin_creds.credentials) |
John Warren | 9487a18 | 2015-09-14 18:12:56 -0400 | [diff] [blame] | 630 | networks_client = admin_manager.compute_networks_client |
Andrea Frittoli (andreaf) | 940f8c6 | 2015-10-30 16:39:24 +0900 | [diff] [blame] | 631 | return fixed_network.get_tenant_network( |
| 632 | cred_provider, networks_client, CONF.compute.fixed_network_name) |
Rohan Kanade | 9ce97df | 2013-12-10 18:59:35 +0530 | [diff] [blame] | 633 | |
Andrea Frittoli | 71c71e9 | 2017-04-07 17:45:21 +0100 | [diff] [blame] | 634 | def assertEmpty(self, items, msg=None): |
| 635 | """Asserts whether a sequence or collection is empty |
Mark Maglana | 5885eb3 | 2014-02-28 10:57:34 -0800 | [diff] [blame] | 636 | |
Andrea Frittoli | 71c71e9 | 2017-04-07 17:45:21 +0100 | [diff] [blame] | 637 | :param items: sequence or collection to be tested |
| 638 | :param msg: message to be passed to the AssertionError |
| 639 | :raises AssertionError: when items is not empty |
| 640 | """ |
zhufl | 92ade4b | 2017-03-03 15:20:10 +0800 | [diff] [blame] | 641 | if msg is None: |
Andrea Frittoli | 71c71e9 | 2017-04-07 17:45:21 +0100 | [diff] [blame] | 642 | msg = "sequence or collection is not empty: %s" % items |
Masayuki Igawa | 0c0f014 | 2017-04-10 17:22:02 +0900 | [diff] [blame] | 643 | self.assertFalse(items, msg) |
Andrea Frittoli | 71c71e9 | 2017-04-07 17:45:21 +0100 | [diff] [blame] | 644 | |
| 645 | def assertNotEmpty(self, items, msg=None): |
| 646 | """Asserts whether a sequence or collection is not empty |
| 647 | |
| 648 | :param items: sequence or collection to be tested |
| 649 | :param msg: message to be passed to the AssertionError |
| 650 | :raises AssertionError: when items is empty |
| 651 | """ |
| 652 | if msg is None: |
| 653 | msg = "sequence or collection is empty." |
Masayuki Igawa | 0c0f014 | 2017-04-10 17:22:02 +0900 | [diff] [blame] | 654 | self.assertTrue(items, msg) |