mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
CLOUDSTACK-7125: Fixed test_blocker_bugs.py, added code to wait for snapshots to be in 'BackedU' state
This commit is contained in:
parent
78a6d557f8
commit
49005b324f
@ -863,26 +863,9 @@ class TestTemplates(cloudstackTestCase):
|
|||||||
account=self.account.name,
|
account=self.account.name,
|
||||||
domainid=self.account.domainid
|
domainid=self.account.domainid
|
||||||
)
|
)
|
||||||
self.debug("Created snapshot with ID: %s" % snapshot.id)
|
|
||||||
snapshots = Snapshot.list(
|
response = snapshot.validateState(self.apiclient, Snapshot.BACKED_UP)
|
||||||
self.apiclient,
|
self.assertEqual(response[0], PASS, response[1])
|
||||||
id=snapshot.id
|
|
||||||
)
|
|
||||||
self.assertEqual(
|
|
||||||
isinstance(snapshots, list),
|
|
||||||
True,
|
|
||||||
"Check list response returns a valid list"
|
|
||||||
)
|
|
||||||
self.assertNotEqual(
|
|
||||||
snapshots,
|
|
||||||
None,
|
|
||||||
"Check if result exists in list snapshots call"
|
|
||||||
)
|
|
||||||
self.assertEqual(
|
|
||||||
snapshots[0].id,
|
|
||||||
snapshot.id,
|
|
||||||
"Check snapshot id in list resources call"
|
|
||||||
)
|
|
||||||
|
|
||||||
# Generate template from the snapshot
|
# Generate template from the snapshot
|
||||||
template = Template.create_from_snapshot(
|
template = Template.create_from_snapshot(
|
||||||
@ -945,26 +928,8 @@ class TestTemplates(cloudstackTestCase):
|
|||||||
account=self.account.name,
|
account=self.account.name,
|
||||||
domainid=self.account.domainid
|
domainid=self.account.domainid
|
||||||
)
|
)
|
||||||
self.debug("Created snapshot with ID: %s" % snapshot.id)
|
response = snapshot.validateState(self.apiclient, Snapshot.BACKED_UP)
|
||||||
snapshots = Snapshot.list(
|
self.assertEqual(response[0], PASS, response[1])
|
||||||
self.apiclient,
|
|
||||||
id=snapshot.id
|
|
||||||
)
|
|
||||||
self.assertEqual(
|
|
||||||
isinstance(snapshots, list),
|
|
||||||
True,
|
|
||||||
"Check list response returns a valid list"
|
|
||||||
)
|
|
||||||
self.assertNotEqual(
|
|
||||||
snapshots,
|
|
||||||
None,
|
|
||||||
"Check if result exists in list snapshots call"
|
|
||||||
)
|
|
||||||
self.assertEqual(
|
|
||||||
snapshots[0].id,
|
|
||||||
snapshot.id,
|
|
||||||
"Check snapshot id in list resources call"
|
|
||||||
)
|
|
||||||
|
|
||||||
# Generate template from the snapshot
|
# Generate template from the snapshot
|
||||||
template = Template.create_from_snapshot(
|
template = Template.create_from_snapshot(
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user