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 |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 18 | import json |
Ian Wienand | 98c35f3 | 2013-07-23 20:34:23 +1000 | [diff] [blame] | 19 | import os |
Attila Fazekas | 5394332 | 2014-02-10 16:07:34 +0100 | [diff] [blame] | 20 | import sys |
Jay Pipes | 051075a | 2012-04-28 17:39:37 -0400 | [diff] [blame] | 21 | import time |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 22 | import urllib |
| 23 | import uuid |
Jay Pipes | 051075a | 2012-04-28 17:39:37 -0400 | [diff] [blame] | 24 | |
Matthew Treinish | 78561ad | 2013-07-26 11:41:56 -0400 | [diff] [blame] | 25 | import fixtures |
Attila Fazekas | dc21642 | 2013-01-29 15:12:14 +0100 | [diff] [blame] | 26 | import testresources |
ivan-zhu | 1feeb38 | 2013-01-24 10:14:39 +0800 | [diff] [blame] | 27 | import testtools |
Jay Pipes | 051075a | 2012-04-28 17:39:37 -0400 | [diff] [blame] | 28 | |
Marc Koderer | 9698a4f | 2014-03-13 08:37:39 +0100 | [diff] [blame] | 29 | from oslo.config import cfg |
| 30 | |
Matthew Treinish | 3e04685 | 2013-07-23 16:00:24 -0400 | [diff] [blame] | 31 | from tempest import clients |
Marc Koderer | 6ee82dc | 2014-02-17 10:26:29 +0100 | [diff] [blame] | 32 | import tempest.common.generator.valid_generator as valid |
Ryan Hsu | 6c4bb3d | 2013-10-21 21:22:50 -0700 | [diff] [blame] | 33 | from tempest.common import isolated_creds |
Attila Fazekas | dc21642 | 2013-01-29 15:12:14 +0100 | [diff] [blame] | 34 | from tempest import config |
Matthew Treinish | 16c4379 | 2013-09-09 19:55:23 +0000 | [diff] [blame] | 35 | from tempest import exceptions |
Marc Koderer | 6ee82dc | 2014-02-17 10:26:29 +0100 | [diff] [blame] | 36 | from tempest.openstack.common import importutils |
Matthew Treinish | f4a9b0f | 2013-07-26 16:58:26 -0400 | [diff] [blame] | 37 | from tempest.openstack.common import log as logging |
Jay Pipes | 051075a | 2012-04-28 17:39:37 -0400 | [diff] [blame] | 38 | |
| 39 | LOG = logging.getLogger(__name__) |
| 40 | |
Sean Dague | 86bd842 | 2013-12-20 09:56:44 -0500 | [diff] [blame] | 41 | CONF = config.CONF |
| 42 | |
Samuel Merritt | 0d499bc | 2013-06-19 12:08:23 -0700 | [diff] [blame] | 43 | # All the successful HTTP status codes from RFC 2616 |
| 44 | HTTP_SUCCESS = (200, 201, 202, 203, 204, 205, 206) |
| 45 | |
Jay Pipes | 051075a | 2012-04-28 17:39:37 -0400 | [diff] [blame] | 46 | |
Chris Yeoh | 55530bb | 2013-02-08 16:04:27 +1030 | [diff] [blame] | 47 | def attr(*args, **kwargs): |
Matthew Treinish | a74f5d4 | 2014-02-07 20:25:44 -0500 | [diff] [blame] | 48 | """A decorator which applies the testtools attr decorator |
Chris Yeoh | 55530bb | 2013-02-08 16:04:27 +1030 | [diff] [blame] | 49 | |
Matthew Treinish | a74f5d4 | 2014-02-07 20:25:44 -0500 | [diff] [blame] | 50 | This decorator applies the testtools.testcase.attr if it is in the list of |
| 51 | attributes to testtools we want to apply. |
Attila Fazekas | b2902af | 2013-02-16 16:22:44 +0100 | [diff] [blame] | 52 | """ |
Chris Yeoh | 55530bb | 2013-02-08 16:04:27 +1030 | [diff] [blame] | 53 | |
| 54 | def decorator(f): |
Giulio Fidente | 4946a05 | 2013-05-14 12:23:51 +0200 | [diff] [blame] | 55 | if 'type' in kwargs and isinstance(kwargs['type'], str): |
| 56 | f = testtools.testcase.attr(kwargs['type'])(f) |
Chris Yeoh | cf3fb7c | 2013-05-19 15:59:00 +0930 | [diff] [blame] | 57 | if kwargs['type'] == 'smoke': |
| 58 | f = testtools.testcase.attr('gate')(f) |
Giulio Fidente | 4946a05 | 2013-05-14 12:23:51 +0200 | [diff] [blame] | 59 | elif 'type' in kwargs and isinstance(kwargs['type'], list): |
| 60 | for attr in kwargs['type']: |
| 61 | f = testtools.testcase.attr(attr)(f) |
Chris Yeoh | cf3fb7c | 2013-05-19 15:59:00 +0930 | [diff] [blame] | 62 | if attr == 'smoke': |
| 63 | f = testtools.testcase.attr('gate')(f) |
Matthew Treinish | a74f5d4 | 2014-02-07 20:25:44 -0500 | [diff] [blame] | 64 | return f |
Chris Yeoh | 55530bb | 2013-02-08 16:04:27 +1030 | [diff] [blame] | 65 | |
| 66 | return decorator |
| 67 | |
| 68 | |
Zhi Kun Liu | 22fb470 | 2014-02-27 16:15:24 +0800 | [diff] [blame] | 69 | def safe_setup(f): |
| 70 | """A decorator used to wrap the setUpClass for cleaning up resources |
| 71 | when setUpClass failed. |
| 72 | """ |
| 73 | |
| 74 | def decorator(cls): |
| 75 | try: |
| 76 | f(cls) |
| 77 | except Exception as se: |
| 78 | LOG.exception("setUpClass failed: %s" % se) |
| 79 | try: |
| 80 | cls.tearDownClass() |
| 81 | except Exception as te: |
| 82 | LOG.exception("tearDownClass failed: %s" % te) |
| 83 | raise se |
| 84 | |
| 85 | return decorator |
| 86 | |
| 87 | |
Matthew Treinish | 16c4379 | 2013-09-09 19:55:23 +0000 | [diff] [blame] | 88 | def services(*args, **kwargs): |
| 89 | """A decorator used to set an attr for each service used in a test case |
| 90 | |
| 91 | This decorator applies a testtools attr for each service that gets |
| 92 | exercised by a test case. |
| 93 | """ |
Matthew Treinish | 8afbffd | 2014-01-21 23:56:13 +0000 | [diff] [blame] | 94 | service_list = { |
| 95 | 'compute': CONF.service_available.nova, |
| 96 | 'image': CONF.service_available.glance, |
| 97 | 'volume': CONF.service_available.cinder, |
| 98 | 'orchestration': CONF.service_available.heat, |
| 99 | # NOTE(mtreinish) nova-network will provide networking functionality |
| 100 | # if neutron isn't available, so always set to True. |
| 101 | 'network': True, |
| 102 | 'identity': True, |
| 103 | 'object_storage': CONF.service_available.swift, |
| 104 | 'dashboard': CONF.service_available.horizon, |
| 105 | } |
Matthew Treinish | 16c4379 | 2013-09-09 19:55:23 +0000 | [diff] [blame] | 106 | |
| 107 | def decorator(f): |
| 108 | for service in args: |
Matthew Treinish | 8afbffd | 2014-01-21 23:56:13 +0000 | [diff] [blame] | 109 | if service not in service_list: |
Matthew Treinish | 16c4379 | 2013-09-09 19:55:23 +0000 | [diff] [blame] | 110 | raise exceptions.InvalidServiceTag('%s is not a valid service' |
| 111 | % service) |
| 112 | attr(type=list(args))(f) |
Matthew Treinish | 8afbffd | 2014-01-21 23:56:13 +0000 | [diff] [blame] | 113 | |
| 114 | @functools.wraps(f) |
| 115 | def wrapper(self, *func_args, **func_kwargs): |
| 116 | for service in args: |
| 117 | if not service_list[service]: |
| 118 | msg = 'Skipped because the %s service is not available' % ( |
| 119 | service) |
| 120 | raise testtools.TestCase.skipException(msg) |
| 121 | return f(self, *func_args, **func_kwargs) |
| 122 | return wrapper |
Matthew Treinish | 16c4379 | 2013-09-09 19:55:23 +0000 | [diff] [blame] | 123 | return decorator |
| 124 | |
| 125 | |
Marc Koderer | 32221b8e | 2013-08-23 13:57:50 +0200 | [diff] [blame] | 126 | def stresstest(*args, **kwargs): |
| 127 | """Add stress test decorator |
| 128 | |
| 129 | For all functions with this decorator a attr stress will be |
| 130 | set automatically. |
| 131 | |
| 132 | @param class_setup_per: allowed values are application, process, action |
| 133 | ``application``: once in the stress job lifetime |
| 134 | ``process``: once in the worker process lifetime |
| 135 | ``action``: on each action |
Marc Koderer | b060441 | 2013-09-02 09:43:40 +0200 | [diff] [blame] | 136 | @param allow_inheritance: allows inheritance of this attribute |
Marc Koderer | 32221b8e | 2013-08-23 13:57:50 +0200 | [diff] [blame] | 137 | """ |
| 138 | def decorator(f): |
| 139 | if 'class_setup_per' in kwargs: |
| 140 | setattr(f, "st_class_setup_per", kwargs['class_setup_per']) |
| 141 | else: |
| 142 | setattr(f, "st_class_setup_per", 'process') |
Marc Koderer | b060441 | 2013-09-02 09:43:40 +0200 | [diff] [blame] | 143 | if 'allow_inheritance' in kwargs: |
| 144 | setattr(f, "st_allow_inheritance", kwargs['allow_inheritance']) |
| 145 | else: |
| 146 | setattr(f, "st_allow_inheritance", False) |
Marc Koderer | 32221b8e | 2013-08-23 13:57:50 +0200 | [diff] [blame] | 147 | attr(type='stress')(f) |
| 148 | return f |
| 149 | return decorator |
| 150 | |
| 151 | |
Giulio Fidente | 83181a9 | 2013-10-01 06:02:24 +0200 | [diff] [blame] | 152 | def skip_because(*args, **kwargs): |
| 153 | """A decorator useful to skip tests hitting known bugs |
| 154 | |
| 155 | @param bug: bug number causing the test to skip |
| 156 | @param condition: optional condition to be True for the skip to have place |
Ken'ichi Ohmichi | a1aa44c | 2013-12-06 20:48:24 +0900 | [diff] [blame] | 157 | @param interface: skip the test if it is the same as self._interface |
Giulio Fidente | 83181a9 | 2013-10-01 06:02:24 +0200 | [diff] [blame] | 158 | """ |
| 159 | def decorator(f): |
Masayuki Igawa | 80c1b9f | 2013-10-07 17:19:11 +0900 | [diff] [blame] | 160 | @functools.wraps(f) |
Ken'ichi Ohmichi | a1aa44c | 2013-12-06 20:48:24 +0900 | [diff] [blame] | 161 | def wrapper(self, *func_args, **func_kwargs): |
| 162 | skip = False |
| 163 | if "condition" in kwargs: |
| 164 | if kwargs["condition"] is True: |
| 165 | skip = True |
| 166 | elif "interface" in kwargs: |
| 167 | if kwargs["interface"] == self._interface: |
| 168 | skip = True |
| 169 | else: |
| 170 | skip = True |
| 171 | if "bug" in kwargs and skip is True: |
Matthew Treinish | ede5027 | 2014-02-11 19:56:11 +0000 | [diff] [blame] | 172 | if not kwargs['bug'].isdigit(): |
| 173 | raise ValueError('bug must be a valid bug number') |
Ken'ichi Ohmichi | a1aa44c | 2013-12-06 20:48:24 +0900 | [diff] [blame] | 174 | msg = "Skipped until Bug: %s is resolved." % kwargs["bug"] |
| 175 | raise testtools.TestCase.skipException(msg) |
| 176 | return f(self, *func_args, **func_kwargs) |
Masayuki Igawa | 80c1b9f | 2013-10-07 17:19:11 +0900 | [diff] [blame] | 177 | return wrapper |
Giulio Fidente | 83181a9 | 2013-10-01 06:02:24 +0200 | [diff] [blame] | 178 | return decorator |
| 179 | |
| 180 | |
Matthew Treinish | e3d2614 | 2013-11-26 19:14:58 +0000 | [diff] [blame] | 181 | def requires_ext(*args, **kwargs): |
| 182 | """A decorator to skip tests if an extension is not enabled |
| 183 | |
| 184 | @param extension |
| 185 | @param service |
| 186 | """ |
| 187 | def decorator(func): |
| 188 | @functools.wraps(func) |
| 189 | def wrapper(*func_args, **func_kwargs): |
| 190 | if not is_extension_enabled(kwargs['extension'], |
| 191 | kwargs['service']): |
| 192 | msg = "Skipped because %s extension: %s is not enabled" % ( |
| 193 | kwargs['service'], kwargs['extension']) |
| 194 | raise testtools.TestCase.skipException(msg) |
| 195 | return func(*func_args, **func_kwargs) |
| 196 | return wrapper |
| 197 | return decorator |
| 198 | |
| 199 | |
| 200 | def is_extension_enabled(extension_name, service): |
| 201 | """A function that will check the list of enabled extensions from config |
| 202 | |
| 203 | """ |
Matthew Treinish | e3d2614 | 2013-11-26 19:14:58 +0000 | [diff] [blame] | 204 | config_dict = { |
Matthew Treinish | bc0e03e | 2014-01-30 16:51:06 +0000 | [diff] [blame] | 205 | 'compute': CONF.compute_feature_enabled.api_extensions, |
| 206 | 'compute_v3': CONF.compute_feature_enabled.api_v3_extensions, |
| 207 | 'volume': CONF.volume_feature_enabled.api_extensions, |
| 208 | 'network': CONF.network_feature_enabled.api_extensions, |
| 209 | 'object': CONF.object_storage_feature_enabled.discoverable_apis, |
Matthew Treinish | e3d2614 | 2013-11-26 19:14:58 +0000 | [diff] [blame] | 210 | } |
| 211 | if config_dict[service][0] == 'all': |
| 212 | return True |
| 213 | if extension_name in config_dict[service]: |
| 214 | return True |
| 215 | return False |
| 216 | |
Ian Wienand | 98c35f3 | 2013-07-23 20:34:23 +1000 | [diff] [blame] | 217 | |
Attila Fazekas | f86fa31 | 2013-07-30 19:56:39 +0200 | [diff] [blame] | 218 | at_exit_set = set() |
| 219 | |
| 220 | |
| 221 | def validate_tearDownClass(): |
| 222 | if at_exit_set: |
Sean Dague | eb1523b | 2014-03-10 10:17:44 -0400 | [diff] [blame] | 223 | LOG.error( |
| 224 | "tearDownClass does not call the super's " |
| 225 | "tearDownClass in these classes: \n" |
| 226 | + str(at_exit_set)) |
| 227 | |
Attila Fazekas | f86fa31 | 2013-07-30 19:56:39 +0200 | [diff] [blame] | 228 | |
| 229 | atexit.register(validate_tearDownClass) |
| 230 | |
Attila Fazekas | 5394332 | 2014-02-10 16:07:34 +0100 | [diff] [blame] | 231 | if sys.version_info >= (2, 7): |
| 232 | class BaseDeps(testtools.TestCase, |
Attila Fazekas | dc21642 | 2013-01-29 15:12:14 +0100 | [diff] [blame] | 233 | testtools.testcase.WithAttributes, |
| 234 | testresources.ResourcedTestCase): |
Attila Fazekas | 5394332 | 2014-02-10 16:07:34 +0100 | [diff] [blame] | 235 | pass |
| 236 | else: |
| 237 | # Define asserts for py26 |
| 238 | import unittest2 |
| 239 | |
| 240 | class BaseDeps(testtools.TestCase, |
| 241 | testtools.testcase.WithAttributes, |
| 242 | testresources.ResourcedTestCase, |
| 243 | unittest2.TestCase): |
| 244 | pass |
| 245 | |
| 246 | |
| 247 | class BaseTestCase(BaseDeps): |
Attila Fazekas | c43fec8 | 2013-04-09 23:17:52 +0200 | [diff] [blame] | 248 | |
Attila Fazekas | f86fa31 | 2013-07-30 19:56:39 +0200 | [diff] [blame] | 249 | setUpClassCalled = False |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 250 | _service = None |
Attila Fazekas | f86fa31 | 2013-07-30 19:56:39 +0200 | [diff] [blame] | 251 | |
Matthew Treinish | 9f756a0 | 2014-01-15 10:26:07 -0500 | [diff] [blame] | 252 | network_resources = {} |
| 253 | |
Pavel Sedlák | 1053bd3 | 2013-04-16 16:47:40 +0200 | [diff] [blame] | 254 | @classmethod |
| 255 | def setUpClass(cls): |
| 256 | if hasattr(super(BaseTestCase, cls), 'setUpClass'): |
| 257 | super(BaseTestCase, cls).setUpClass() |
Attila Fazekas | f86fa31 | 2013-07-30 19:56:39 +0200 | [diff] [blame] | 258 | cls.setUpClassCalled = True |
Pavel Sedlák | 1053bd3 | 2013-04-16 16:47:40 +0200 | [diff] [blame] | 259 | |
Attila Fazekas | f86fa31 | 2013-07-30 19:56:39 +0200 | [diff] [blame] | 260 | @classmethod |
| 261 | def tearDownClass(cls): |
Attila Fazekas | 5d27530 | 2013-08-29 12:35:12 +0200 | [diff] [blame] | 262 | at_exit_set.discard(cls) |
Attila Fazekas | f86fa31 | 2013-07-30 19:56:39 +0200 | [diff] [blame] | 263 | if hasattr(super(BaseTestCase, cls), 'tearDownClass'): |
| 264 | super(BaseTestCase, cls).tearDownClass() |
| 265 | |
| 266 | def setUp(self): |
| 267 | super(BaseTestCase, self).setUp() |
| 268 | if not self.setUpClassCalled: |
| 269 | raise RuntimeError("setUpClass does not calls the super's" |
| 270 | "setUpClass in the " |
| 271 | + self.__class__.__name__) |
| 272 | at_exit_set.add(self.__class__) |
Matthew Treinish | 78561ad | 2013-07-26 11:41:56 -0400 | [diff] [blame] | 273 | test_timeout = os.environ.get('OS_TEST_TIMEOUT', 0) |
| 274 | try: |
| 275 | test_timeout = int(test_timeout) |
| 276 | except ValueError: |
| 277 | test_timeout = 0 |
| 278 | if test_timeout > 0: |
Attila Fazekas | f86fa31 | 2013-07-30 19:56:39 +0200 | [diff] [blame] | 279 | self.useFixture(fixtures.Timeout(test_timeout, gentle=True)) |
Matthew Treinish | 78561ad | 2013-07-26 11:41:56 -0400 | [diff] [blame] | 280 | |
| 281 | if (os.environ.get('OS_STDOUT_CAPTURE') == 'True' or |
| 282 | os.environ.get('OS_STDOUT_CAPTURE') == '1'): |
Attila Fazekas | f86fa31 | 2013-07-30 19:56:39 +0200 | [diff] [blame] | 283 | stdout = self.useFixture(fixtures.StringStream('stdout')).stream |
| 284 | self.useFixture(fixtures.MonkeyPatch('sys.stdout', stdout)) |
Matthew Treinish | 78561ad | 2013-07-26 11:41:56 -0400 | [diff] [blame] | 285 | if (os.environ.get('OS_STDERR_CAPTURE') == 'True' or |
| 286 | os.environ.get('OS_STDERR_CAPTURE') == '1'): |
Attila Fazekas | f86fa31 | 2013-07-30 19:56:39 +0200 | [diff] [blame] | 287 | stderr = self.useFixture(fixtures.StringStream('stderr')).stream |
| 288 | self.useFixture(fixtures.MonkeyPatch('sys.stderr', stderr)) |
Attila Fazekas | 3138807 | 2013-08-15 08:58:07 +0200 | [diff] [blame] | 289 | if (os.environ.get('OS_LOG_CAPTURE') != 'False' and |
| 290 | os.environ.get('OS_LOG_CAPTURE') != '0'): |
| 291 | log_format = '%(asctime)-15s %(message)s' |
| 292 | self.useFixture(fixtures.LoggerFixture(nuke_handlers=False, |
Attila Fazekas | 90445be | 2013-10-24 16:46:03 +0200 | [diff] [blame] | 293 | format=log_format, |
| 294 | level=None)) |
Matthew Treinish | 78561ad | 2013-07-26 11:41:56 -0400 | [diff] [blame] | 295 | |
Matthew Treinish | 3e04685 | 2013-07-23 16:00:24 -0400 | [diff] [blame] | 296 | @classmethod |
Matthew Treinish | 8004e8c | 2014-01-27 23:03:14 +0000 | [diff] [blame] | 297 | def get_client_manager(cls, interface=None): |
Ryan Hsu | 6c4bb3d | 2013-10-21 21:22:50 -0700 | [diff] [blame] | 298 | """ |
tanlin | 4956a64 | 2014-02-13 16:52:11 +0800 | [diff] [blame] | 299 | Returns an OpenStack client manager |
Ryan Hsu | 6c4bb3d | 2013-10-21 21:22:50 -0700 | [diff] [blame] | 300 | """ |
Matthew Treinish | 9f756a0 | 2014-01-15 10:26:07 -0500 | [diff] [blame] | 301 | cls.isolated_creds = isolated_creds.IsolatedCreds( |
| 302 | cls.__name__, network_resources=cls.network_resources) |
Ryan Hsu | 6c4bb3d | 2013-10-21 21:22:50 -0700 | [diff] [blame] | 303 | |
| 304 | force_tenant_isolation = getattr(cls, 'force_tenant_isolation', None) |
Matthew Treinish | bc0e03e | 2014-01-30 16:51:06 +0000 | [diff] [blame] | 305 | if (CONF.compute.allow_tenant_isolation or |
Ryan Hsu | 6c4bb3d | 2013-10-21 21:22:50 -0700 | [diff] [blame] | 306 | force_tenant_isolation): |
| 307 | creds = cls.isolated_creds.get_primary_creds() |
| 308 | username, tenant_name, password = creds |
Matthew Treinish | 8004e8c | 2014-01-27 23:03:14 +0000 | [diff] [blame] | 309 | if getattr(cls, '_interface', None): |
| 310 | os = clients.Manager(username=username, |
| 311 | password=password, |
| 312 | tenant_name=tenant_name, |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 313 | interface=cls._interface, |
| 314 | service=cls._service) |
Matthew Treinish | 8004e8c | 2014-01-27 23:03:14 +0000 | [diff] [blame] | 315 | elif interface: |
| 316 | os = clients.Manager(username=username, |
| 317 | password=password, |
| 318 | tenant_name=tenant_name, |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 319 | interface=interface, |
| 320 | service=cls._service) |
Matthew Treinish | 8004e8c | 2014-01-27 23:03:14 +0000 | [diff] [blame] | 321 | else: |
| 322 | os = clients.Manager(username=username, |
| 323 | password=password, |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 324 | tenant_name=tenant_name, |
| 325 | service=cls._service) |
Ryan Hsu | 6c4bb3d | 2013-10-21 21:22:50 -0700 | [diff] [blame] | 326 | else: |
Matthew Treinish | 8004e8c | 2014-01-27 23:03:14 +0000 | [diff] [blame] | 327 | if getattr(cls, '_interface', None): |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 328 | os = clients.Manager(interface=cls._interface, |
| 329 | service=cls._service) |
Matthew Treinish | 8004e8c | 2014-01-27 23:03:14 +0000 | [diff] [blame] | 330 | elif interface: |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 331 | os = clients.Manager(interface=interface, service=cls._service) |
Matthew Treinish | 8004e8c | 2014-01-27 23:03:14 +0000 | [diff] [blame] | 332 | else: |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 333 | os = clients.Manager(service=cls._service) |
Ryan Hsu | 6c4bb3d | 2013-10-21 21:22:50 -0700 | [diff] [blame] | 334 | return os |
| 335 | |
| 336 | @classmethod |
| 337 | def clear_isolated_creds(cls): |
| 338 | """ |
| 339 | Clears isolated creds if set |
| 340 | """ |
| 341 | if getattr(cls, 'isolated_creds'): |
| 342 | cls.isolated_creds.clear_isolated_creds() |
| 343 | |
| 344 | @classmethod |
Matthew Treinish | 3e04685 | 2013-07-23 16:00:24 -0400 | [diff] [blame] | 345 | def _get_identity_admin_client(cls): |
| 346 | """ |
| 347 | Returns an instance of the Identity Admin API client |
| 348 | """ |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 349 | os = clients.AdminManager(interface=cls._interface, |
| 350 | service=cls._service) |
Matthew Treinish | 3e04685 | 2013-07-23 16:00:24 -0400 | [diff] [blame] | 351 | admin_client = os.identity_client |
| 352 | return admin_client |
| 353 | |
| 354 | @classmethod |
Matthew Treinish | 9f756a0 | 2014-01-15 10:26:07 -0500 | [diff] [blame] | 355 | def set_network_resources(self, network=False, router=False, subnet=False, |
| 356 | dhcp=False): |
| 357 | """Specify which network resources should be created |
| 358 | |
| 359 | @param network |
| 360 | @param router |
| 361 | @param subnet |
| 362 | @param dhcp |
| 363 | """ |
Salvatore Orlando | 5a33724 | 2014-01-15 22:49:22 +0000 | [diff] [blame] | 364 | # network resources should be set only once from callers |
| 365 | # in order to ensure that even if it's called multiple times in |
| 366 | # a chain of overloaded methods, the attribute is set only |
| 367 | # in the leaf class |
| 368 | if not self.network_resources: |
| 369 | self.network_resources = { |
| 370 | 'network': network, |
| 371 | 'router': router, |
| 372 | 'subnet': subnet, |
| 373 | 'dhcp': dhcp} |
Matthew Treinish | 9f756a0 | 2014-01-15 10:26:07 -0500 | [diff] [blame] | 374 | |
Mark Maglana | 5885eb3 | 2014-02-28 10:57:34 -0800 | [diff] [blame] | 375 | def assertEmpty(self, list, msg=None): |
| 376 | self.assertTrue(len(list) == 0, msg) |
| 377 | |
| 378 | def assertNotEmpty(self, list, msg=None): |
| 379 | self.assertTrue(len(list) > 0, msg) |
| 380 | |
Attila Fazekas | dc21642 | 2013-01-29 15:12:14 +0100 | [diff] [blame] | 381 | |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 382 | class NegativeAutoTest(BaseTestCase): |
| 383 | |
| 384 | _resources = {} |
| 385 | |
| 386 | @classmethod |
| 387 | def setUpClass(cls): |
| 388 | super(NegativeAutoTest, cls).setUpClass() |
| 389 | os = cls.get_client_manager() |
| 390 | cls.client = os.negative_client |
Marc Koderer | f857fda | 2014-03-05 15:58:00 +0100 | [diff] [blame] | 391 | os_admin = clients.AdminManager(interface=cls._interface, |
| 392 | service=cls._service) |
| 393 | cls.admin_client = os_admin.negative_client |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 394 | |
| 395 | @staticmethod |
| 396 | def load_schema(file): |
| 397 | """ |
| 398 | Loads a schema from a file on a specified location. |
| 399 | |
| 400 | :param file: the file name |
| 401 | """ |
| 402 | #NOTE(mkoderer): must be extended for xml support |
| 403 | fn = os.path.join( |
| 404 | os.path.abspath(os.path.dirname(os.path.dirname(__file__))), |
| 405 | "etc", "schemas", file) |
| 406 | LOG.debug("Open schema file: %s" % (fn)) |
| 407 | return json.load(open(fn)) |
| 408 | |
| 409 | @staticmethod |
| 410 | def generate_scenario(description_file): |
| 411 | """ |
| 412 | Generates the test scenario list for a given description. |
| 413 | |
| 414 | :param description: A dictionary with the following entries: |
| 415 | name (required) name for the api |
| 416 | http-method (required) one of HEAD,GET,PUT,POST,PATCH,DELETE |
| 417 | url (required) the url to be appended to the catalog url with '%s' |
| 418 | for each resource mentioned |
| 419 | resources: (optional) A list of resource names such as "server", |
| 420 | "flavor", etc. with an element for each '%s' in the url. This |
| 421 | method will call self.get_resource for each element when |
| 422 | constructing the positive test case template so negative |
| 423 | subclasses are expected to return valid resource ids when |
| 424 | appropriate. |
| 425 | json-schema (optional) A valid json schema that will be used to |
| 426 | create invalid data for the api calls. For "GET" and "HEAD", |
| 427 | the data is used to generate query strings appended to the url, |
| 428 | otherwise for the body of the http call. |
| 429 | """ |
| 430 | description = NegativeAutoTest.load_schema(description_file) |
| 431 | LOG.debug(description) |
Marc Koderer | 9698a4f | 2014-03-13 08:37:39 +0100 | [diff] [blame] | 432 | |
| 433 | # NOTE(mkoderer): since this will be executed on import level the |
| 434 | # config doesn't have to be in place (e.g. for the pep8 job). |
| 435 | # In this case simply return. |
| 436 | try: |
| 437 | generator = importutils.import_class( |
| 438 | CONF.negative.test_generator)() |
| 439 | except cfg.ConfigFilesNotFoundError: |
| 440 | LOG.critical( |
| 441 | "Tempest config not found. Test scenarios aren't created") |
| 442 | return |
Marc Koderer | 6ee82dc | 2014-02-17 10:26:29 +0100 | [diff] [blame] | 443 | generator.validate_schema(description) |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 444 | schema = description.get("json-schema", None) |
| 445 | resources = description.get("resources", []) |
| 446 | scenario_list = [] |
Marc Koderer | 424c84f | 2014-02-06 17:02:19 +0100 | [diff] [blame] | 447 | expected_result = None |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 448 | for resource in resources: |
Marc Koderer | 424c84f | 2014-02-06 17:02:19 +0100 | [diff] [blame] | 449 | if isinstance(resource, dict): |
| 450 | expected_result = resource['expected_result'] |
| 451 | resource = resource['name'] |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 452 | LOG.debug("Add resource to test %s" % resource) |
| 453 | scn_name = "inv_res_%s" % (resource) |
| 454 | scenario_list.append((scn_name, {"resource": (resource, |
Marc Koderer | 424c84f | 2014-02-06 17:02:19 +0100 | [diff] [blame] | 455 | str(uuid.uuid4())), |
| 456 | "expected_result": expected_result |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 457 | })) |
| 458 | if schema is not None: |
Marc Koderer | f857fda | 2014-03-05 15:58:00 +0100 | [diff] [blame] | 459 | for name, schema, expected_result in generator.generate(schema): |
| 460 | if (expected_result is None and |
| 461 | "default_result_code" in description): |
| 462 | expected_result = description["default_result_code"] |
| 463 | scenario_list.append((name, |
| 464 | {"schema": schema, |
| 465 | "expected_result": expected_result})) |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 466 | LOG.debug(scenario_list) |
| 467 | return scenario_list |
| 468 | |
| 469 | def execute(self, description_file): |
| 470 | """ |
| 471 | Execute a http call on an api that are expected to |
| 472 | result in client errors. First it uses invalid resources that are part |
| 473 | of the url, and then invalid data for queries and http request bodies. |
| 474 | |
| 475 | :param description: A dictionary with the following entries: |
| 476 | name (required) name for the api |
| 477 | http-method (required) one of HEAD,GET,PUT,POST,PATCH,DELETE |
| 478 | url (required) the url to be appended to the catalog url with '%s' |
| 479 | for each resource mentioned |
| 480 | resources: (optional) A list of resource names such as "server", |
| 481 | "flavor", etc. with an element for each '%s' in the url. This |
| 482 | method will call self.get_resource for each element when |
| 483 | constructing the positive test case template so negative |
| 484 | subclasses are expected to return valid resource ids when |
| 485 | appropriate. |
| 486 | json-schema (optional) A valid json schema that will be used to |
| 487 | create invalid data for the api calls. For "GET" and "HEAD", |
| 488 | the data is used to generate query strings appended to the url, |
| 489 | otherwise for the body of the http call. |
| 490 | |
| 491 | """ |
| 492 | description = NegativeAutoTest.load_schema(description_file) |
| 493 | LOG.info("Executing %s" % description["name"]) |
| 494 | LOG.debug(description) |
| 495 | method = description["http-method"] |
| 496 | url = description["url"] |
| 497 | |
| 498 | resources = [self.get_resource(r) for |
| 499 | r in description.get("resources", [])] |
| 500 | |
| 501 | if hasattr(self, "resource"): |
| 502 | # Note(mkoderer): The resources list already contains an invalid |
| 503 | # entry (see get_resource). |
| 504 | # We just send a valid json-schema with it |
Marc Koderer | 6ee82dc | 2014-02-17 10:26:29 +0100 | [diff] [blame] | 505 | valid_schema = None |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 506 | schema = description.get("json-schema", None) |
| 507 | if schema: |
Marc Koderer | 6ee82dc | 2014-02-17 10:26:29 +0100 | [diff] [blame] | 508 | valid_schema = \ |
| 509 | valid.ValidTestGenerator().generate_valid(schema) |
| 510 | new_url, body = self._http_arguments(valid_schema, url, method) |
Marc Koderer | 424c84f | 2014-02-06 17:02:19 +0100 | [diff] [blame] | 511 | elif hasattr(self, "schema"): |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 512 | new_url, body = self._http_arguments(self.schema, url, method) |
Marc Koderer | 1c247c8 | 2014-03-20 08:24:38 +0100 | [diff] [blame^] | 513 | else: |
| 514 | raise Exception("testscenarios are not active. Please make sure " |
| 515 | "that your test runner supports the load_tests " |
| 516 | "mechanism") |
Marc Koderer | 424c84f | 2014-02-06 17:02:19 +0100 | [diff] [blame] | 517 | |
Marc Koderer | f857fda | 2014-03-05 15:58:00 +0100 | [diff] [blame] | 518 | if "admin_client" in description and description["admin_client"]: |
| 519 | client = self.admin_client |
| 520 | else: |
| 521 | client = self.client |
| 522 | resp, resp_body = client.send_request(method, new_url, |
| 523 | resources, body=body) |
Marc Koderer | 424c84f | 2014-02-06 17:02:19 +0100 | [diff] [blame] | 524 | self._check_negative_response(resp.status, resp_body) |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 525 | |
| 526 | def _http_arguments(self, json_dict, url, method): |
| 527 | LOG.debug("dict: %s url: %s method: %s" % (json_dict, url, method)) |
| 528 | if not json_dict: |
| 529 | return url, None |
| 530 | elif method in ["GET", "HEAD", "PUT", "DELETE"]: |
| 531 | return "%s?%s" % (url, urllib.urlencode(json_dict)), None |
| 532 | else: |
| 533 | return url, json.dumps(json_dict) |
| 534 | |
| 535 | def _check_negative_response(self, result, body): |
| 536 | expected_result = getattr(self, "expected_result", None) |
| 537 | self.assertTrue(result >= 400 and result < 500 and result != 413, |
| 538 | "Expected client error, got %s:%s" % |
| 539 | (result, body)) |
| 540 | self.assertTrue(expected_result is None or expected_result == result, |
| 541 | "Expected %s, got %s:%s" % |
| 542 | (expected_result, result, body)) |
| 543 | |
| 544 | @classmethod |
| 545 | def set_resource(cls, name, resource): |
| 546 | """ |
| 547 | This function can be used in setUpClass context to register a resoruce |
| 548 | for a test. |
| 549 | |
| 550 | :param name: The name of the kind of resource such as "flavor", "role", |
| 551 | etc. |
| 552 | :resource: The id of the resource |
| 553 | """ |
| 554 | cls._resources[name] = resource |
| 555 | |
| 556 | def get_resource(self, name): |
| 557 | """ |
| 558 | Return a valid uuid for a type of resource. If a real resource is |
| 559 | needed as part of a url then this method should return one. Otherwise |
| 560 | it can return None. |
| 561 | |
| 562 | :param name: The name of the kind of resource such as "flavor", "role", |
| 563 | etc. |
| 564 | """ |
Marc Koderer | 424c84f | 2014-02-06 17:02:19 +0100 | [diff] [blame] | 565 | if isinstance(name, dict): |
| 566 | name = name['name'] |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 567 | if hasattr(self, "resource") and self.resource[0] == name: |
| 568 | LOG.debug("Return invalid resource (%s) value: %s" % |
| 569 | (self.resource[0], self.resource[1])) |
| 570 | return self.resource[1] |
| 571 | if name in self._resources: |
| 572 | return self._resources[name] |
| 573 | return None |
| 574 | |
| 575 | |
Sean Dague | 35a7caf | 2013-05-10 10:38:22 -0400 | [diff] [blame] | 576 | def call_until_true(func, duration, sleep_for): |
| 577 | """ |
| 578 | Call the given function until it returns True (and return True) or |
| 579 | until the specified duration (in seconds) elapses (and return |
| 580 | False). |
| 581 | |
| 582 | :param func: A zero argument callable that returns True on success. |
| 583 | :param duration: The number of seconds for which to attempt a |
| 584 | successful call of the function. |
| 585 | :param sleep_for: The number of seconds to sleep after an unsuccessful |
| 586 | invocation of the function. |
| 587 | """ |
| 588 | now = time.time() |
| 589 | timeout = now + duration |
| 590 | while now < timeout: |
| 591 | if func(): |
| 592 | return True |
| 593 | LOG.debug("Sleeping for %d seconds", sleep_for) |
| 594 | time.sleep(sleep_for) |
| 595 | now = time.time() |
| 596 | return False |