Ignore not found when delete in test

Ignore not found when delete stack or stack snapshot in tests.
Story: #1737100
Task: #19354

Change-Id: I6c980b68023b33dc318c5d9506c2cac5866c4924
This commit is contained in:
ricolin 2018-02-07 15:44:18 +08:00 committed by Rico Lin
parent aab5b85811
commit 3b74f2ddd1
1 changed files with 8 additions and 1 deletions

View File

@ -15,6 +15,7 @@ import os
import six
from tempest.lib.cli import base
from tempest.lib.cli import output_parser
from tempest.lib import exceptions as tempest_exc
class OpenStackClientTestBase(base.ClientTestBase):
@ -81,7 +82,13 @@ class OpenStackClientTestBase(base.ClientTestBase):
if wait:
cmd += ' --wait'
if id in self.openstack('stack list --short'):
self.openstack(cmd)
try:
self.openstack(cmd)
except tempest_exc.CommandFailed as e:
msg = "Stack not found: %s" % id
if msg in six.text_type(e.stdout):
return
raise
def _stack_suspend(self, id, wait=True):
cmd = 'stack suspend ' + id