From: yuyang Date: Fri, 4 Nov 2016 15:30:41 +0000 (+0800) Subject: Add stack created judging logic X-Git-Tag: danube.1.RC1~56 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?p=bottlenecks.git;a=commitdiff_plain;h=00fd400230d4ec9f09aea10821a5a61ec28763f9 Add stack created judging logic JIRA: BOTTLENECK-103 The stack created judging logic in Rubbos testsuite is optimized by replacing the wating method with judging from the stack created return value. Change-Id: Ie96476fbfb8baf995237f71b993cf9d381b94217 Signed-off-by: yuyang --- diff --git a/testsuites/rubbos/run_rubbos.py b/testsuites/rubbos/run_rubbos.py index 18103f7a..f0fb089a 100755 --- a/testsuites/rubbos/run_rubbos.py +++ b/testsuites/rubbos/run_rubbos.py @@ -214,7 +214,7 @@ def rubbos_create_instances( print "Created stack, id=" + str(stack_id) + ", status=" + str(stack_status) timeInProgress = 0 - while stack_status == "CREATE_IN_PROGRESS" and timeInProgress < 150: + while stack_status == "CREATE_IN_PROGRESS" and timeInProgress < 3600: print " stack's status: %s, after %d seconds" % (stack_status, timeInProgress) time.sleep(5) timeInProgress = timeInProgress + 5 @@ -458,9 +458,13 @@ def main(): else: print "Cannot create instances, as Failed to create image(s)." exit(-1) - - print "Wait 600 seconds after stack creation..." - time.sleep(600) + + if stack_created: + print "The rubbos_stack is created successfully. \ + Now to run rubbos instances!" + else: + print "The rubbos_stack failed to be created. Exit the test!" + exit(-1) # reboot_instances() # time.sleep(180)