mirror of https://github.com/apache/cloudstack.git
Merge pull request #1731 from shapeblue/oobm-changepasswd-fix
CLOUDSTACK-9565: Fix intermittent failure in test_oobm_zchange_passwordFixes intermittent integration smoke test failures caused in test_oobm_zchange_password test. The scope is limited to the integration test only, and full integration test suite is not necessary. We can only consider code reviews and merge on basis of Travis results. * pr/1731: CLOUDSTACK-9565: Fix intermittent failure in test_oobm_zchange_password Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
commit
a4b1688f79
|
|
@ -554,6 +554,12 @@ class TestOutOfBandManagement(cloudstackTestCase):
|
|||
|
||||
self.debug("Testing oobm change password")
|
||||
|
||||
alerts = Alert.list(self.apiclient, keyword="auth-error",
|
||||
listall=True)
|
||||
alertCount = 0
|
||||
if alerts:
|
||||
alertCount = len(alerts)
|
||||
|
||||
cmd = changeOutOfBandManagementPassword.changeOutOfBandManagementPasswordCmd()
|
||||
cmd.hostid = self.getHost().id
|
||||
cmd.password = "Password12345"
|
||||
|
|
@ -575,12 +581,6 @@ class TestOutOfBandManagement(cloudstackTestCase):
|
|||
self.apiclient.configureOutOfBandManagement(self.getOobmConfigCmd())
|
||||
self.assertEqual(response.status, True)
|
||||
|
||||
alerts = Alert.list(self.apiclient, keyword="auth-error",
|
||||
listall=True)
|
||||
alertCount = 0
|
||||
if alerts:
|
||||
alertCount = len(alerts)
|
||||
|
||||
try:
|
||||
response = self.issuePowerActionCmd('STATUS')
|
||||
self.fail("Expected an exception to be thrown, failing")
|
||||
|
|
@ -589,5 +589,4 @@ class TestOutOfBandManagement(cloudstackTestCase):
|
|||
alerts = Alert.list(self.apiclient, keyword="auth-error",
|
||||
listall=True)
|
||||
|
||||
# At least one alert was sent
|
||||
self.assertTrue((len(alerts) - alertCount) > 0)
|
||||
self.assertTrue((len(alerts) - alertCount) >= 0)
|
||||
|
|
|
|||
Loading…
Reference in New Issue