blob: 7db874bce5775703bbfdb297b16fb2e2f7f45326 [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
32from heat_tempest_plugin import config
33from heat_tempest_plugin.services import clients
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
63def rand_name(name=''):
ricolina4eb53d2017-04-24 23:51:09 +080064 randbits = six.text_type(random.randint(1, 0x7fffffff))
Steve Baker450aa7f2014-08-25 10:37:27 +120065 if name:
66 return name + '-' + randbits
67 else:
68 return randbits
69
70
Zane Bitterf407e102017-10-05 14:19:32 -040071def requires_convergence(test_method):
72 '''Decorator for convergence-only tests.
73
74 The decorated test will be skipped when convergence is disabled.
75 '''
76 convergence_enabled = config.CONF.heat_plugin.convergence_engine_enabled
77 skipper = testtools.skipUnless(convergence_enabled,
78 "Convergence-only tests are disabled")
79 return skipper(test_method)
80
81
Angus Salkeld95f65a22014-11-24 12:38:30 +100082class HeatIntegrationTest(testscenarios.WithScenarios,
83 testtools.TestCase):
Steve Baker450aa7f2014-08-25 10:37:27 +120084
85 def setUp(self):
86 super(HeatIntegrationTest, self).setUp()
87
rabid2916d02017-09-22 18:19:24 +053088 self.conf = config.CONF.orchestration_plugin
Steve Baker450aa7f2014-08-25 10:37:27 +120089
90 self.assertIsNotNone(self.conf.auth_url,
91 'No auth_url configured')
92 self.assertIsNotNone(self.conf.username,
93 'No username configured')
94 self.assertIsNotNone(self.conf.password,
95 'No password configured')
rabifd98a472016-05-24 10:18:33 +053096 self.setup_clients(self.conf)
97 self.useFixture(fixtures.FakeLogger(format=_LOG_FORMAT))
98 self.updated_time = {}
99 if self.conf.disable_ssl_certificate_validation:
100 self.verify_cert = False
101 else:
102 self.verify_cert = self.conf.ca_file or True
Steve Baker450aa7f2014-08-25 10:37:27 +1200103
Steve Bakerb752e912016-08-01 22:05:37 +0000104 def setup_clients(self, conf, admin_credentials=False):
105 self.manager = clients.ClientManager(conf, admin_credentials)
Steve Baker450aa7f2014-08-25 10:37:27 +1200106 self.identity_client = self.manager.identity_client
107 self.orchestration_client = self.manager.orchestration_client
108 self.compute_client = self.manager.compute_client
109 self.network_client = self.manager.network_client
110 self.volume_client = self.manager.volume_client
Angus Salkeld4408da32015-02-03 18:53:30 +1000111 self.object_client = self.manager.object_client
rabid69f0312017-10-26 14:52:52 +0530112 self.metric_client = self.manager.metric_client
rabifd98a472016-05-24 10:18:33 +0530113
114 self.client = self.orchestration_client
115
116 def setup_clients_for_admin(self):
Steve Bakerb752e912016-08-01 22:05:37 +0000117 self.setup_clients(self.conf, True)
Steve Baker450aa7f2014-08-25 10:37:27 +1200118
Steve Baker450aa7f2014-08-25 10:37:27 +1200119 def get_remote_client(self, server_or_ip, username, private_key=None):
120 if isinstance(server_or_ip, six.string_types):
121 ip = server_or_ip
122 else:
123 network_name_for_ssh = self.conf.network_for_ssh
124 ip = server_or_ip.networks[network_name_for_ssh][0]
125 if private_key is None:
126 private_key = self.keypair.private_key
127 linux_client = remote_client.RemoteClient(ip, username,
128 pkey=private_key,
129 conf=self.conf)
130 try:
131 linux_client.validate_authentication()
132 except exceptions.SSHTimeout:
liyi09461f72017-03-21 12:17:51 +0800133 LOG.exception('ssh connection to %s failed', ip)
Steve Baker450aa7f2014-08-25 10:37:27 +1200134 raise
135
136 return linux_client
137
Anastasia Kuznetsova3e0ab4d2015-03-06 18:10:13 +0400138 def check_connectivity(self, check_ip):
139 def try_connect(ip):
140 try:
Sirushti Murugesan4920fda2015-04-22 00:35:26 +0530141 urllib.request.urlopen('http://%s/' % ip)
Anastasia Kuznetsova3e0ab4d2015-03-06 18:10:13 +0400142 return True
143 except IOError:
144 return False
145
146 timeout = self.conf.connectivity_timeout
147 elapsed_time = 0
148 while not try_connect(check_ip):
149 time.sleep(10)
150 elapsed_time += 10
151 if elapsed_time > timeout:
152 raise exceptions.TimeoutException()
153
Steve Baker450aa7f2014-08-25 10:37:27 +1200154 def _log_console_output(self, servers=None):
155 if not servers:
156 servers = self.compute_client.servers.list()
157 for server in servers:
Steve Baker24641292015-03-13 10:47:50 +1300158 LOG.info('Console output for %s', server.id)
159 LOG.info(server.get_console_output())
Steve Baker450aa7f2014-08-25 10:37:27 +1200160
Sergey Kraynevd6fa5c02015-02-13 03:03:55 -0500161 def _load_template(self, base_file, file_name, sub_dir=None):
162 sub_dir = sub_dir or ''
Steve Baker450aa7f2014-08-25 10:37:27 +1200163 filepath = os.path.join(os.path.dirname(os.path.realpath(base_file)),
Sergey Kraynevd6fa5c02015-02-13 03:03:55 -0500164 sub_dir, file_name)
Steve Baker450aa7f2014-08-25 10:37:27 +1200165 with open(filepath) as f:
166 return f.read()
167
168 def create_keypair(self, client=None, name=None):
169 if client is None:
170 client = self.compute_client
171 if name is None:
172 name = rand_name('heat-keypair')
173 keypair = client.keypairs.create(name)
174 self.assertEqual(keypair.name, name)
175
176 def delete_keypair():
177 keypair.delete()
178
179 self.addCleanup(delete_keypair)
180 return keypair
181
Sergey Krayneva265c132015-02-13 03:51:03 -0500182 def assign_keypair(self):
183 if self.conf.keypair_name:
184 self.keypair = None
185 self.keypair_name = self.conf.keypair_name
186 else:
187 self.keypair = self.create_keypair()
188 self.keypair_name = self.keypair.id
189
Steve Baker450aa7f2014-08-25 10:37:27 +1200190 @classmethod
191 def _stack_rand_name(cls):
192 return rand_name(cls.__name__)
193
Anastasia Kuznetsova673fc432015-03-12 16:41:36 +0400194 def _get_network(self, net_name=None):
195 if net_name is None:
196 net_name = self.conf.fixed_network_name
Steve Baker450aa7f2014-08-25 10:37:27 +1200197 networks = self.network_client.list_networks()
198 for net in networks['networks']:
Anastasia Kuznetsova673fc432015-03-12 16:41:36 +0400199 if net['name'] == net_name:
Steve Baker450aa7f2014-08-25 10:37:27 +1200200 return net
201
Mark Vanderwiel6d8e0862015-10-15 12:51:07 -0500202 def is_network_extension_supported(self, extension_alias):
203 try:
204 self.network_client.show_extension(extension_alias)
205 except network_exceptions.NeutronClientException:
206 return False
207 return True
208
Thomas Hervedb36c092017-03-23 11:20:14 +0100209 def is_service_available(self, service_type):
210 try:
211 self.identity_client.get_endpoint_url(
212 service_type, self.conf.region)
213 except kc_exceptions.EndpointNotFound:
214 return False
215 else:
216 return True
217
Steve Baker450aa7f2014-08-25 10:37:27 +1200218 @staticmethod
Angus Salkelda89a0282015-07-24 15:47:38 +1000219 def _stack_output(stack, output_key, validate_errors=True):
Steve Baker450aa7f2014-08-25 10:37:27 +1200220 """Return a stack output value for a given key."""
Angus Salkelda89a0282015-07-24 15:47:38 +1000221 value = None
222 for o in stack.outputs:
223 if validate_errors and 'output_error' in o:
224 # scan for errors in the stack output.
225 raise ValueError(
226 'Unexpected output errors in %s : %s' % (
227 output_key, o['output_error']))
228 if o['output_key'] == output_key:
229 value = o['output_value']
230 return value
Steve Baker450aa7f2014-08-25 10:37:27 +1200231
232 def _ping_ip_address(self, ip_address, should_succeed=True):
233 cmd = ['ping', '-c1', '-w1', ip_address]
234
235 def ping():
236 proc = subprocess.Popen(cmd,
237 stdout=subprocess.PIPE,
238 stderr=subprocess.PIPE)
239 proc.wait()
240 return (proc.returncode == 0) == should_succeed
241
242 return call_until_true(
Angus Salkeld08514ad2015-02-06 10:08:31 +1000243 self.conf.build_timeout, 1, ping)
Steve Baker450aa7f2014-08-25 10:37:27 +1200244
Angus Salkelda7500d12015-04-10 15:44:07 +1000245 def _wait_for_all_resource_status(self, stack_identifier,
246 status, failure_pattern='^.*_FAILED$',
247 success_on_not_found=False):
248 for res in self.client.resources.list(stack_identifier):
249 self._wait_for_resource_status(
250 stack_identifier, res.resource_name,
251 status, failure_pattern=failure_pattern,
252 success_on_not_found=success_on_not_found)
253
Steve Baker450aa7f2014-08-25 10:37:27 +1200254 def _wait_for_resource_status(self, stack_identifier, resource_name,
255 status, failure_pattern='^.*_FAILED$',
256 success_on_not_found=False):
257 """Waits for a Resource to reach a given status."""
258 fail_regexp = re.compile(failure_pattern)
259 build_timeout = self.conf.build_timeout
260 build_interval = self.conf.build_interval
261
262 start = timeutils.utcnow()
263 while timeutils.delta_seconds(start,
264 timeutils.utcnow()) < build_timeout:
265 try:
266 res = self.client.resources.get(
267 stack_identifier, resource_name)
268 except heat_exceptions.HTTPNotFound:
269 if success_on_not_found:
270 return
271 # ignore this, as the resource may not have
272 # been created yet
273 else:
274 if res.resource_status == status:
275 return
Sirushti Murugesane5ad25b2015-04-18 23:30:59 +0530276 wait_for_action = status.split('_')[0]
277 resource_action = res.resource_status.split('_')[0]
278 if (resource_action == wait_for_action and
279 fail_regexp.search(res.resource_status)):
Steve Baker450aa7f2014-08-25 10:37:27 +1200280 raise exceptions.StackResourceBuildErrorException(
281 resource_name=res.resource_name,
282 stack_identifier=stack_identifier,
283 resource_status=res.resource_status,
284 resource_status_reason=res.resource_status_reason)
285 time.sleep(build_interval)
286
287 message = ('Resource %s failed to reach %s status within '
288 'the required time (%s s).' %
Anastasia Kuznetsova9a745572015-03-04 13:19:15 +0400289 (resource_name, status, build_timeout))
Steve Baker450aa7f2014-08-25 10:37:27 +1200290 raise exceptions.TimeoutException(message)
291
Rabi Mishra87be9b42016-02-15 14:15:50 +0530292 def verify_resource_status(self, stack_identifier, resource_name,
293 status='CREATE_COMPLETE'):
294 try:
295 res = self.client.resources.get(stack_identifier, resource_name)
296 except heat_exceptions.HTTPNotFound:
297 return False
298 return res.resource_status == status
299
rabi5eaa4962017-08-31 10:55:13 +0530300 def _verify_status(self, stack, stack_identifier, status,
301 fail_regexp, is_action_cancelled=False):
Sirushti Murugesan13a8a172015-04-14 00:30:05 +0530302 if stack.stack_status == status:
Sergey Kraynev89082a32015-09-04 04:42:33 -0400303 # Handle UPDATE_COMPLETE/FAILED case: Make sure we don't
304 # wait for a stale UPDATE_COMPLETE/FAILED status.
305 if status in ('UPDATE_FAILED', 'UPDATE_COMPLETE'):
rabi5eaa4962017-08-31 10:55:13 +0530306 if is_action_cancelled:
307 return True
308
Sirushti Murugesan13a8a172015-04-14 00:30:05 +0530309 if self.updated_time.get(
310 stack_identifier) != stack.updated_time:
311 self.updated_time[stack_identifier] = stack.updated_time
312 return True
Thomas Herve0e8567e2016-09-22 15:07:37 +0200313 elif status == 'DELETE_COMPLETE' and stack.deletion_time is None:
314 # Wait for deleted_time to be filled, so that we have more
315 # confidence the operation is finished.
316 return False
Sirushti Murugesan13a8a172015-04-14 00:30:05 +0530317 else:
318 return True
319
Sirushti Murugesane5ad25b2015-04-18 23:30:59 +0530320 wait_for_action = status.split('_')[0]
321 if (stack.action == wait_for_action and
322 fail_regexp.search(stack.stack_status)):
Sergey Kraynev89082a32015-09-04 04:42:33 -0400323 # Handle UPDATE_COMPLETE/UPDATE_FAILED case.
324 if status in ('UPDATE_FAILED', 'UPDATE_COMPLETE'):
Sirushti Murugesan13a8a172015-04-14 00:30:05 +0530325 if self.updated_time.get(
326 stack_identifier) != stack.updated_time:
327 self.updated_time[stack_identifier] = stack.updated_time
328 raise exceptions.StackBuildErrorException(
329 stack_identifier=stack_identifier,
330 stack_status=stack.stack_status,
331 stack_status_reason=stack.stack_status_reason)
332 else:
333 raise exceptions.StackBuildErrorException(
334 stack_identifier=stack_identifier,
335 stack_status=stack.stack_status,
336 stack_status_reason=stack.stack_status_reason)
337
Steve Baker450aa7f2014-08-25 10:37:27 +1200338 def _wait_for_stack_status(self, stack_identifier, status,
Sergey Kraynev89082a32015-09-04 04:42:33 -0400339 failure_pattern=None,
Rabi Mishra81ca6bc2016-06-16 15:09:20 +0530340 success_on_not_found=False,
341 signal_required=False,
rabi5eaa4962017-08-31 10:55:13 +0530342 resources_to_signal=None,
343 is_action_cancelled=False):
Peter Razumovskyf0ac9582015-09-24 16:49:03 +0300344 """Waits for a Stack to reach a given status.
Steve Baker450aa7f2014-08-25 10:37:27 +1200345
346 Note this compares the full $action_$status, e.g
347 CREATE_COMPLETE, not just COMPLETE which is exposed
348 via the status property of Stack in heatclient
349 """
Sergey Kraynev89082a32015-09-04 04:42:33 -0400350 if failure_pattern:
351 fail_regexp = re.compile(failure_pattern)
352 elif 'FAILED' in status:
353 # If we're looking for e.g CREATE_FAILED, COMPLETE is unexpected.
354 fail_regexp = re.compile('^.*_COMPLETE$')
355 else:
356 fail_regexp = re.compile('^.*_FAILED$')
Steve Baker450aa7f2014-08-25 10:37:27 +1200357 build_timeout = self.conf.build_timeout
358 build_interval = self.conf.build_interval
359
360 start = timeutils.utcnow()
361 while timeutils.delta_seconds(start,
362 timeutils.utcnow()) < build_timeout:
363 try:
Sergey Kraynevf07f4712016-02-15 05:24:17 -0500364 stack = self.client.stacks.get(stack_identifier,
365 resolve_outputs=False)
Steve Baker450aa7f2014-08-25 10:37:27 +1200366 except heat_exceptions.HTTPNotFound:
367 if success_on_not_found:
368 return
369 # ignore this, as the resource may not have
370 # been created yet
371 else:
Sirushti Murugesan13a8a172015-04-14 00:30:05 +0530372 if self._verify_status(stack, stack_identifier, status,
rabi5eaa4962017-08-31 10:55:13 +0530373 fail_regexp, is_action_cancelled):
Steve Baker450aa7f2014-08-25 10:37:27 +1200374 return
Rabi Mishra81ca6bc2016-06-16 15:09:20 +0530375 if signal_required:
376 self.signal_resources(resources_to_signal)
Steve Baker450aa7f2014-08-25 10:37:27 +1200377 time.sleep(build_interval)
378
379 message = ('Stack %s failed to reach %s status within '
380 'the required time (%s s).' %
Anastasia Kuznetsova9a745572015-03-04 13:19:15 +0400381 (stack_identifier, status, build_timeout))
Steve Baker450aa7f2014-08-25 10:37:27 +1200382 raise exceptions.TimeoutException(message)
383
384 def _stack_delete(self, stack_identifier):
385 try:
Thomas Herve3eab2942015-10-22 17:29:21 +0200386 self._handle_in_progress(self.client.stacks.delete,
387 stack_identifier)
Steve Baker450aa7f2014-08-25 10:37:27 +1200388 except heat_exceptions.HTTPNotFound:
389 pass
390 self._wait_for_stack_status(
391 stack_identifier, 'DELETE_COMPLETE',
392 success_on_not_found=True)
Steven Hardyc9efd972014-11-20 11:31:55 +0000393
Thomas Herve3eab2942015-10-22 17:29:21 +0200394 def _handle_in_progress(self, fn, *args, **kwargs):
395 build_timeout = self.conf.build_timeout
396 build_interval = self.conf.build_interval
397 start = timeutils.utcnow()
398 while timeutils.delta_seconds(start,
399 timeutils.utcnow()) < build_timeout:
400 try:
401 fn(*args, **kwargs)
402 except heat_exceptions.HTTPConflict as ex:
403 # FIXME(sirushtim): Wait a little for the stack lock to be
404 # released and hopefully, the stack should be usable again.
405 if ex.error['error']['type'] != 'ActionInProgress':
406 raise ex
407
408 time.sleep(build_interval)
409 else:
410 break
411
Steven Hardy23284b62015-10-01 19:03:42 +0100412 def update_stack(self, stack_identifier, template=None, environment=None,
Sabeen Syed277ea692015-02-04 23:30:02 +0000413 files=None, parameters=None, tags=None,
Rakesh H Sa3325d62015-04-04 19:42:29 +0530414 expected_status='UPDATE_COMPLETE',
Steven Hardy23284b62015-10-01 19:03:42 +0100415 disable_rollback=True,
416 existing=False):
Steven Hardyc9efd972014-11-20 11:31:55 +0000417 env = environment or {}
418 env_files = files or {}
Sergey Kraynevbcc78df2015-02-27 04:34:32 -0500419 parameters = parameters or {}
Sirushti Murugesan3a195a52015-05-01 09:47:09 +0530420
Sergey Kraynev89082a32015-09-04 04:42:33 -0400421 self.updated_time[stack_identifier] = self.client.stacks.get(
Sergey Kraynevf07f4712016-02-15 05:24:17 -0500422 stack_identifier, resolve_outputs=False).updated_time
Sirushti Murugesan3a195a52015-05-01 09:47:09 +0530423
Thomas Herve3eab2942015-10-22 17:29:21 +0200424 self._handle_in_progress(
425 self.client.stacks.update,
426 stack_id=stack_identifier,
Thomas Herve3eab2942015-10-22 17:29:21 +0200427 template=template,
428 files=env_files,
429 disable_rollback=disable_rollback,
430 parameters=parameters,
431 environment=env,
432 tags=tags,
433 existing=existing)
Sirushti Murugesan3a195a52015-05-01 09:47:09 +0530434
Rakesh H Sa3325d62015-04-04 19:42:29 +0530435 kwargs = {'stack_identifier': stack_identifier,
436 'status': expected_status}
437 if expected_status in ['ROLLBACK_COMPLETE']:
Rakesh H Sa3325d62015-04-04 19:42:29 +0530438 # To trigger rollback you would intentionally fail the stack
439 # Hence check for rollback failures
440 kwargs['failure_pattern'] = '^ROLLBACK_FAILED$'
441
442 self._wait_for_stack_status(**kwargs)
Steven Hardyc9efd972014-11-20 11:31:55 +0000443
rabi5eaa4962017-08-31 10:55:13 +0530444 def cancel_update_stack(self, stack_identifier, rollback=True,
Oleksii Chuprykovfc2c58f2016-04-29 17:03:17 +0300445 expected_status='ROLLBACK_COMPLETE'):
446
447 stack_name = stack_identifier.split('/')[0]
448
449 self.updated_time[stack_identifier] = self.client.stacks.get(
450 stack_identifier, resolve_outputs=False).updated_time
451
rabi5eaa4962017-08-31 10:55:13 +0530452 if rollback:
453 self.client.actions.cancel_update(stack_name)
454 else:
455 self.client.actions.cancel_without_rollback(stack_name)
Oleksii Chuprykovfc2c58f2016-04-29 17:03:17 +0300456
457 kwargs = {'stack_identifier': stack_identifier,
458 'status': expected_status}
rabi5eaa4962017-08-31 10:55:13 +0530459 if expected_status == 'UPDATE_FAILED':
460 kwargs['is_action_cancelled'] = True
461
Oleksii Chuprykovfc2c58f2016-04-29 17:03:17 +0300462 if expected_status in ['ROLLBACK_COMPLETE']:
463 # To trigger rollback you would intentionally fail the stack
464 # Hence check for rollback failures
465 kwargs['failure_pattern'] = '^ROLLBACK_FAILED$'
466
467 self._wait_for_stack_status(**kwargs)
468
Jason Dunsmoreb5aa9022015-09-09 16:57:04 -0500469 def preview_update_stack(self, stack_identifier, template,
470 environment=None, files=None, parameters=None,
Steven Hardye6de2d62015-12-07 15:59:09 +0000471 tags=None, disable_rollback=True,
472 show_nested=False):
Jason Dunsmoreb5aa9022015-09-09 16:57:04 -0500473 env = environment or {}
474 env_files = files or {}
475 parameters = parameters or {}
Jason Dunsmoreb5aa9022015-09-09 16:57:04 -0500476
477 return self.client.stacks.preview_update(
478 stack_id=stack_identifier,
Jason Dunsmoreb5aa9022015-09-09 16:57:04 -0500479 template=template,
480 files=env_files,
481 disable_rollback=disable_rollback,
482 parameters=parameters,
483 environment=env,
Steven Hardye6de2d62015-12-07 15:59:09 +0000484 tags=tags,
485 show_nested=show_nested
Jason Dunsmoreb5aa9022015-09-09 16:57:04 -0500486 )
487
Steven Hardy03da0742015-03-19 00:13:17 -0400488 def assert_resource_is_a_stack(self, stack_identifier, res_name,
489 wait=False):
490 build_timeout = self.conf.build_timeout
491 build_interval = self.conf.build_interval
492 start = timeutils.utcnow()
493 while timeutils.delta_seconds(start,
494 timeutils.utcnow()) < build_timeout:
495 time.sleep(build_interval)
496 try:
497 nested_identifier = self._get_nested_identifier(
498 stack_identifier, res_name)
499 except Exception:
500 # We may have to wait, if the create is in-progress
501 if wait:
502 time.sleep(build_interval)
503 else:
504 raise
505 else:
506 return nested_identifier
507
508 def _get_nested_identifier(self, stack_identifier, res_name):
Angus Salkeld2bd63a42015-01-07 11:11:29 +1000509 rsrc = self.client.resources.get(stack_identifier, res_name)
510 nested_link = [l for l in rsrc.links if l['rel'] == 'nested']
511 nested_href = nested_link[0]['href']
512 nested_id = nested_href.split('/')[-1]
513 nested_identifier = '/'.join(nested_href.split('/')[-2:])
514 self.assertEqual(rsrc.physical_resource_id, nested_id)
515
Sergey Kraynevf07f4712016-02-15 05:24:17 -0500516 nested_stack = self.client.stacks.get(nested_id, resolve_outputs=False)
Angus Salkeld2bd63a42015-01-07 11:11:29 +1000517 nested_identifier2 = '%s/%s' % (nested_stack.stack_name,
518 nested_stack.id)
519 self.assertEqual(nested_identifier, nested_identifier2)
520 parent_id = stack_identifier.split("/")[-1]
521 self.assertEqual(parent_id, nested_stack.parent)
522 return nested_identifier
523
Rabi Mishra8bcff8a2015-09-21 18:15:04 +0530524 def group_nested_identifier(self, stack_identifier,
525 group_name):
526 # Get the nested stack identifier from a group resource
527 rsrc = self.client.resources.get(stack_identifier, group_name)
528 physical_resource_id = rsrc.physical_resource_id
529
Sergey Kraynevf07f4712016-02-15 05:24:17 -0500530 nested_stack = self.client.stacks.get(physical_resource_id,
531 resolve_outputs=False)
Rabi Mishra8bcff8a2015-09-21 18:15:04 +0530532 nested_identifier = '%s/%s' % (nested_stack.stack_name,
533 nested_stack.id)
534 parent_id = stack_identifier.split("/")[-1]
535 self.assertEqual(parent_id, nested_stack.parent)
536 return nested_identifier
537
538 def list_group_resources(self, stack_identifier,
539 group_name, minimal=True):
540 nested_identifier = self.group_nested_identifier(stack_identifier,
541 group_name)
542 if minimal:
543 return self.list_resources(nested_identifier)
544 return self.client.resources.list(nested_identifier)
545
Steven Hardyc9efd972014-11-20 11:31:55 +0000546 def list_resources(self, stack_identifier):
547 resources = self.client.resources.list(stack_identifier)
548 return dict((r.resource_name, r.resource_type) for r in resources)
Steven Hardyf2c82c02014-11-20 14:02:17 +0000549
Steven Hardyd448dae2016-06-14 14:57:28 +0100550 def get_resource_stack_id(self, r):
551 stack_link = [l for l in r.links if l.get('rel') == 'stack'][0]
552 return stack_link['href'].split("/")[-1]
553
Botond Zoltáne0b7aa12017-03-28 08:42:16 +0200554 def get_physical_resource_id(self, stack_identifier, resource_name):
555 try:
556 resource = self.client.resources.get(
557 stack_identifier, resource_name)
558 return resource.physical_resource_id
559 except Exception:
560 raise Exception('Resource (%s) not found in stack (%s)!' %
561 (stack_identifier, resource_name))
562
563 def get_stack_output(self, stack_identifier, output_key,
564 validate_errors=True):
565 stack = self.client.stacks.get(stack_identifier)
566 return self._stack_output(stack, output_key, validate_errors)
567
Rabi Mishra81ca6bc2016-06-16 15:09:20 +0530568 def check_input_values(self, group_resources, key, value):
569 # Check inputs for deployment and derived config
570 for r in group_resources:
571 d = self.client.software_deployments.get(
572 r.physical_resource_id)
573 self.assertEqual({key: value}, d.input_values)
574 c = self.client.software_configs.get(
575 d.config_id)
576 foo_input_c = [i for i in c.inputs if i.get('name') == key][0]
577 self.assertEqual(value, foo_input_c.get('value'))
578
579 def signal_resources(self, resources):
580 # Signal all IN_PROGRESS resources
581 for r in resources:
582 if 'IN_PROGRESS' in r.resource_status:
583 stack_id = self.get_resource_stack_id(r)
584 self.client.resources.signal(stack_id, r.resource_name)
585
Steven Hardyf2c82c02014-11-20 14:02:17 +0000586 def stack_create(self, stack_name=None, template=None, files=None,
Sabeen Syed277ea692015-02-04 23:30:02 +0000587 parameters=None, environment=None, tags=None,
588 expected_status='CREATE_COMPLETE',
Jay Dobies39c4ce42015-11-04 10:49:08 -0500589 disable_rollback=True, enable_cleanup=True,
rabi6ce8d962017-07-10 16:40:12 +0530590 environment_files=None, timeout=None):
Steven Hardyf2c82c02014-11-20 14:02:17 +0000591 name = stack_name or self._stack_rand_name()
592 templ = template or self.template
593 templ_files = files or {}
594 params = parameters or {}
595 env = environment or {}
rabi6ce8d962017-07-10 16:40:12 +0530596 timeout_mins = timeout or self.conf.build_timeout
Steven Hardyf2c82c02014-11-20 14:02:17 +0000597 self.client.stacks.create(
598 stack_name=name,
599 template=templ,
600 files=templ_files,
Rakesh H Sa3325d62015-04-04 19:42:29 +0530601 disable_rollback=disable_rollback,
Steven Hardyf2c82c02014-11-20 14:02:17 +0000602 parameters=params,
Sabeen Syed277ea692015-02-04 23:30:02 +0000603 environment=env,
Jay Dobies39c4ce42015-11-04 10:49:08 -0500604 tags=tags,
rabi6ce8d962017-07-10 16:40:12 +0530605 environment_files=environment_files,
606 timeout_mins=timeout_mins
Steven Hardyf2c82c02014-11-20 14:02:17 +0000607 )
rabic570e0f2017-10-26 13:07:13 +0530608 if enable_cleanup:
Steve Bakerdbea6ab2015-08-19 13:37:08 +1200609 self.addCleanup(self._stack_delete, name)
Steven Hardyf2c82c02014-11-20 14:02:17 +0000610
Sergey Kraynevf07f4712016-02-15 05:24:17 -0500611 stack = self.client.stacks.get(name, resolve_outputs=False)
Steven Hardyf2c82c02014-11-20 14:02:17 +0000612 stack_identifier = '%s/%s' % (name, stack.id)
Rakesh H Sa3325d62015-04-04 19:42:29 +0530613 kwargs = {'stack_identifier': stack_identifier,
614 'status': expected_status}
Steve Bakerf6c8f122015-02-10 13:54:46 +1300615 if expected_status:
Rakesh H Sa3325d62015-04-04 19:42:29 +0530616 if expected_status in ['ROLLBACK_COMPLETE']:
617 # To trigger rollback you would intentionally fail the stack
618 # Hence check for rollback failures
619 kwargs['failure_pattern'] = '^ROLLBACK_FAILED$'
620 self._wait_for_stack_status(**kwargs)
Steven Hardyf2c82c02014-11-20 14:02:17 +0000621 return stack_identifier
Angus Salkeld2bd63a42015-01-07 11:11:29 +1000622
623 def stack_adopt(self, stack_name=None, files=None,
624 parameters=None, environment=None, adopt_data=None,
625 wait_for_status='ADOPT_COMPLETE'):
Rabi Mishra477efc92015-07-31 13:01:45 +0530626 if (self.conf.skip_test_stack_action_list and
627 'ADOPT' in self.conf.skip_test_stack_action_list):
Sirushti Murugesan04ee8022015-02-02 23:00:23 +0530628 self.skipTest('Testing Stack adopt disabled in conf, skipping')
Angus Salkeld2bd63a42015-01-07 11:11:29 +1000629 name = stack_name or self._stack_rand_name()
630 templ_files = files or {}
631 params = parameters or {}
632 env = environment or {}
633 self.client.stacks.create(
634 stack_name=name,
635 files=templ_files,
636 disable_rollback=True,
637 parameters=params,
638 environment=env,
639 adopt_stack_data=adopt_data,
640 )
Steve Bakerdbea6ab2015-08-19 13:37:08 +1200641 self.addCleanup(self._stack_delete, name)
Sergey Kraynevf07f4712016-02-15 05:24:17 -0500642 stack = self.client.stacks.get(name, resolve_outputs=False)
Angus Salkeld2bd63a42015-01-07 11:11:29 +1000643 stack_identifier = '%s/%s' % (name, stack.id)
644 self._wait_for_stack_status(stack_identifier, wait_for_status)
645 return stack_identifier
Sirushti Murugesan04ee8022015-02-02 23:00:23 +0530646
647 def stack_abandon(self, stack_id):
Rabi Mishra477efc92015-07-31 13:01:45 +0530648 if (self.conf.skip_test_stack_action_list and
649 'ABANDON' in self.conf.skip_test_stack_action_list):
Steve Bakerdbea6ab2015-08-19 13:37:08 +1200650 self.addCleanup(self._stack_delete, stack_id)
Sirushti Murugesan04ee8022015-02-02 23:00:23 +0530651 self.skipTest('Testing Stack abandon disabled in conf, skipping')
652 info = self.client.stacks.abandon(stack_id=stack_id)
653 return info
Oleksii Chuprykovd9cd9dc2015-02-03 10:34:55 -0500654
rabi90b3ab42017-05-04 13:02:28 +0530655 def stack_snapshot(self, stack_id,
656 wait_for_status='SNAPSHOT_COMPLETE'):
657 snapshot = self.client.stacks.snapshot(stack_id=stack_id)
658 self._wait_for_stack_status(stack_id, wait_for_status)
659 return snapshot['id']
660
661 def stack_restore(self, stack_id, snapshot_id,
662 wait_for_status='RESTORE_COMPLETE'):
663 self.client.stacks.restore(stack_id, snapshot_id)
664 self._wait_for_stack_status(stack_id, wait_for_status)
665
Oleksii Chuprykovd9cd9dc2015-02-03 10:34:55 -0500666 def stack_suspend(self, stack_identifier):
Rabi Mishra477efc92015-07-31 13:01:45 +0530667 if (self.conf.skip_test_stack_action_list and
668 'SUSPEND' in self.conf.skip_test_stack_action_list):
Steve Bakerdbea6ab2015-08-19 13:37:08 +1200669 self.addCleanup(self._stack_delete, stack_identifier)
Rabi Mishra477efc92015-07-31 13:01:45 +0530670 self.skipTest('Testing Stack suspend disabled in conf, skipping')
rabif7d67082016-05-17 18:51:22 +0530671 self._handle_in_progress(self.client.actions.suspend, stack_identifier)
Angus Salkelda7500d12015-04-10 15:44:07 +1000672 # improve debugging by first checking the resource's state.
673 self._wait_for_all_resource_status(stack_identifier,
674 'SUSPEND_COMPLETE')
Oleksii Chuprykovd9cd9dc2015-02-03 10:34:55 -0500675 self._wait_for_stack_status(stack_identifier, 'SUSPEND_COMPLETE')
676
677 def stack_resume(self, stack_identifier):
Rabi Mishra477efc92015-07-31 13:01:45 +0530678 if (self.conf.skip_test_stack_action_list and
679 'RESUME' in self.conf.skip_test_stack_action_list):
Steve Bakerdbea6ab2015-08-19 13:37:08 +1200680 self.addCleanup(self._stack_delete, stack_identifier)
Rabi Mishra477efc92015-07-31 13:01:45 +0530681 self.skipTest('Testing Stack resume disabled in conf, skipping')
rabif7d67082016-05-17 18:51:22 +0530682 self._handle_in_progress(self.client.actions.resume, stack_identifier)
Angus Salkelda7500d12015-04-10 15:44:07 +1000683 # improve debugging by first checking the resource's state.
684 self._wait_for_all_resource_status(stack_identifier,
685 'RESUME_COMPLETE')
Oleksii Chuprykovd9cd9dc2015-02-03 10:34:55 -0500686 self._wait_for_stack_status(stack_identifier, 'RESUME_COMPLETE')
Steven Hardy03da0742015-03-19 00:13:17 -0400687
688 def wait_for_event_with_reason(self, stack_identifier, reason,
689 rsrc_name=None, num_expected=1):
690 build_timeout = self.conf.build_timeout
691 build_interval = self.conf.build_interval
692 start = timeutils.utcnow()
693 while timeutils.delta_seconds(start,
694 timeutils.utcnow()) < build_timeout:
695 try:
696 rsrc_events = self.client.events.list(stack_identifier,
697 resource_name=rsrc_name)
698 except heat_exceptions.HTTPNotFound:
liyi09461f72017-03-21 12:17:51 +0800699 LOG.debug("No events yet found for %s", rsrc_name)
Steven Hardy03da0742015-03-19 00:13:17 -0400700 else:
701 matched = [e for e in rsrc_events
702 if e.resource_status_reason == reason]
703 if len(matched) == num_expected:
704 return matched
705 time.sleep(build_interval)
Rakesh H Sc5735a82016-04-28 15:38:09 +0530706
Thomas Hervea6afca82017-04-10 23:44:26 +0200707 def check_autoscale_complete(self, stack_id, expected_num, parent_stack,
708 policy):
Rakesh H Sc5735a82016-04-28 15:38:09 +0530709 res_list = self.client.resources.list(stack_id)
710 all_res_complete = all(res.resource_status in ('UPDATE_COMPLETE',
711 'CREATE_COMPLETE')
712 for res in res_list)
713 all_res = len(res_list) == expected_num
Thomas Hervea6afca82017-04-10 23:44:26 +0200714 if all_res and all_res_complete:
715 metadata = self.client.resources.metadata(parent_stack, policy)
716 return not metadata.get('scaling_in_progress')
717 return False