blob: 4fdfb8e8dc15d8fe679dd52cf613420b825309b0 [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 os
14import random
15import re
Steve Baker450aa7f2014-08-25 10:37:27 +120016import subprocess
Steve Baker450aa7f2014-08-25 10:37:27 +120017import time
18
Pavlo Shchelokovskyy60e0ecd2014-12-14 22:17:21 +020019import fixtures
Steve Baker450aa7f2014-08-25 10:37:27 +120020from heatclient import exc as heat_exceptions
Thomas Hervedb36c092017-03-23 11:20:14 +010021from keystoneauth1 import exceptions as kc_exceptions
Mark Vanderwiel6d8e0862015-10-15 12:51:07 -050022from neutronclient.common import exceptions as network_exceptions
Steve Baker24641292015-03-13 10:47:50 +130023from oslo_log import log as logging
Jens Rosenboom4f069fb2015-02-18 14:19:07 +010024from oslo_utils import timeutils
Pavlo Shchelokovskyy60e0ecd2014-12-14 22:17:21 +020025import six
Sirushti Murugesan4920fda2015-04-22 00:35:26 +053026from six.moves import urllib
Pavlo Shchelokovskyy60e0ecd2014-12-14 22:17:21 +020027import testscenarios
28import testtools
Steve Baker450aa7f2014-08-25 10:37:27 +120029
rabid2916d02017-09-22 18:19:24 +053030from heat_tempest_plugin.common import exceptions
31from heat_tempest_plugin.common import remote_client
rabid2916d02017-09-22 18:19:24 +053032from heat_tempest_plugin.services import clients
Zane Bitterb4acd962018-01-18 12:08:23 -050033from tempest import config
Steve Baker450aa7f2014-08-25 10:37:27 +120034
35LOG = logging.getLogger(__name__)
Angus Salkeld24043702014-11-21 08:49:26 +100036_LOG_FORMAT = "%(levelname)8s [%(name)s] %(message)s"
Steve Baker450aa7f2014-08-25 10:37:27 +120037
38
Angus Salkeld08514ad2015-02-06 10:08:31 +100039def call_until_true(duration, sleep_for, func, *args, **kwargs):
Peter Razumovskyf0ac9582015-09-24 16:49:03 +030040 """Call the function until it returns True or the duration elapsed.
41
Steve Baker450aa7f2014-08-25 10:37:27 +120042 Call the given function until it returns True (and return True) or
43 until the specified duration (in seconds) elapses (and return
44 False).
45
46 :param func: A zero argument callable that returns True on success.
47 :param duration: The number of seconds for which to attempt a
48 successful call of the function.
49 :param sleep_for: The number of seconds to sleep after an unsuccessful
50 invocation of the function.
51 """
52 now = time.time()
53 timeout = now + duration
54 while now < timeout:
Angus Salkeld08514ad2015-02-06 10:08:31 +100055 if func(*args, **kwargs):
Steve Baker450aa7f2014-08-25 10:37:27 +120056 return True
57 LOG.debug("Sleeping for %d seconds", sleep_for)
58 time.sleep(sleep_for)
59 now = time.time()
60 return False
61
62
rabi32201342017-11-17 22:57:58 +053063def isotime(at):
64 if at is None:
65 return None
66 return at.strftime('%Y-%m-%dT%H:%M:%SZ')
67
68
Steve Baker450aa7f2014-08-25 10:37:27 +120069def rand_name(name=''):
ricolina4eb53d2017-04-24 23:51:09 +080070 randbits = six.text_type(random.randint(1, 0x7fffffff))
Steve Baker450aa7f2014-08-25 10:37:27 +120071 if name:
72 return name + '-' + randbits
73 else:
74 return randbits
75
76
Zane Bitterf407e102017-10-05 14:19:32 -040077def requires_convergence(test_method):
78 '''Decorator for convergence-only tests.
79
80 The decorated test will be skipped when convergence is disabled.
81 '''
rabif89752b2017-11-18 22:14:30 +053082 plugin = config.CONF.heat_plugin
rabi94a520a2017-11-17 22:49:17 +053083 convergence_enabled = plugin.convergence_engine_enabled
Zane Bitterf407e102017-10-05 14:19:32 -040084 skipper = testtools.skipUnless(convergence_enabled,
85 "Convergence-only tests are disabled")
86 return skipper(test_method)
87
88
Angus Salkeld95f65a22014-11-24 12:38:30 +100089class HeatIntegrationTest(testscenarios.WithScenarios,
90 testtools.TestCase):
Steve Baker450aa7f2014-08-25 10:37:27 +120091
92 def setUp(self):
93 super(HeatIntegrationTest, self).setUp()
94
rabif89752b2017-11-18 22:14:30 +053095 self.conf = config.CONF.heat_plugin
Steve Baker450aa7f2014-08-25 10:37:27 +120096
97 self.assertIsNotNone(self.conf.auth_url,
98 'No auth_url configured')
99 self.assertIsNotNone(self.conf.username,
100 'No username configured')
101 self.assertIsNotNone(self.conf.password,
102 'No password configured')
rabifd98a472016-05-24 10:18:33 +0530103 self.setup_clients(self.conf)
104 self.useFixture(fixtures.FakeLogger(format=_LOG_FORMAT))
105 self.updated_time = {}
106 if self.conf.disable_ssl_certificate_validation:
107 self.verify_cert = False
108 else:
109 self.verify_cert = self.conf.ca_file or True
Steve Baker450aa7f2014-08-25 10:37:27 +1200110
Steve Bakerb752e912016-08-01 22:05:37 +0000111 def setup_clients(self, conf, admin_credentials=False):
112 self.manager = clients.ClientManager(conf, admin_credentials)
Steve Baker450aa7f2014-08-25 10:37:27 +1200113 self.identity_client = self.manager.identity_client
114 self.orchestration_client = self.manager.orchestration_client
115 self.compute_client = self.manager.compute_client
116 self.network_client = self.manager.network_client
117 self.volume_client = self.manager.volume_client
Angus Salkeld4408da32015-02-03 18:53:30 +1000118 self.object_client = self.manager.object_client
rabid69f0312017-10-26 14:52:52 +0530119 self.metric_client = self.manager.metric_client
rabifd98a472016-05-24 10:18:33 +0530120
121 self.client = self.orchestration_client
122
123 def setup_clients_for_admin(self):
Steve Bakerb752e912016-08-01 22:05:37 +0000124 self.setup_clients(self.conf, True)
Steve Baker450aa7f2014-08-25 10:37:27 +1200125
Steve Baker450aa7f2014-08-25 10:37:27 +1200126 def get_remote_client(self, server_or_ip, username, private_key=None):
127 if isinstance(server_or_ip, six.string_types):
128 ip = server_or_ip
129 else:
130 network_name_for_ssh = self.conf.network_for_ssh
131 ip = server_or_ip.networks[network_name_for_ssh][0]
132 if private_key is None:
133 private_key = self.keypair.private_key
134 linux_client = remote_client.RemoteClient(ip, username,
135 pkey=private_key,
136 conf=self.conf)
137 try:
138 linux_client.validate_authentication()
139 except exceptions.SSHTimeout:
liyi09461f72017-03-21 12:17:51 +0800140 LOG.exception('ssh connection to %s failed', ip)
Steve Baker450aa7f2014-08-25 10:37:27 +1200141 raise
142
143 return linux_client
144
Anastasia Kuznetsova3e0ab4d2015-03-06 18:10:13 +0400145 def check_connectivity(self, check_ip):
146 def try_connect(ip):
147 try:
Sirushti Murugesan4920fda2015-04-22 00:35:26 +0530148 urllib.request.urlopen('http://%s/' % ip)
Anastasia Kuznetsova3e0ab4d2015-03-06 18:10:13 +0400149 return True
150 except IOError:
151 return False
152
153 timeout = self.conf.connectivity_timeout
154 elapsed_time = 0
155 while not try_connect(check_ip):
156 time.sleep(10)
157 elapsed_time += 10
158 if elapsed_time > timeout:
159 raise exceptions.TimeoutException()
160
Steve Baker450aa7f2014-08-25 10:37:27 +1200161 def _log_console_output(self, servers=None):
162 if not servers:
163 servers = self.compute_client.servers.list()
164 for server in servers:
Steve Baker24641292015-03-13 10:47:50 +1300165 LOG.info('Console output for %s', server.id)
166 LOG.info(server.get_console_output())
Steve Baker450aa7f2014-08-25 10:37:27 +1200167
Sergey Kraynevd6fa5c02015-02-13 03:03:55 -0500168 def _load_template(self, base_file, file_name, sub_dir=None):
169 sub_dir = sub_dir or ''
Steve Baker450aa7f2014-08-25 10:37:27 +1200170 filepath = os.path.join(os.path.dirname(os.path.realpath(base_file)),
Sergey Kraynevd6fa5c02015-02-13 03:03:55 -0500171 sub_dir, file_name)
Steve Baker450aa7f2014-08-25 10:37:27 +1200172 with open(filepath) as f:
173 return f.read()
174
175 def create_keypair(self, client=None, name=None):
176 if client is None:
177 client = self.compute_client
178 if name is None:
179 name = rand_name('heat-keypair')
180 keypair = client.keypairs.create(name)
181 self.assertEqual(keypair.name, name)
182
183 def delete_keypair():
184 keypair.delete()
185
186 self.addCleanup(delete_keypair)
187 return keypair
188
Sergey Krayneva265c132015-02-13 03:51:03 -0500189 def assign_keypair(self):
190 if self.conf.keypair_name:
191 self.keypair = None
192 self.keypair_name = self.conf.keypair_name
193 else:
194 self.keypair = self.create_keypair()
195 self.keypair_name = self.keypair.id
196
Steve Baker450aa7f2014-08-25 10:37:27 +1200197 @classmethod
198 def _stack_rand_name(cls):
199 return rand_name(cls.__name__)
200
Anastasia Kuznetsova673fc432015-03-12 16:41:36 +0400201 def _get_network(self, net_name=None):
202 if net_name is None:
203 net_name = self.conf.fixed_network_name
Steve Baker450aa7f2014-08-25 10:37:27 +1200204 networks = self.network_client.list_networks()
205 for net in networks['networks']:
Anastasia Kuznetsova673fc432015-03-12 16:41:36 +0400206 if net['name'] == net_name:
Steve Baker450aa7f2014-08-25 10:37:27 +1200207 return net
208
Mark Vanderwiel6d8e0862015-10-15 12:51:07 -0500209 def is_network_extension_supported(self, extension_alias):
210 try:
211 self.network_client.show_extension(extension_alias)
212 except network_exceptions.NeutronClientException:
213 return False
214 return True
215
Thomas Hervedb36c092017-03-23 11:20:14 +0100216 def is_service_available(self, service_type):
217 try:
218 self.identity_client.get_endpoint_url(
219 service_type, self.conf.region)
220 except kc_exceptions.EndpointNotFound:
221 return False
222 else:
223 return True
224
Steve Baker450aa7f2014-08-25 10:37:27 +1200225 @staticmethod
Angus Salkelda89a0282015-07-24 15:47:38 +1000226 def _stack_output(stack, output_key, validate_errors=True):
Steve Baker450aa7f2014-08-25 10:37:27 +1200227 """Return a stack output value for a given key."""
Angus Salkelda89a0282015-07-24 15:47:38 +1000228 value = None
229 for o in stack.outputs:
230 if validate_errors and 'output_error' in o:
231 # scan for errors in the stack output.
232 raise ValueError(
233 'Unexpected output errors in %s : %s' % (
234 output_key, o['output_error']))
235 if o['output_key'] == output_key:
236 value = o['output_value']
237 return value
Steve Baker450aa7f2014-08-25 10:37:27 +1200238
239 def _ping_ip_address(self, ip_address, should_succeed=True):
240 cmd = ['ping', '-c1', '-w1', ip_address]
241
242 def ping():
243 proc = subprocess.Popen(cmd,
244 stdout=subprocess.PIPE,
245 stderr=subprocess.PIPE)
246 proc.wait()
247 return (proc.returncode == 0) == should_succeed
248
249 return call_until_true(
Angus Salkeld08514ad2015-02-06 10:08:31 +1000250 self.conf.build_timeout, 1, ping)
Steve Baker450aa7f2014-08-25 10:37:27 +1200251
Angus Salkelda7500d12015-04-10 15:44:07 +1000252 def _wait_for_all_resource_status(self, stack_identifier,
253 status, failure_pattern='^.*_FAILED$',
254 success_on_not_found=False):
255 for res in self.client.resources.list(stack_identifier):
256 self._wait_for_resource_status(
257 stack_identifier, res.resource_name,
258 status, failure_pattern=failure_pattern,
259 success_on_not_found=success_on_not_found)
260
Steve Baker450aa7f2014-08-25 10:37:27 +1200261 def _wait_for_resource_status(self, stack_identifier, resource_name,
262 status, failure_pattern='^.*_FAILED$',
263 success_on_not_found=False):
264 """Waits for a Resource to reach a given status."""
265 fail_regexp = re.compile(failure_pattern)
266 build_timeout = self.conf.build_timeout
267 build_interval = self.conf.build_interval
268
269 start = timeutils.utcnow()
270 while timeutils.delta_seconds(start,
271 timeutils.utcnow()) < build_timeout:
272 try:
273 res = self.client.resources.get(
274 stack_identifier, resource_name)
275 except heat_exceptions.HTTPNotFound:
276 if success_on_not_found:
277 return
278 # ignore this, as the resource may not have
279 # been created yet
280 else:
281 if res.resource_status == status:
282 return
Sirushti Murugesane5ad25b2015-04-18 23:30:59 +0530283 wait_for_action = status.split('_')[0]
284 resource_action = res.resource_status.split('_')[0]
285 if (resource_action == wait_for_action and
286 fail_regexp.search(res.resource_status)):
Steve Baker450aa7f2014-08-25 10:37:27 +1200287 raise exceptions.StackResourceBuildErrorException(
288 resource_name=res.resource_name,
289 stack_identifier=stack_identifier,
290 resource_status=res.resource_status,
291 resource_status_reason=res.resource_status_reason)
292 time.sleep(build_interval)
293
294 message = ('Resource %s failed to reach %s status within '
295 'the required time (%s s).' %
Anastasia Kuznetsova9a745572015-03-04 13:19:15 +0400296 (resource_name, status, build_timeout))
Steve Baker450aa7f2014-08-25 10:37:27 +1200297 raise exceptions.TimeoutException(message)
298
Rabi Mishra87be9b42016-02-15 14:15:50 +0530299 def verify_resource_status(self, stack_identifier, resource_name,
300 status='CREATE_COMPLETE'):
301 try:
302 res = self.client.resources.get(stack_identifier, resource_name)
303 except heat_exceptions.HTTPNotFound:
304 return False
305 return res.resource_status == status
306
rabi5eaa4962017-08-31 10:55:13 +0530307 def _verify_status(self, stack, stack_identifier, status,
308 fail_regexp, is_action_cancelled=False):
Sirushti Murugesan13a8a172015-04-14 00:30:05 +0530309 if stack.stack_status == status:
Sergey Kraynev89082a32015-09-04 04:42:33 -0400310 # Handle UPDATE_COMPLETE/FAILED case: Make sure we don't
311 # wait for a stale UPDATE_COMPLETE/FAILED status.
312 if status in ('UPDATE_FAILED', 'UPDATE_COMPLETE'):
rabi5eaa4962017-08-31 10:55:13 +0530313 if is_action_cancelled:
314 return True
315
Sirushti Murugesan13a8a172015-04-14 00:30:05 +0530316 if self.updated_time.get(
317 stack_identifier) != stack.updated_time:
318 self.updated_time[stack_identifier] = stack.updated_time
319 return True
Thomas Herve0e8567e2016-09-22 15:07:37 +0200320 elif status == 'DELETE_COMPLETE' and stack.deletion_time is None:
321 # Wait for deleted_time to be filled, so that we have more
322 # confidence the operation is finished.
323 return False
Sirushti Murugesan13a8a172015-04-14 00:30:05 +0530324 else:
325 return True
326
Sirushti Murugesane5ad25b2015-04-18 23:30:59 +0530327 wait_for_action = status.split('_')[0]
328 if (stack.action == wait_for_action and
329 fail_regexp.search(stack.stack_status)):
Sergey Kraynev89082a32015-09-04 04:42:33 -0400330 # Handle UPDATE_COMPLETE/UPDATE_FAILED case.
331 if status in ('UPDATE_FAILED', 'UPDATE_COMPLETE'):
Sirushti Murugesan13a8a172015-04-14 00:30:05 +0530332 if self.updated_time.get(
333 stack_identifier) != stack.updated_time:
334 self.updated_time[stack_identifier] = stack.updated_time
335 raise exceptions.StackBuildErrorException(
336 stack_identifier=stack_identifier,
337 stack_status=stack.stack_status,
338 stack_status_reason=stack.stack_status_reason)
339 else:
340 raise exceptions.StackBuildErrorException(
341 stack_identifier=stack_identifier,
342 stack_status=stack.stack_status,
343 stack_status_reason=stack.stack_status_reason)
344
Steve Baker450aa7f2014-08-25 10:37:27 +1200345 def _wait_for_stack_status(self, stack_identifier, status,
Sergey Kraynev89082a32015-09-04 04:42:33 -0400346 failure_pattern=None,
Rabi Mishra81ca6bc2016-06-16 15:09:20 +0530347 success_on_not_found=False,
348 signal_required=False,
rabi5eaa4962017-08-31 10:55:13 +0530349 resources_to_signal=None,
350 is_action_cancelled=False):
Peter Razumovskyf0ac9582015-09-24 16:49:03 +0300351 """Waits for a Stack to reach a given status.
Steve Baker450aa7f2014-08-25 10:37:27 +1200352
353 Note this compares the full $action_$status, e.g
354 CREATE_COMPLETE, not just COMPLETE which is exposed
355 via the status property of Stack in heatclient
356 """
Sergey Kraynev89082a32015-09-04 04:42:33 -0400357 if failure_pattern:
358 fail_regexp = re.compile(failure_pattern)
359 elif 'FAILED' in status:
360 # If we're looking for e.g CREATE_FAILED, COMPLETE is unexpected.
361 fail_regexp = re.compile('^.*_COMPLETE$')
362 else:
363 fail_regexp = re.compile('^.*_FAILED$')
Steve Baker450aa7f2014-08-25 10:37:27 +1200364 build_timeout = self.conf.build_timeout
365 build_interval = self.conf.build_interval
366
367 start = timeutils.utcnow()
368 while timeutils.delta_seconds(start,
369 timeutils.utcnow()) < build_timeout:
370 try:
Sergey Kraynevf07f4712016-02-15 05:24:17 -0500371 stack = self.client.stacks.get(stack_identifier,
372 resolve_outputs=False)
Steve Baker450aa7f2014-08-25 10:37:27 +1200373 except heat_exceptions.HTTPNotFound:
374 if success_on_not_found:
375 return
376 # ignore this, as the resource may not have
377 # been created yet
378 else:
Sirushti Murugesan13a8a172015-04-14 00:30:05 +0530379 if self._verify_status(stack, stack_identifier, status,
rabi5eaa4962017-08-31 10:55:13 +0530380 fail_regexp, is_action_cancelled):
Steve Baker450aa7f2014-08-25 10:37:27 +1200381 return
Rabi Mishra81ca6bc2016-06-16 15:09:20 +0530382 if signal_required:
383 self.signal_resources(resources_to_signal)
Steve Baker450aa7f2014-08-25 10:37:27 +1200384 time.sleep(build_interval)
385
386 message = ('Stack %s failed to reach %s status within '
387 'the required time (%s s).' %
Anastasia Kuznetsova9a745572015-03-04 13:19:15 +0400388 (stack_identifier, status, build_timeout))
Steve Baker450aa7f2014-08-25 10:37:27 +1200389 raise exceptions.TimeoutException(message)
390
391 def _stack_delete(self, stack_identifier):
392 try:
Thomas Herve3eab2942015-10-22 17:29:21 +0200393 self._handle_in_progress(self.client.stacks.delete,
394 stack_identifier)
Steve Baker450aa7f2014-08-25 10:37:27 +1200395 except heat_exceptions.HTTPNotFound:
396 pass
397 self._wait_for_stack_status(
398 stack_identifier, 'DELETE_COMPLETE',
399 success_on_not_found=True)
Steven Hardyc9efd972014-11-20 11:31:55 +0000400
Thomas Herve3eab2942015-10-22 17:29:21 +0200401 def _handle_in_progress(self, fn, *args, **kwargs):
402 build_timeout = self.conf.build_timeout
403 build_interval = self.conf.build_interval
404 start = timeutils.utcnow()
405 while timeutils.delta_seconds(start,
406 timeutils.utcnow()) < build_timeout:
407 try:
408 fn(*args, **kwargs)
409 except heat_exceptions.HTTPConflict as ex:
410 # FIXME(sirushtim): Wait a little for the stack lock to be
411 # released and hopefully, the stack should be usable again.
412 if ex.error['error']['type'] != 'ActionInProgress':
413 raise ex
414
415 time.sleep(build_interval)
416 else:
417 break
418
Steven Hardy23284b62015-10-01 19:03:42 +0100419 def update_stack(self, stack_identifier, template=None, environment=None,
Sabeen Syed277ea692015-02-04 23:30:02 +0000420 files=None, parameters=None, tags=None,
Rakesh H Sa3325d62015-04-04 19:42:29 +0530421 expected_status='UPDATE_COMPLETE',
Steven Hardy23284b62015-10-01 19:03:42 +0100422 disable_rollback=True,
423 existing=False):
Steven Hardyc9efd972014-11-20 11:31:55 +0000424 env = environment or {}
425 env_files = files or {}
Sergey Kraynevbcc78df2015-02-27 04:34:32 -0500426 parameters = parameters or {}
Sirushti Murugesan3a195a52015-05-01 09:47:09 +0530427
Sergey Kraynev89082a32015-09-04 04:42:33 -0400428 self.updated_time[stack_identifier] = self.client.stacks.get(
Sergey Kraynevf07f4712016-02-15 05:24:17 -0500429 stack_identifier, resolve_outputs=False).updated_time
Sirushti Murugesan3a195a52015-05-01 09:47:09 +0530430
Thomas Herve3eab2942015-10-22 17:29:21 +0200431 self._handle_in_progress(
432 self.client.stacks.update,
433 stack_id=stack_identifier,
Thomas Herve3eab2942015-10-22 17:29:21 +0200434 template=template,
435 files=env_files,
436 disable_rollback=disable_rollback,
437 parameters=parameters,
438 environment=env,
439 tags=tags,
440 existing=existing)
Sirushti Murugesan3a195a52015-05-01 09:47:09 +0530441
Rakesh H Sa3325d62015-04-04 19:42:29 +0530442 kwargs = {'stack_identifier': stack_identifier,
443 'status': expected_status}
444 if expected_status in ['ROLLBACK_COMPLETE']:
Rakesh H Sa3325d62015-04-04 19:42:29 +0530445 # To trigger rollback you would intentionally fail the stack
446 # Hence check for rollback failures
447 kwargs['failure_pattern'] = '^ROLLBACK_FAILED$'
448
449 self._wait_for_stack_status(**kwargs)
Steven Hardyc9efd972014-11-20 11:31:55 +0000450
rabi5eaa4962017-08-31 10:55:13 +0530451 def cancel_update_stack(self, stack_identifier, rollback=True,
Oleksii Chuprykovfc2c58f2016-04-29 17:03:17 +0300452 expected_status='ROLLBACK_COMPLETE'):
453
454 stack_name = stack_identifier.split('/')[0]
455
456 self.updated_time[stack_identifier] = self.client.stacks.get(
457 stack_identifier, resolve_outputs=False).updated_time
458
rabi5eaa4962017-08-31 10:55:13 +0530459 if rollback:
460 self.client.actions.cancel_update(stack_name)
461 else:
462 self.client.actions.cancel_without_rollback(stack_name)
Oleksii Chuprykovfc2c58f2016-04-29 17:03:17 +0300463
464 kwargs = {'stack_identifier': stack_identifier,
465 'status': expected_status}
rabi5eaa4962017-08-31 10:55:13 +0530466 if expected_status == 'UPDATE_FAILED':
467 kwargs['is_action_cancelled'] = True
468
Oleksii Chuprykovfc2c58f2016-04-29 17:03:17 +0300469 if expected_status in ['ROLLBACK_COMPLETE']:
470 # To trigger rollback you would intentionally fail the stack
471 # Hence check for rollback failures
472 kwargs['failure_pattern'] = '^ROLLBACK_FAILED$'
473
474 self._wait_for_stack_status(**kwargs)
475
Jason Dunsmoreb5aa9022015-09-09 16:57:04 -0500476 def preview_update_stack(self, stack_identifier, template,
477 environment=None, files=None, parameters=None,
Steven Hardye6de2d62015-12-07 15:59:09 +0000478 tags=None, disable_rollback=True,
479 show_nested=False):
Jason Dunsmoreb5aa9022015-09-09 16:57:04 -0500480 env = environment or {}
481 env_files = files or {}
482 parameters = parameters or {}
Jason Dunsmoreb5aa9022015-09-09 16:57:04 -0500483
484 return self.client.stacks.preview_update(
485 stack_id=stack_identifier,
Jason Dunsmoreb5aa9022015-09-09 16:57:04 -0500486 template=template,
487 files=env_files,
488 disable_rollback=disable_rollback,
489 parameters=parameters,
490 environment=env,
Steven Hardye6de2d62015-12-07 15:59:09 +0000491 tags=tags,
492 show_nested=show_nested
Jason Dunsmoreb5aa9022015-09-09 16:57:04 -0500493 )
494
Steven Hardy03da0742015-03-19 00:13:17 -0400495 def assert_resource_is_a_stack(self, stack_identifier, res_name,
496 wait=False):
497 build_timeout = self.conf.build_timeout
498 build_interval = self.conf.build_interval
499 start = timeutils.utcnow()
500 while timeutils.delta_seconds(start,
501 timeutils.utcnow()) < build_timeout:
502 time.sleep(build_interval)
503 try:
504 nested_identifier = self._get_nested_identifier(
505 stack_identifier, res_name)
506 except Exception:
507 # We may have to wait, if the create is in-progress
508 if wait:
509 time.sleep(build_interval)
510 else:
511 raise
512 else:
513 return nested_identifier
514
515 def _get_nested_identifier(self, stack_identifier, res_name):
Angus Salkeld2bd63a42015-01-07 11:11:29 +1000516 rsrc = self.client.resources.get(stack_identifier, res_name)
517 nested_link = [l for l in rsrc.links if l['rel'] == 'nested']
518 nested_href = nested_link[0]['href']
519 nested_id = nested_href.split('/')[-1]
520 nested_identifier = '/'.join(nested_href.split('/')[-2:])
521 self.assertEqual(rsrc.physical_resource_id, nested_id)
522
Sergey Kraynevf07f4712016-02-15 05:24:17 -0500523 nested_stack = self.client.stacks.get(nested_id, resolve_outputs=False)
Angus Salkeld2bd63a42015-01-07 11:11:29 +1000524 nested_identifier2 = '%s/%s' % (nested_stack.stack_name,
525 nested_stack.id)
526 self.assertEqual(nested_identifier, nested_identifier2)
527 parent_id = stack_identifier.split("/")[-1]
528 self.assertEqual(parent_id, nested_stack.parent)
529 return nested_identifier
530
Rabi Mishra8bcff8a2015-09-21 18:15:04 +0530531 def group_nested_identifier(self, stack_identifier,
532 group_name):
533 # Get the nested stack identifier from a group resource
534 rsrc = self.client.resources.get(stack_identifier, group_name)
535 physical_resource_id = rsrc.physical_resource_id
536
Sergey Kraynevf07f4712016-02-15 05:24:17 -0500537 nested_stack = self.client.stacks.get(physical_resource_id,
538 resolve_outputs=False)
Rabi Mishra8bcff8a2015-09-21 18:15:04 +0530539 nested_identifier = '%s/%s' % (nested_stack.stack_name,
540 nested_stack.id)
541 parent_id = stack_identifier.split("/")[-1]
542 self.assertEqual(parent_id, nested_stack.parent)
543 return nested_identifier
544
545 def list_group_resources(self, stack_identifier,
546 group_name, minimal=True):
547 nested_identifier = self.group_nested_identifier(stack_identifier,
548 group_name)
549 if minimal:
550 return self.list_resources(nested_identifier)
551 return self.client.resources.list(nested_identifier)
552
Steven Hardyc9efd972014-11-20 11:31:55 +0000553 def list_resources(self, stack_identifier):
554 resources = self.client.resources.list(stack_identifier)
555 return dict((r.resource_name, r.resource_type) for r in resources)
Steven Hardyf2c82c02014-11-20 14:02:17 +0000556
Steven Hardyd448dae2016-06-14 14:57:28 +0100557 def get_resource_stack_id(self, r):
558 stack_link = [l for l in r.links if l.get('rel') == 'stack'][0]
559 return stack_link['href'].split("/")[-1]
560
Botond Zoltáne0b7aa12017-03-28 08:42:16 +0200561 def get_physical_resource_id(self, stack_identifier, resource_name):
562 try:
563 resource = self.client.resources.get(
564 stack_identifier, resource_name)
565 return resource.physical_resource_id
566 except Exception:
567 raise Exception('Resource (%s) not found in stack (%s)!' %
568 (stack_identifier, resource_name))
569
570 def get_stack_output(self, stack_identifier, output_key,
571 validate_errors=True):
572 stack = self.client.stacks.get(stack_identifier)
573 return self._stack_output(stack, output_key, validate_errors)
574
Rabi Mishra81ca6bc2016-06-16 15:09:20 +0530575 def check_input_values(self, group_resources, key, value):
576 # Check inputs for deployment and derived config
577 for r in group_resources:
578 d = self.client.software_deployments.get(
579 r.physical_resource_id)
580 self.assertEqual({key: value}, d.input_values)
581 c = self.client.software_configs.get(
582 d.config_id)
583 foo_input_c = [i for i in c.inputs if i.get('name') == key][0]
584 self.assertEqual(value, foo_input_c.get('value'))
585
586 def signal_resources(self, resources):
587 # Signal all IN_PROGRESS resources
588 for r in resources:
589 if 'IN_PROGRESS' in r.resource_status:
590 stack_id = self.get_resource_stack_id(r)
591 self.client.resources.signal(stack_id, r.resource_name)
592
Steven Hardyf2c82c02014-11-20 14:02:17 +0000593 def stack_create(self, stack_name=None, template=None, files=None,
Sabeen Syed277ea692015-02-04 23:30:02 +0000594 parameters=None, environment=None, tags=None,
595 expected_status='CREATE_COMPLETE',
Jay Dobies39c4ce42015-11-04 10:49:08 -0500596 disable_rollback=True, enable_cleanup=True,
rabi6ce8d962017-07-10 16:40:12 +0530597 environment_files=None, timeout=None):
Steven Hardyf2c82c02014-11-20 14:02:17 +0000598 name = stack_name or self._stack_rand_name()
599 templ = template or self.template
600 templ_files = files or {}
601 params = parameters or {}
602 env = environment or {}
rabi6ce8d962017-07-10 16:40:12 +0530603 timeout_mins = timeout or self.conf.build_timeout
Steven Hardyf2c82c02014-11-20 14:02:17 +0000604 self.client.stacks.create(
605 stack_name=name,
606 template=templ,
607 files=templ_files,
Rakesh H Sa3325d62015-04-04 19:42:29 +0530608 disable_rollback=disable_rollback,
Steven Hardyf2c82c02014-11-20 14:02:17 +0000609 parameters=params,
Sabeen Syed277ea692015-02-04 23:30:02 +0000610 environment=env,
Jay Dobies39c4ce42015-11-04 10:49:08 -0500611 tags=tags,
rabi6ce8d962017-07-10 16:40:12 +0530612 environment_files=environment_files,
613 timeout_mins=timeout_mins
Steven Hardyf2c82c02014-11-20 14:02:17 +0000614 )
rabic570e0f2017-10-26 13:07:13 +0530615 if enable_cleanup:
Steve Bakerdbea6ab2015-08-19 13:37:08 +1200616 self.addCleanup(self._stack_delete, name)
Steven Hardyf2c82c02014-11-20 14:02:17 +0000617
Sergey Kraynevf07f4712016-02-15 05:24:17 -0500618 stack = self.client.stacks.get(name, resolve_outputs=False)
Steven Hardyf2c82c02014-11-20 14:02:17 +0000619 stack_identifier = '%s/%s' % (name, stack.id)
Rakesh H Sa3325d62015-04-04 19:42:29 +0530620 kwargs = {'stack_identifier': stack_identifier,
621 'status': expected_status}
Steve Bakerf6c8f122015-02-10 13:54:46 +1300622 if expected_status:
Rakesh H Sa3325d62015-04-04 19:42:29 +0530623 if expected_status in ['ROLLBACK_COMPLETE']:
624 # To trigger rollback you would intentionally fail the stack
625 # Hence check for rollback failures
626 kwargs['failure_pattern'] = '^ROLLBACK_FAILED$'
627 self._wait_for_stack_status(**kwargs)
Steven Hardyf2c82c02014-11-20 14:02:17 +0000628 return stack_identifier
Angus Salkeld2bd63a42015-01-07 11:11:29 +1000629
630 def stack_adopt(self, stack_name=None, files=None,
631 parameters=None, environment=None, adopt_data=None,
632 wait_for_status='ADOPT_COMPLETE'):
Rabi Mishra477efc92015-07-31 13:01:45 +0530633 if (self.conf.skip_test_stack_action_list and
634 'ADOPT' in self.conf.skip_test_stack_action_list):
Sirushti Murugesan04ee8022015-02-02 23:00:23 +0530635 self.skipTest('Testing Stack adopt disabled in conf, skipping')
Angus Salkeld2bd63a42015-01-07 11:11:29 +1000636 name = stack_name or self._stack_rand_name()
637 templ_files = files or {}
638 params = parameters or {}
639 env = environment or {}
640 self.client.stacks.create(
641 stack_name=name,
642 files=templ_files,
643 disable_rollback=True,
644 parameters=params,
645 environment=env,
646 adopt_stack_data=adopt_data,
647 )
Steve Bakerdbea6ab2015-08-19 13:37:08 +1200648 self.addCleanup(self._stack_delete, name)
Sergey Kraynevf07f4712016-02-15 05:24:17 -0500649 stack = self.client.stacks.get(name, resolve_outputs=False)
Angus Salkeld2bd63a42015-01-07 11:11:29 +1000650 stack_identifier = '%s/%s' % (name, stack.id)
651 self._wait_for_stack_status(stack_identifier, wait_for_status)
652 return stack_identifier
Sirushti Murugesan04ee8022015-02-02 23:00:23 +0530653
654 def stack_abandon(self, stack_id):
Rabi Mishra477efc92015-07-31 13:01:45 +0530655 if (self.conf.skip_test_stack_action_list and
656 'ABANDON' in self.conf.skip_test_stack_action_list):
Steve Bakerdbea6ab2015-08-19 13:37:08 +1200657 self.addCleanup(self._stack_delete, stack_id)
Sirushti Murugesan04ee8022015-02-02 23:00:23 +0530658 self.skipTest('Testing Stack abandon disabled in conf, skipping')
659 info = self.client.stacks.abandon(stack_id=stack_id)
660 return info
Oleksii Chuprykovd9cd9dc2015-02-03 10:34:55 -0500661
rabi90b3ab42017-05-04 13:02:28 +0530662 def stack_snapshot(self, stack_id,
663 wait_for_status='SNAPSHOT_COMPLETE'):
664 snapshot = self.client.stacks.snapshot(stack_id=stack_id)
665 self._wait_for_stack_status(stack_id, wait_for_status)
666 return snapshot['id']
667
668 def stack_restore(self, stack_id, snapshot_id,
669 wait_for_status='RESTORE_COMPLETE'):
670 self.client.stacks.restore(stack_id, snapshot_id)
671 self._wait_for_stack_status(stack_id, wait_for_status)
672
Oleksii Chuprykovd9cd9dc2015-02-03 10:34:55 -0500673 def stack_suspend(self, stack_identifier):
Rabi Mishra477efc92015-07-31 13:01:45 +0530674 if (self.conf.skip_test_stack_action_list and
675 'SUSPEND' in self.conf.skip_test_stack_action_list):
Steve Bakerdbea6ab2015-08-19 13:37:08 +1200676 self.addCleanup(self._stack_delete, stack_identifier)
Rabi Mishra477efc92015-07-31 13:01:45 +0530677 self.skipTest('Testing Stack suspend disabled in conf, skipping')
rabif7d67082016-05-17 18:51:22 +0530678 self._handle_in_progress(self.client.actions.suspend, stack_identifier)
Angus Salkelda7500d12015-04-10 15:44:07 +1000679 # improve debugging by first checking the resource's state.
680 self._wait_for_all_resource_status(stack_identifier,
681 'SUSPEND_COMPLETE')
Oleksii Chuprykovd9cd9dc2015-02-03 10:34:55 -0500682 self._wait_for_stack_status(stack_identifier, 'SUSPEND_COMPLETE')
683
684 def stack_resume(self, stack_identifier):
Rabi Mishra477efc92015-07-31 13:01:45 +0530685 if (self.conf.skip_test_stack_action_list and
686 'RESUME' in self.conf.skip_test_stack_action_list):
Steve Bakerdbea6ab2015-08-19 13:37:08 +1200687 self.addCleanup(self._stack_delete, stack_identifier)
Rabi Mishra477efc92015-07-31 13:01:45 +0530688 self.skipTest('Testing Stack resume disabled in conf, skipping')
rabif7d67082016-05-17 18:51:22 +0530689 self._handle_in_progress(self.client.actions.resume, stack_identifier)
Angus Salkelda7500d12015-04-10 15:44:07 +1000690 # improve debugging by first checking the resource's state.
691 self._wait_for_all_resource_status(stack_identifier,
692 'RESUME_COMPLETE')
Oleksii Chuprykovd9cd9dc2015-02-03 10:34:55 -0500693 self._wait_for_stack_status(stack_identifier, 'RESUME_COMPLETE')
Steven Hardy03da0742015-03-19 00:13:17 -0400694
695 def wait_for_event_with_reason(self, stack_identifier, reason,
696 rsrc_name=None, num_expected=1):
697 build_timeout = self.conf.build_timeout
698 build_interval = self.conf.build_interval
699 start = timeutils.utcnow()
700 while timeutils.delta_seconds(start,
701 timeutils.utcnow()) < build_timeout:
702 try:
703 rsrc_events = self.client.events.list(stack_identifier,
704 resource_name=rsrc_name)
705 except heat_exceptions.HTTPNotFound:
liyi09461f72017-03-21 12:17:51 +0800706 LOG.debug("No events yet found for %s", rsrc_name)
Steven Hardy03da0742015-03-19 00:13:17 -0400707 else:
708 matched = [e for e in rsrc_events
709 if e.resource_status_reason == reason]
710 if len(matched) == num_expected:
711 return matched
712 time.sleep(build_interval)
Rakesh H Sc5735a82016-04-28 15:38:09 +0530713
Thomas Hervea6afca82017-04-10 23:44:26 +0200714 def check_autoscale_complete(self, stack_id, expected_num, parent_stack,
715 policy):
Rakesh H Sc5735a82016-04-28 15:38:09 +0530716 res_list = self.client.resources.list(stack_id)
717 all_res_complete = all(res.resource_status in ('UPDATE_COMPLETE',
718 'CREATE_COMPLETE')
719 for res in res_list)
720 all_res = len(res_list) == expected_num
Thomas Hervea6afca82017-04-10 23:44:26 +0200721 if all_res and all_res_complete:
722 metadata = self.client.resources.metadata(parent_stack, policy)
723 return not metadata.get('scaling_in_progress')
724 return False