blob: 177477af3dfb0eeba704e50191914270a8278dda [file] [log] [blame]
Steve Baker450aa7f2014-08-25 10:37:27 +12001# Licensed under the Apache License, Version 2.0 (the "License"); you may
2# not use this file except in compliance with the License. You may obtain
3# a copy of the License at
4#
5# http://www.apache.org/licenses/LICENSE-2.0
6#
7# Unless required by applicable law or agreed to in writing, software
8# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
9# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
10# License for the specific language governing permissions and limitations
11# under the License.
12
Steve Baker450aa7f2014-08-25 10:37:27 +120013import random
14import re
Steve Baker450aa7f2014-08-25 10:37:27 +120015import subprocess
Steve Baker450aa7f2014-08-25 10:37:27 +120016import time
17
Pavlo Shchelokovskyy60e0ecd2014-12-14 22:17:21 +020018import fixtures
Steve Baker450aa7f2014-08-25 10:37:27 +120019from heatclient import exc as heat_exceptions
Thomas Hervedb36c092017-03-23 11:20:14 +010020from keystoneauth1 import exceptions as kc_exceptions
Mark Vanderwiel6d8e0862015-10-15 12:51:07 -050021from neutronclient.common import exceptions as network_exceptions
Steve Baker24641292015-03-13 10:47:50 +130022from oslo_log import log as logging
Jens Rosenboom4f069fb2015-02-18 14:19:07 +010023from oslo_utils import timeutils
Pavlo Shchelokovskyy60e0ecd2014-12-14 22:17:21 +020024import testscenarios
25import testtools
Takashi Kajinamidfb97392022-05-10 00:51:14 +090026import urllib
Steve Baker450aa7f2014-08-25 10:37:27 +120027
rabid2916d02017-09-22 18:19:24 +053028from heat_tempest_plugin.common import exceptions
29from heat_tempest_plugin.common import remote_client
rabid2916d02017-09-22 18:19:24 +053030from heat_tempest_plugin.services import clients
Zane Bitterb4acd962018-01-18 12:08:23 -050031from tempest import config
Steve Baker450aa7f2014-08-25 10:37:27 +120032
33LOG = logging.getLogger(__name__)
Angus Salkeld24043702014-11-21 08:49:26 +100034_LOG_FORMAT = "%(levelname)8s [%(name)s] %(message)s"
rabi82b71282018-03-08 11:08:36 +053035_resource_types = None
Steve Baker450aa7f2014-08-25 10:37:27 +120036
37
Angus Salkeld08514ad2015-02-06 10:08:31 +100038def call_until_true(duration, sleep_for, func, *args, **kwargs):
Peter Razumovskyf0ac9582015-09-24 16:49:03 +030039 """Call the function until it returns True or the duration elapsed.
40
Steve Baker450aa7f2014-08-25 10:37:27 +120041 Call the given function until it returns True (and return True) or
42 until the specified duration (in seconds) elapses (and return
43 False).
44
45 :param func: A zero argument callable that returns True on success.
46 :param duration: The number of seconds for which to attempt a
47 successful call of the function.
48 :param sleep_for: The number of seconds to sleep after an unsuccessful
49 invocation of the function.
50 """
51 now = time.time()
52 timeout = now + duration
53 while now < timeout:
Angus Salkeld08514ad2015-02-06 10:08:31 +100054 if func(*args, **kwargs):
Steve Baker450aa7f2014-08-25 10:37:27 +120055 return True
56 LOG.debug("Sleeping for %d seconds", sleep_for)
57 time.sleep(sleep_for)
58 now = time.time()
59 return False
60
61
rabi32201342017-11-17 22:57:58 +053062def isotime(at):
63 if at is None:
64 return None
65 return at.strftime('%Y-%m-%dT%H:%M:%SZ')
66
67
Steve Baker450aa7f2014-08-25 10:37:27 +120068def rand_name(name=''):
Takashi Kajinamidfb97392022-05-10 00:51:14 +090069 randbits = str(random.randint(1, 0x7fffffff))
Steve Baker450aa7f2014-08-25 10:37:27 +120070 if name:
71 return name + '-' + randbits
72 else:
73 return randbits
74
75
Zane Bitterf407e102017-10-05 14:19:32 -040076def requires_convergence(test_method):
77 '''Decorator for convergence-only tests.
78
79 The decorated test will be skipped when convergence is disabled.
80 '''
rabif89752b2017-11-18 22:14:30 +053081 plugin = config.CONF.heat_plugin
rabi94a520a2017-11-17 22:49:17 +053082 convergence_enabled = plugin.convergence_engine_enabled
Zane Bitterf407e102017-10-05 14:19:32 -040083 skipper = testtools.skipUnless(convergence_enabled,
84 "Convergence-only tests are disabled")
85 return skipper(test_method)
86
87
rabi82b71282018-03-08 11:08:36 +053088def requires_resource_type(resource_type):
89 '''Decorator for tests requiring a resource type.
90
91 The decorated test will be skipped when the resource type is not available.
92 '''
93 def decorator(test_method):
94 conf = getattr(config.CONF, 'heat_plugin', None)
95 if not conf or conf.auth_url is None:
96 return test_method
97
98 global _resource_types
99 if not _resource_types:
100 manager = clients.ClientManager(conf)
101 obj_rtypes = manager.orchestration_client.resource_types.list()
102 _resource_types = list(t.resource_type for t in obj_rtypes)
103 rtype_available = resource_type and resource_type in _resource_types
104 skipper = testtools.skipUnless(
105 rtype_available,
106 "%s resource type not available, skipping test." % resource_type)
107 return skipper(test_method)
108 return decorator
109
110
Takashi Kajinami1e6b3882022-08-21 11:37:20 +0900111def requires_service(service):
112 '''Decorator for tests requiring a specific service being available.
113
114 The decorated test will be skipped when a service is not available. This
115 based on the [service_available] options implemented in tempest
116 '''
117 def decorator(test_method):
118 if not getattr(config.CONF.service_available, service, True):
119 skipper = testtools.skip(
120 "%s service not available, skipping test." % service)
121 return skipper(test_method)
122 else:
123 return test_method
124 return decorator
125
126
Rabi Mishrad6b25352018-10-17 13:11:05 +0530127def requires_service_type(service_type):
128 '''Decorator for tests requiring a specific service being available.
129
130 The decorated test will be skipped when a service is not available.
131 '''
132 def decorator(test_method):
133 conf = getattr(config.CONF, 'heat_plugin', None)
134 if not conf or conf.auth_url is None:
135 return test_method
136
137 manager = clients.ClientManager(conf)
138 try:
139 manager.identity_client.get_endpoint_url(
140 service_type, conf.region, conf.endpoint_type)
141 except kc_exceptions.EndpointNotFound:
142 skipper = testtools.skip(
Takashi Kajinami1e6b3882022-08-21 11:37:20 +0900143 "%s service type not available, skipping test." % service_type)
Rabi Mishrad6b25352018-10-17 13:11:05 +0530144 return skipper(test_method)
145 else:
146 return test_method
147 return decorator
148
149
Rabi Mishra144bdc62019-01-10 17:00:57 +0530150def _check_require(group, feature, test_method):
151 features_group = getattr(config.CONF, group, None)
152 if not features_group:
153 return test_method
154 feature_enabled = features_group.get(feature, True)
155 skipper = testtools.skipUnless(feature_enabled,
156 "%s - Feature not enabled." % feature)
157 return skipper(test_method)
158
159
rabi876449a2018-03-15 21:56:49 +0530160def requires_feature(feature):
161 '''Decorator for tests requring specific feature.
162
163 The decorated test will be skipped when a specific feature is disabled.
164 '''
165 def decorator(test_method):
Rabi Mishra144bdc62019-01-10 17:00:57 +0530166 return _check_require('heat_features_enabled', feature, test_method)
167 return decorator
168
169
170def requires_service_feature(service, feature):
Takashi Kajinami70e516a2024-01-20 18:56:19 +0900171 '''Decorator for tests requring specific service feature
Rabi Mishra144bdc62019-01-10 17:00:57 +0530172
173 The decorated test will be skipped when a specific feature is disabled.
174 '''
175 def decorator(test_method):
176 group = service + '_feature_enabled'
177 return _check_require(group, feature, test_method)
rabi876449a2018-03-15 21:56:49 +0530178 return decorator
179
180
Andrea Frittolid908bef2018-02-22 11:29:53 +0000181class HeatIntegrationTest(testtools.testcase.WithAttributes,
182 testscenarios.WithScenarios,
Angus Salkeld95f65a22014-11-24 12:38:30 +1000183 testtools.TestCase):
Steve Baker450aa7f2014-08-25 10:37:27 +1200184
185 def setUp(self):
186 super(HeatIntegrationTest, self).setUp()
187
Takashi Kajinamic4b871a2022-07-04 11:42:06 +0900188 if not config.CONF.service_available.heat:
189 raise self.skipException("Heat is not available")
190
rabif89752b2017-11-18 22:14:30 +0530191 self.conf = config.CONF.heat_plugin
Steve Baker450aa7f2014-08-25 10:37:27 +1200192
193 self.assertIsNotNone(self.conf.auth_url,
194 'No auth_url configured')
195 self.assertIsNotNone(self.conf.username,
196 'No username configured')
197 self.assertIsNotNone(self.conf.password,
198 'No password configured')
rabifd98a472016-05-24 10:18:33 +0530199 self.setup_clients(self.conf)
200 self.useFixture(fixtures.FakeLogger(format=_LOG_FORMAT))
rabifd98a472016-05-24 10:18:33 +0530201 if self.conf.disable_ssl_certificate_validation:
202 self.verify_cert = False
203 else:
204 self.verify_cert = self.conf.ca_file or True
Steve Baker450aa7f2014-08-25 10:37:27 +1200205
Steve Bakerb752e912016-08-01 22:05:37 +0000206 def setup_clients(self, conf, admin_credentials=False):
207 self.manager = clients.ClientManager(conf, admin_credentials)
Steve Baker450aa7f2014-08-25 10:37:27 +1200208 self.identity_client = self.manager.identity_client
209 self.orchestration_client = self.manager.orchestration_client
210 self.compute_client = self.manager.compute_client
211 self.network_client = self.manager.network_client
212 self.volume_client = self.manager.volume_client
Angus Salkeld4408da32015-02-03 18:53:30 +1000213 self.object_client = self.manager.object_client
rabid69f0312017-10-26 14:52:52 +0530214 self.metric_client = self.manager.metric_client
rabifd98a472016-05-24 10:18:33 +0530215
216 self.client = self.orchestration_client
217
218 def setup_clients_for_admin(self):
Steve Bakerb752e912016-08-01 22:05:37 +0000219 self.setup_clients(self.conf, True)
Steve Baker450aa7f2014-08-25 10:37:27 +1200220
Steve Baker450aa7f2014-08-25 10:37:27 +1200221 def get_remote_client(self, server_or_ip, username, private_key=None):
Takashi Kajinamidfb97392022-05-10 00:51:14 +0900222 if isinstance(server_or_ip, str):
Steve Baker450aa7f2014-08-25 10:37:27 +1200223 ip = server_or_ip
224 else:
225 network_name_for_ssh = self.conf.network_for_ssh
226 ip = server_or_ip.networks[network_name_for_ssh][0]
227 if private_key is None:
228 private_key = self.keypair.private_key
229 linux_client = remote_client.RemoteClient(ip, username,
230 pkey=private_key,
231 conf=self.conf)
232 try:
233 linux_client.validate_authentication()
234 except exceptions.SSHTimeout:
liyi09461f72017-03-21 12:17:51 +0800235 LOG.exception('ssh connection to %s failed', ip)
Steve Baker450aa7f2014-08-25 10:37:27 +1200236 raise
237
238 return linux_client
239
Anastasia Kuznetsova3e0ab4d2015-03-06 18:10:13 +0400240 def check_connectivity(self, check_ip):
241 def try_connect(ip):
242 try:
Sirushti Murugesan4920fda2015-04-22 00:35:26 +0530243 urllib.request.urlopen('http://%s/' % ip)
Anastasia Kuznetsova3e0ab4d2015-03-06 18:10:13 +0400244 return True
245 except IOError:
246 return False
247
248 timeout = self.conf.connectivity_timeout
249 elapsed_time = 0
250 while not try_connect(check_ip):
251 time.sleep(10)
252 elapsed_time += 10
253 if elapsed_time > timeout:
254 raise exceptions.TimeoutException()
255
Steve Baker450aa7f2014-08-25 10:37:27 +1200256 def _log_console_output(self, servers=None):
257 if not servers:
258 servers = self.compute_client.servers.list()
259 for server in servers:
Pavlo Shchelokovskyy702a5df2021-03-09 14:43:05 +0200260 LOG.info('Server %s', server)
Steve Baker24641292015-03-13 10:47:50 +1300261 LOG.info('Console output for %s', server.id)
262 LOG.info(server.get_console_output())
Steve Baker450aa7f2014-08-25 10:37:27 +1200263
Steve Baker450aa7f2014-08-25 10:37:27 +1200264 def create_keypair(self, client=None, name=None):
265 if client is None:
266 client = self.compute_client
267 if name is None:
268 name = rand_name('heat-keypair')
269 keypair = client.keypairs.create(name)
270 self.assertEqual(keypair.name, name)
271
272 def delete_keypair():
273 keypair.delete()
274
275 self.addCleanup(delete_keypair)
276 return keypair
277
Sergey Krayneva265c132015-02-13 03:51:03 -0500278 def assign_keypair(self):
279 if self.conf.keypair_name:
280 self.keypair = None
281 self.keypair_name = self.conf.keypair_name
282 else:
283 self.keypair = self.create_keypair()
284 self.keypair_name = self.keypair.id
285
Steve Baker450aa7f2014-08-25 10:37:27 +1200286 @classmethod
287 def _stack_rand_name(cls):
288 return rand_name(cls.__name__)
289
Anastasia Kuznetsova673fc432015-03-12 16:41:36 +0400290 def _get_network(self, net_name=None):
291 if net_name is None:
292 net_name = self.conf.fixed_network_name
Steve Baker450aa7f2014-08-25 10:37:27 +1200293 networks = self.network_client.list_networks()
294 for net in networks['networks']:
Anastasia Kuznetsova673fc432015-03-12 16:41:36 +0400295 if net['name'] == net_name:
Steve Baker450aa7f2014-08-25 10:37:27 +1200296 return net
297
Mark Vanderwiel6d8e0862015-10-15 12:51:07 -0500298 def is_network_extension_supported(self, extension_alias):
299 try:
300 self.network_client.show_extension(extension_alias)
301 except network_exceptions.NeutronClientException:
302 return False
303 return True
304
Steve Baker450aa7f2014-08-25 10:37:27 +1200305 @staticmethod
Angus Salkelda89a0282015-07-24 15:47:38 +1000306 def _stack_output(stack, output_key, validate_errors=True):
Steve Baker450aa7f2014-08-25 10:37:27 +1200307 """Return a stack output value for a given key."""
Angus Salkelda89a0282015-07-24 15:47:38 +1000308 value = None
309 for o in stack.outputs:
310 if validate_errors and 'output_error' in o:
311 # scan for errors in the stack output.
312 raise ValueError(
313 'Unexpected output errors in %s : %s' % (
314 output_key, o['output_error']))
315 if o['output_key'] == output_key:
316 value = o['output_value']
317 return value
Steve Baker450aa7f2014-08-25 10:37:27 +1200318
319 def _ping_ip_address(self, ip_address, should_succeed=True):
320 cmd = ['ping', '-c1', '-w1', ip_address]
321
322 def ping():
323 proc = subprocess.Popen(cmd,
324 stdout=subprocess.PIPE,
325 stderr=subprocess.PIPE)
326 proc.wait()
327 return (proc.returncode == 0) == should_succeed
328
329 return call_until_true(
Angus Salkeld08514ad2015-02-06 10:08:31 +1000330 self.conf.build_timeout, 1, ping)
Steve Baker450aa7f2014-08-25 10:37:27 +1200331
Angus Salkelda7500d12015-04-10 15:44:07 +1000332 def _wait_for_all_resource_status(self, stack_identifier,
333 status, failure_pattern='^.*_FAILED$',
334 success_on_not_found=False):
335 for res in self.client.resources.list(stack_identifier):
336 self._wait_for_resource_status(
337 stack_identifier, res.resource_name,
338 status, failure_pattern=failure_pattern,
339 success_on_not_found=success_on_not_found)
340
Steve Baker450aa7f2014-08-25 10:37:27 +1200341 def _wait_for_resource_status(self, stack_identifier, resource_name,
342 status, failure_pattern='^.*_FAILED$',
343 success_on_not_found=False):
344 """Waits for a Resource to reach a given status."""
345 fail_regexp = re.compile(failure_pattern)
346 build_timeout = self.conf.build_timeout
347 build_interval = self.conf.build_interval
348
349 start = timeutils.utcnow()
350 while timeutils.delta_seconds(start,
351 timeutils.utcnow()) < build_timeout:
352 try:
353 res = self.client.resources.get(
354 stack_identifier, resource_name)
355 except heat_exceptions.HTTPNotFound:
356 if success_on_not_found:
357 return
358 # ignore this, as the resource may not have
359 # been created yet
360 else:
361 if res.resource_status == status:
362 return
Sirushti Murugesane5ad25b2015-04-18 23:30:59 +0530363 wait_for_action = status.split('_')[0]
364 resource_action = res.resource_status.split('_')[0]
365 if (resource_action == wait_for_action and
366 fail_regexp.search(res.resource_status)):
Steve Baker450aa7f2014-08-25 10:37:27 +1200367 raise exceptions.StackResourceBuildErrorException(
368 resource_name=res.resource_name,
369 stack_identifier=stack_identifier,
370 resource_status=res.resource_status,
371 resource_status_reason=res.resource_status_reason)
372 time.sleep(build_interval)
373
374 message = ('Resource %s failed to reach %s status within '
375 'the required time (%s s).' %
Anastasia Kuznetsova9a745572015-03-04 13:19:15 +0400376 (resource_name, status, build_timeout))
Steve Baker450aa7f2014-08-25 10:37:27 +1200377 raise exceptions.TimeoutException(message)
378
Rabi Mishra87be9b42016-02-15 14:15:50 +0530379 def verify_resource_status(self, stack_identifier, resource_name,
380 status='CREATE_COMPLETE'):
381 try:
382 res = self.client.resources.get(stack_identifier, resource_name)
383 except heat_exceptions.HTTPNotFound:
384 return False
385 return res.resource_status == status
386
rabi5eaa4962017-08-31 10:55:13 +0530387 def _verify_status(self, stack, stack_identifier, status,
388 fail_regexp, is_action_cancelled=False):
Sirushti Murugesan13a8a172015-04-14 00:30:05 +0530389 if stack.stack_status == status:
Zane Bitter8a142e32018-07-31 19:40:54 -0400390 if status == 'DELETE_COMPLETE' and stack.deletion_time is None:
Thomas Herve0e8567e2016-09-22 15:07:37 +0200391 # Wait for deleted_time to be filled, so that we have more
392 # confidence the operation is finished.
393 return False
Sirushti Murugesan13a8a172015-04-14 00:30:05 +0530394 else:
395 return True
396
Sirushti Murugesane5ad25b2015-04-18 23:30:59 +0530397 wait_for_action = status.split('_')[0]
398 if (stack.action == wait_for_action and
399 fail_regexp.search(stack.stack_status)):
Zane Bitter8a142e32018-07-31 19:40:54 -0400400 raise exceptions.StackBuildErrorException(
401 stack_identifier=stack_identifier,
402 stack_status=stack.stack_status,
403 stack_status_reason=stack.stack_status_reason)
404
405 return False
Sirushti Murugesan13a8a172015-04-14 00:30:05 +0530406
Steve Baker450aa7f2014-08-25 10:37:27 +1200407 def _wait_for_stack_status(self, stack_identifier, status,
Sergey Kraynev89082a32015-09-04 04:42:33 -0400408 failure_pattern=None,
Rabi Mishra81ca6bc2016-06-16 15:09:20 +0530409 success_on_not_found=False,
410 signal_required=False,
rabi5eaa4962017-08-31 10:55:13 +0530411 resources_to_signal=None,
Pavlo Shchelokovskyy702a5df2021-03-09 14:43:05 +0200412 is_action_cancelled=False,
413 log_nova_servers=False):
Peter Razumovskyf0ac9582015-09-24 16:49:03 +0300414 """Waits for a Stack to reach a given status.
Steve Baker450aa7f2014-08-25 10:37:27 +1200415
416 Note this compares the full $action_$status, e.g
417 CREATE_COMPLETE, not just COMPLETE which is exposed
418 via the status property of Stack in heatclient
419 """
Sergey Kraynev89082a32015-09-04 04:42:33 -0400420 if failure_pattern:
421 fail_regexp = re.compile(failure_pattern)
422 elif 'FAILED' in status:
423 # If we're looking for e.g CREATE_FAILED, COMPLETE is unexpected.
424 fail_regexp = re.compile('^.*_COMPLETE$')
425 else:
426 fail_regexp = re.compile('^.*_FAILED$')
Steve Baker450aa7f2014-08-25 10:37:27 +1200427 build_timeout = self.conf.build_timeout
428 build_interval = self.conf.build_interval
429
430 start = timeutils.utcnow()
431 while timeutils.delta_seconds(start,
432 timeutils.utcnow()) < build_timeout:
433 try:
Sergey Kraynevf07f4712016-02-15 05:24:17 -0500434 stack = self.client.stacks.get(stack_identifier,
435 resolve_outputs=False)
Steve Baker450aa7f2014-08-25 10:37:27 +1200436 except heat_exceptions.HTTPNotFound:
437 if success_on_not_found:
438 return
439 # ignore this, as the resource may not have
440 # been created yet
441 else:
Sirushti Murugesan13a8a172015-04-14 00:30:05 +0530442 if self._verify_status(stack, stack_identifier, status,
rabi5eaa4962017-08-31 10:55:13 +0530443 fail_regexp, is_action_cancelled):
Steve Baker450aa7f2014-08-25 10:37:27 +1200444 return
Rabi Mishra81ca6bc2016-06-16 15:09:20 +0530445 if signal_required:
446 self.signal_resources(resources_to_signal)
Steve Baker450aa7f2014-08-25 10:37:27 +1200447 time.sleep(build_interval)
448
449 message = ('Stack %s failed to reach %s status within '
450 'the required time (%s s).' %
Anastasia Kuznetsova9a745572015-03-04 13:19:15 +0400451 (stack_identifier, status, build_timeout))
Pavlo Shchelokovskyy702a5df2021-03-09 14:43:05 +0200452 LOG.info(
453 f"{message} "
454 f"Event list:"
455 f" {self.client.events.list(stack_identifier, nested_depth=999)}"
456 )
457 if log_nova_servers:
458 self._log_nova_servers(stack_identifier)
Steve Baker450aa7f2014-08-25 10:37:27 +1200459 raise exceptions.TimeoutException(message)
460
Pavlo Shchelokovskyy702a5df2021-03-09 14:43:05 +0200461 def _log_nova_servers(self, stack_identifier):
462 server_resources = self.client.resources.list(
463 stack_identifier,
464 type="OS::Nova::Server",
465 nested_depth=999)
466 servers = list(self.compute_client.servers.get(s.physical_resource_id)
467 for s in server_resources)
468 if not servers:
469 LOG.info("No OS::Nova::Server resources found in stack %s",
470 stack_identifier)
471 return
472 self._log_console_output(servers=servers)
473
Steve Baker450aa7f2014-08-25 10:37:27 +1200474 def _stack_delete(self, stack_identifier):
475 try:
Thomas Herve3eab2942015-10-22 17:29:21 +0200476 self._handle_in_progress(self.client.stacks.delete,
477 stack_identifier)
Steve Baker450aa7f2014-08-25 10:37:27 +1200478 except heat_exceptions.HTTPNotFound:
479 pass
480 self._wait_for_stack_status(
481 stack_identifier, 'DELETE_COMPLETE',
482 success_on_not_found=True)
Steven Hardyc9efd972014-11-20 11:31:55 +0000483
Thomas Herve3eab2942015-10-22 17:29:21 +0200484 def _handle_in_progress(self, fn, *args, **kwargs):
485 build_timeout = self.conf.build_timeout
486 build_interval = self.conf.build_interval
487 start = timeutils.utcnow()
488 while timeutils.delta_seconds(start,
489 timeutils.utcnow()) < build_timeout:
490 try:
491 fn(*args, **kwargs)
492 except heat_exceptions.HTTPConflict as ex:
493 # FIXME(sirushtim): Wait a little for the stack lock to be
494 # released and hopefully, the stack should be usable again.
495 if ex.error['error']['type'] != 'ActionInProgress':
496 raise ex
497
498 time.sleep(build_interval)
499 else:
500 break
501
Steven Hardy23284b62015-10-01 19:03:42 +0100502 def update_stack(self, stack_identifier, template=None, environment=None,
Sabeen Syed277ea692015-02-04 23:30:02 +0000503 files=None, parameters=None, tags=None,
Rakesh H Sa3325d62015-04-04 19:42:29 +0530504 expected_status='UPDATE_COMPLETE',
Steven Hardy23284b62015-10-01 19:03:42 +0100505 disable_rollback=True,
Pavlo Shchelokovskyy702a5df2021-03-09 14:43:05 +0200506 existing=False,
507 log_nova_servers=False):
Steven Hardyc9efd972014-11-20 11:31:55 +0000508 env = environment or {}
509 env_files = files or {}
Sergey Kraynevbcc78df2015-02-27 04:34:32 -0500510 parameters = parameters or {}
Sirushti Murugesan3a195a52015-05-01 09:47:09 +0530511
Thomas Herve3eab2942015-10-22 17:29:21 +0200512 self._handle_in_progress(
513 self.client.stacks.update,
514 stack_id=stack_identifier,
Thomas Herve3eab2942015-10-22 17:29:21 +0200515 template=template,
516 files=env_files,
517 disable_rollback=disable_rollback,
518 parameters=parameters,
519 environment=env,
520 tags=tags,
521 existing=existing)
Sirushti Murugesan3a195a52015-05-01 09:47:09 +0530522
Rakesh H Sa3325d62015-04-04 19:42:29 +0530523 kwargs = {'stack_identifier': stack_identifier,
Pavlo Shchelokovskyy702a5df2021-03-09 14:43:05 +0200524 'status': expected_status,
525 'log_nova_servers': log_nova_servers}
Rakesh H Sa3325d62015-04-04 19:42:29 +0530526 if expected_status in ['ROLLBACK_COMPLETE']:
Rakesh H Sa3325d62015-04-04 19:42:29 +0530527 # To trigger rollback you would intentionally fail the stack
528 # Hence check for rollback failures
529 kwargs['failure_pattern'] = '^ROLLBACK_FAILED$'
530
531 self._wait_for_stack_status(**kwargs)
Steven Hardyc9efd972014-11-20 11:31:55 +0000532
rabi5eaa4962017-08-31 10:55:13 +0530533 def cancel_update_stack(self, stack_identifier, rollback=True,
Oleksii Chuprykovfc2c58f2016-04-29 17:03:17 +0300534 expected_status='ROLLBACK_COMPLETE'):
535
536 stack_name = stack_identifier.split('/')[0]
537
rabi5eaa4962017-08-31 10:55:13 +0530538 if rollback:
539 self.client.actions.cancel_update(stack_name)
540 else:
541 self.client.actions.cancel_without_rollback(stack_name)
Oleksii Chuprykovfc2c58f2016-04-29 17:03:17 +0300542
543 kwargs = {'stack_identifier': stack_identifier,
544 'status': expected_status}
rabi5eaa4962017-08-31 10:55:13 +0530545 if expected_status == 'UPDATE_FAILED':
546 kwargs['is_action_cancelled'] = True
547
Oleksii Chuprykovfc2c58f2016-04-29 17:03:17 +0300548 if expected_status in ['ROLLBACK_COMPLETE']:
549 # To trigger rollback you would intentionally fail the stack
550 # Hence check for rollback failures
551 kwargs['failure_pattern'] = '^ROLLBACK_FAILED$'
552
553 self._wait_for_stack_status(**kwargs)
554
Jason Dunsmoreb5aa9022015-09-09 16:57:04 -0500555 def preview_update_stack(self, stack_identifier, template,
556 environment=None, files=None, parameters=None,
Steven Hardye6de2d62015-12-07 15:59:09 +0000557 tags=None, disable_rollback=True,
558 show_nested=False):
Jason Dunsmoreb5aa9022015-09-09 16:57:04 -0500559 env = environment or {}
560 env_files = files or {}
561 parameters = parameters or {}
Jason Dunsmoreb5aa9022015-09-09 16:57:04 -0500562
563 return self.client.stacks.preview_update(
564 stack_id=stack_identifier,
Jason Dunsmoreb5aa9022015-09-09 16:57:04 -0500565 template=template,
566 files=env_files,
567 disable_rollback=disable_rollback,
568 parameters=parameters,
569 environment=env,
Steven Hardye6de2d62015-12-07 15:59:09 +0000570 tags=tags,
571 show_nested=show_nested
Jason Dunsmoreb5aa9022015-09-09 16:57:04 -0500572 )
573
Steven Hardy03da0742015-03-19 00:13:17 -0400574 def assert_resource_is_a_stack(self, stack_identifier, res_name,
575 wait=False):
576 build_timeout = self.conf.build_timeout
577 build_interval = self.conf.build_interval
578 start = timeutils.utcnow()
579 while timeutils.delta_seconds(start,
580 timeutils.utcnow()) < build_timeout:
581 time.sleep(build_interval)
582 try:
583 nested_identifier = self._get_nested_identifier(
584 stack_identifier, res_name)
585 except Exception:
586 # We may have to wait, if the create is in-progress
587 if wait:
588 time.sleep(build_interval)
589 else:
590 raise
591 else:
592 return nested_identifier
593
594 def _get_nested_identifier(self, stack_identifier, res_name):
Angus Salkeld2bd63a42015-01-07 11:11:29 +1000595 rsrc = self.client.resources.get(stack_identifier, res_name)
596 nested_link = [l for l in rsrc.links if l['rel'] == 'nested']
597 nested_href = nested_link[0]['href']
598 nested_id = nested_href.split('/')[-1]
599 nested_identifier = '/'.join(nested_href.split('/')[-2:])
600 self.assertEqual(rsrc.physical_resource_id, nested_id)
601
Sergey Kraynevf07f4712016-02-15 05:24:17 -0500602 nested_stack = self.client.stacks.get(nested_id, resolve_outputs=False)
Angus Salkeld2bd63a42015-01-07 11:11:29 +1000603 nested_identifier2 = '%s/%s' % (nested_stack.stack_name,
604 nested_stack.id)
605 self.assertEqual(nested_identifier, nested_identifier2)
606 parent_id = stack_identifier.split("/")[-1]
607 self.assertEqual(parent_id, nested_stack.parent)
608 return nested_identifier
609
Rabi Mishra8bcff8a2015-09-21 18:15:04 +0530610 def group_nested_identifier(self, stack_identifier,
611 group_name):
612 # Get the nested stack identifier from a group resource
613 rsrc = self.client.resources.get(stack_identifier, group_name)
614 physical_resource_id = rsrc.physical_resource_id
615
Sergey Kraynevf07f4712016-02-15 05:24:17 -0500616 nested_stack = self.client.stacks.get(physical_resource_id,
617 resolve_outputs=False)
Rabi Mishra8bcff8a2015-09-21 18:15:04 +0530618 nested_identifier = '%s/%s' % (nested_stack.stack_name,
619 nested_stack.id)
620 parent_id = stack_identifier.split("/")[-1]
621 self.assertEqual(parent_id, nested_stack.parent)
622 return nested_identifier
623
624 def list_group_resources(self, stack_identifier,
625 group_name, minimal=True):
626 nested_identifier = self.group_nested_identifier(stack_identifier,
627 group_name)
628 if minimal:
629 return self.list_resources(nested_identifier)
630 return self.client.resources.list(nested_identifier)
631
Steven Hardyc9efd972014-11-20 11:31:55 +0000632 def list_resources(self, stack_identifier):
633 resources = self.client.resources.list(stack_identifier)
634 return dict((r.resource_name, r.resource_type) for r in resources)
Steven Hardyf2c82c02014-11-20 14:02:17 +0000635
Steven Hardyd448dae2016-06-14 14:57:28 +0100636 def get_resource_stack_id(self, r):
637 stack_link = [l for l in r.links if l.get('rel') == 'stack'][0]
638 return stack_link['href'].split("/")[-1]
639
Botond Zoltáne0b7aa12017-03-28 08:42:16 +0200640 def get_physical_resource_id(self, stack_identifier, resource_name):
641 try:
642 resource = self.client.resources.get(
643 stack_identifier, resource_name)
644 return resource.physical_resource_id
645 except Exception:
646 raise Exception('Resource (%s) not found in stack (%s)!' %
647 (stack_identifier, resource_name))
648
649 def get_stack_output(self, stack_identifier, output_key,
650 validate_errors=True):
651 stack = self.client.stacks.get(stack_identifier)
652 return self._stack_output(stack, output_key, validate_errors)
653
Rabi Mishra81ca6bc2016-06-16 15:09:20 +0530654 def check_input_values(self, group_resources, key, value):
655 # Check inputs for deployment and derived config
656 for r in group_resources:
657 d = self.client.software_deployments.get(
658 r.physical_resource_id)
659 self.assertEqual({key: value}, d.input_values)
660 c = self.client.software_configs.get(
661 d.config_id)
662 foo_input_c = [i for i in c.inputs if i.get('name') == key][0]
663 self.assertEqual(value, foo_input_c.get('value'))
664
665 def signal_resources(self, resources):
666 # Signal all IN_PROGRESS resources
667 for r in resources:
668 if 'IN_PROGRESS' in r.resource_status:
669 stack_id = self.get_resource_stack_id(r)
670 self.client.resources.signal(stack_id, r.resource_name)
671
Steven Hardyf2c82c02014-11-20 14:02:17 +0000672 def stack_create(self, stack_name=None, template=None, files=None,
Sabeen Syed277ea692015-02-04 23:30:02 +0000673 parameters=None, environment=None, tags=None,
674 expected_status='CREATE_COMPLETE',
Jay Dobies39c4ce42015-11-04 10:49:08 -0500675 disable_rollback=True, enable_cleanup=True,
Pavlo Shchelokovskyy702a5df2021-03-09 14:43:05 +0200676 environment_files=None, timeout=None,
677 log_nova_servers=False):
Steven Hardyf2c82c02014-11-20 14:02:17 +0000678 name = stack_name or self._stack_rand_name()
679 templ = template or self.template
680 templ_files = files or {}
681 params = parameters or {}
682 env = environment or {}
rabi6ce8d962017-07-10 16:40:12 +0530683 timeout_mins = timeout or self.conf.build_timeout
Steven Hardyf2c82c02014-11-20 14:02:17 +0000684 self.client.stacks.create(
685 stack_name=name,
686 template=templ,
687 files=templ_files,
Rakesh H Sa3325d62015-04-04 19:42:29 +0530688 disable_rollback=disable_rollback,
Steven Hardyf2c82c02014-11-20 14:02:17 +0000689 parameters=params,
Sabeen Syed277ea692015-02-04 23:30:02 +0000690 environment=env,
Jay Dobies39c4ce42015-11-04 10:49:08 -0500691 tags=tags,
rabi6ce8d962017-07-10 16:40:12 +0530692 environment_files=environment_files,
693 timeout_mins=timeout_mins
Steven Hardyf2c82c02014-11-20 14:02:17 +0000694 )
rabic570e0f2017-10-26 13:07:13 +0530695 if enable_cleanup:
Steve Bakerdbea6ab2015-08-19 13:37:08 +1200696 self.addCleanup(self._stack_delete, name)
Steven Hardyf2c82c02014-11-20 14:02:17 +0000697
Sergey Kraynevf07f4712016-02-15 05:24:17 -0500698 stack = self.client.stacks.get(name, resolve_outputs=False)
Steven Hardyf2c82c02014-11-20 14:02:17 +0000699 stack_identifier = '%s/%s' % (name, stack.id)
Rakesh H Sa3325d62015-04-04 19:42:29 +0530700 kwargs = {'stack_identifier': stack_identifier,
Pavlo Shchelokovskyy702a5df2021-03-09 14:43:05 +0200701 'status': expected_status,
702 'log_nova_servers': log_nova_servers}
Steve Bakerf6c8f122015-02-10 13:54:46 +1300703 if expected_status:
Rakesh H Sa3325d62015-04-04 19:42:29 +0530704 if expected_status in ['ROLLBACK_COMPLETE']:
705 # To trigger rollback you would intentionally fail the stack
706 # Hence check for rollback failures
707 kwargs['failure_pattern'] = '^ROLLBACK_FAILED$'
708 self._wait_for_stack_status(**kwargs)
Steven Hardyf2c82c02014-11-20 14:02:17 +0000709 return stack_identifier
Angus Salkeld2bd63a42015-01-07 11:11:29 +1000710
711 def stack_adopt(self, stack_name=None, files=None,
712 parameters=None, environment=None, adopt_data=None,
713 wait_for_status='ADOPT_COMPLETE'):
Rabi Mishra477efc92015-07-31 13:01:45 +0530714 if (self.conf.skip_test_stack_action_list and
715 'ADOPT' in self.conf.skip_test_stack_action_list):
Sirushti Murugesan04ee8022015-02-02 23:00:23 +0530716 self.skipTest('Testing Stack adopt disabled in conf, skipping')
Angus Salkeld2bd63a42015-01-07 11:11:29 +1000717 name = stack_name or self._stack_rand_name()
718 templ_files = files or {}
719 params = parameters or {}
720 env = environment or {}
721 self.client.stacks.create(
722 stack_name=name,
723 files=templ_files,
724 disable_rollback=True,
725 parameters=params,
726 environment=env,
727 adopt_stack_data=adopt_data,
728 )
Steve Bakerdbea6ab2015-08-19 13:37:08 +1200729 self.addCleanup(self._stack_delete, name)
Sergey Kraynevf07f4712016-02-15 05:24:17 -0500730 stack = self.client.stacks.get(name, resolve_outputs=False)
Angus Salkeld2bd63a42015-01-07 11:11:29 +1000731 stack_identifier = '%s/%s' % (name, stack.id)
732 self._wait_for_stack_status(stack_identifier, wait_for_status)
733 return stack_identifier
Sirushti Murugesan04ee8022015-02-02 23:00:23 +0530734
735 def stack_abandon(self, stack_id):
Rabi Mishra477efc92015-07-31 13:01:45 +0530736 if (self.conf.skip_test_stack_action_list and
737 'ABANDON' in self.conf.skip_test_stack_action_list):
Steve Bakerdbea6ab2015-08-19 13:37:08 +1200738 self.addCleanup(self._stack_delete, stack_id)
Sirushti Murugesan04ee8022015-02-02 23:00:23 +0530739 self.skipTest('Testing Stack abandon disabled in conf, skipping')
740 info = self.client.stacks.abandon(stack_id=stack_id)
741 return info
Oleksii Chuprykovd9cd9dc2015-02-03 10:34:55 -0500742
rabi90b3ab42017-05-04 13:02:28 +0530743 def stack_snapshot(self, stack_id,
744 wait_for_status='SNAPSHOT_COMPLETE'):
745 snapshot = self.client.stacks.snapshot(stack_id=stack_id)
746 self._wait_for_stack_status(stack_id, wait_for_status)
747 return snapshot['id']
748
749 def stack_restore(self, stack_id, snapshot_id,
750 wait_for_status='RESTORE_COMPLETE'):
751 self.client.stacks.restore(stack_id, snapshot_id)
752 self._wait_for_stack_status(stack_id, wait_for_status)
753
Oleksii Chuprykovd9cd9dc2015-02-03 10:34:55 -0500754 def stack_suspend(self, stack_identifier):
Rabi Mishra477efc92015-07-31 13:01:45 +0530755 if (self.conf.skip_test_stack_action_list and
756 'SUSPEND' in self.conf.skip_test_stack_action_list):
Steve Bakerdbea6ab2015-08-19 13:37:08 +1200757 self.addCleanup(self._stack_delete, stack_identifier)
Rabi Mishra477efc92015-07-31 13:01:45 +0530758 self.skipTest('Testing Stack suspend disabled in conf, skipping')
rabif7d67082016-05-17 18:51:22 +0530759 self._handle_in_progress(self.client.actions.suspend, stack_identifier)
Angus Salkelda7500d12015-04-10 15:44:07 +1000760 # improve debugging by first checking the resource's state.
761 self._wait_for_all_resource_status(stack_identifier,
762 'SUSPEND_COMPLETE')
Oleksii Chuprykovd9cd9dc2015-02-03 10:34:55 -0500763 self._wait_for_stack_status(stack_identifier, 'SUSPEND_COMPLETE')
764
765 def stack_resume(self, stack_identifier):
Rabi Mishra477efc92015-07-31 13:01:45 +0530766 if (self.conf.skip_test_stack_action_list and
767 'RESUME' in self.conf.skip_test_stack_action_list):
Steve Bakerdbea6ab2015-08-19 13:37:08 +1200768 self.addCleanup(self._stack_delete, stack_identifier)
Rabi Mishra477efc92015-07-31 13:01:45 +0530769 self.skipTest('Testing Stack resume disabled in conf, skipping')
rabif7d67082016-05-17 18:51:22 +0530770 self._handle_in_progress(self.client.actions.resume, stack_identifier)
Angus Salkelda7500d12015-04-10 15:44:07 +1000771 # improve debugging by first checking the resource's state.
772 self._wait_for_all_resource_status(stack_identifier,
773 'RESUME_COMPLETE')
Oleksii Chuprykovd9cd9dc2015-02-03 10:34:55 -0500774 self._wait_for_stack_status(stack_identifier, 'RESUME_COMPLETE')
Steven Hardy03da0742015-03-19 00:13:17 -0400775
776 def wait_for_event_with_reason(self, stack_identifier, reason,
777 rsrc_name=None, num_expected=1):
778 build_timeout = self.conf.build_timeout
779 build_interval = self.conf.build_interval
780 start = timeutils.utcnow()
781 while timeutils.delta_seconds(start,
782 timeutils.utcnow()) < build_timeout:
783 try:
784 rsrc_events = self.client.events.list(stack_identifier,
785 resource_name=rsrc_name)
786 except heat_exceptions.HTTPNotFound:
liyi09461f72017-03-21 12:17:51 +0800787 LOG.debug("No events yet found for %s", rsrc_name)
Steven Hardy03da0742015-03-19 00:13:17 -0400788 else:
789 matched = [e for e in rsrc_events
790 if e.resource_status_reason == reason]
791 if len(matched) == num_expected:
792 return matched
793 time.sleep(build_interval)
Rakesh H Sc5735a82016-04-28 15:38:09 +0530794
Thomas Hervea6afca82017-04-10 23:44:26 +0200795 def check_autoscale_complete(self, stack_id, expected_num, parent_stack,
rabi55c0f752018-02-07 09:21:28 +0530796 group_name):
Rakesh H Sc5735a82016-04-28 15:38:09 +0530797 res_list = self.client.resources.list(stack_id)
798 all_res_complete = all(res.resource_status in ('UPDATE_COMPLETE',
799 'CREATE_COMPLETE')
800 for res in res_list)
801 all_res = len(res_list) == expected_num
Thomas Hervea6afca82017-04-10 23:44:26 +0200802 if all_res and all_res_complete:
rabi55c0f752018-02-07 09:21:28 +0530803 metadata = self.client.resources.metadata(parent_stack, group_name)
Thomas Hervea6afca82017-04-10 23:44:26 +0200804 return not metadata.get('scaling_in_progress')
805 return False