marvin,test: fix directdownload template checksum test (#8096)

* marvin,test: fix directdownload template checksum test

During failure while deploying a VM with wrong checksum template, VM may be left in Error state. This PR adds code to delete such VM.

Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>

* remove unnecessary logs

---------

Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>
This commit is contained in:
Abhishek Kumar 2023-10-19 23:10:03 +05:30 committed by GitHub
parent f62b634033
commit a2ec1f3777
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 14 deletions

View File

@ -989,6 +989,8 @@ class TestTemplates(cloudstackTestCase):
) )
for template in list_template_response: for template in list_template_response:
if template.directdownload == True:
continue
self.assertNotEqual( self.assertNotEqual(
len(template.downloaddetails), len(template.downloaddetails),
0, 0,
@ -1248,11 +1250,7 @@ class TestCreateTemplateWithDirectDownload(cloudstackTestCase):
@classmethod @classmethod
def tearDownClass(cls): def tearDownClass(cls):
try: super(TestCreateTemplateWithDirectDownload, cls).tearDownClass()
cleanup_resources(cls.apiclient, cls._cleanup)
except Exception as e:
raise Exception("Warning: Exception during cleanup : %s" % e)
return
def setUp(self): def setUp(self):
self.apiclient = self.testClient.getApiClient() self.apiclient = self.testClient.getApiClient()
@ -1264,13 +1262,7 @@ class TestCreateTemplateWithDirectDownload(cloudstackTestCase):
return return
def tearDown(self): def tearDown(self):
try: super(TestCreateTemplateWithDirectDownload, self).tearDown()
#Clean up, terminate the created templates
cleanup_resources(self.apiclient, self.cleanup)
except Exception as e:
raise Exception("Warning: Exception during cleanup : %s" % e)
return
@attr(tags=["advanced", "smoke"], required_hardware="true") @attr(tags=["advanced", "smoke"], required_hardware="true")
def test_01_register_template_direct_download_flag(self): def test_01_register_template_direct_download_flag(self):
@ -1323,10 +1315,11 @@ class TestCreateTemplateWithDirectDownload(cloudstackTestCase):
""" """
Deploy a VM from a Direct Download registered template with wrong checksum Deploy a VM from a Direct Download registered template with wrong checksum
""" """
self.template["checksum"]="{MD5}XXXXXXX" self.template["checksum"]="{MD5}" + ("X" * 32)
tmpl = Template.register(self.apiclient, self.template, zoneid=self.zone.id, hypervisor=self.hypervisor, randomize_name=False) tmpl = Template.register(self.apiclient, self.template, zoneid=self.zone.id, hypervisor=self.hypervisor, randomize_name=False)
self.cleanup.append(tmpl) self.cleanup.append(tmpl)
failed = False
try: try:
virtual_machine = VirtualMachine.create( virtual_machine = VirtualMachine.create(
self.apiclient, self.apiclient,
@ -1337,8 +1330,19 @@ class TestCreateTemplateWithDirectDownload(cloudstackTestCase):
serviceofferingid=self.service_offering.id serviceofferingid=self.service_offering.id
) )
self.cleanup.append(virtual_machine) self.cleanup.append(virtual_machine)
self.fail("Expected to fail deployment") failed = True
except Exception as e: except Exception as e:
self.debug("Expected exception") self.debug("Expected exception")
list_virtual_machine_response = VirtualMachine.list(
self.apiclient,
templateid=tmpl.id,
listall=True
)
if type(list_virtual_machine_response) == list and len(list_virtual_machine_response) > 0:
for virtual_machine_response in list_virtual_machine_response:
VirtualMachine.delete(virtual_machine_response, self.apiclient, expunge=True)
if failed == True:
self.fail("Expected to fail VM deployment with wrong checksum template")
return return

View File

@ -1518,6 +1518,8 @@ class Template:
if "directdownload" in services: if "directdownload" in services:
cmd.directdownload = services["directdownload"] cmd.directdownload = services["directdownload"]
if "checksum" in services:
cmd.checksum = services["checksum"]
# Register Template # Register Template
template = apiclient.registerTemplate(cmd) template = apiclient.registerTemplate(cmd)