| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you under the Apache License, Version 2.0 (the |
| # "License"); you may not use this file except in compliance |
| # with the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless by applicable law or agreed to in writing, |
| # software distributed under the License is distributed on an |
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| # KIND, either express or implied. See the License for the |
| # specific language governing permissions and limitations |
| # under the License. |
| |
| #Test from the Marvin - Testing in Python wiki |
| |
| #All tests inherit from cloudstackTestCase |
| from marvin.cloudstackTestCase import cloudstackTestCase, unittest |
| |
| #Import Integration Libraries |
| |
| #base - contains all resources as entities and defines create, delete, list operations on them |
| from marvin.lib.base import Account, VirtualMachine, ServiceOffering , Template |
| |
| #utils - utility classes for common cleanup, external library wrappers etc |
| from marvin.lib.utils import cleanup_resources |
| |
| #common - commonly used methods for all tests are listed here |
| from marvin.lib.common import get_zone, get_domain, get_template, list_hosts ,list_service_offering, get_windows_template |
| |
| from marvin.sshClient import SshClient |
| |
| from marvin.codes import FAILED, XEN_SERVER |
| |
| from nose.plugins.attrib import attr |
| |
| import time |
| |
| class TestvGPUWindowsVm(cloudstackTestCase): |
| """ |
| Testing vGPU VM with All vGPU service offerings |
| """ |
| @classmethod |
| def setUpClass(cls): |
| testClient = super(TestvGPUWindowsVm, cls).getClsTestClient() |
| cls.testdata = cls.testClient.getParsedTestDataConfig() |
| cls.apiclient = cls.testClient.getApiClient() |
| cls._cleanup = [] |
| hosts = list_hosts( |
| cls.apiclient, |
| hypervisor="XenServer" |
| ) |
| if hosts is None: |
| raise unittest.SkipTest("There are no XenServers available. GPU feature is supported only on XenServer.Check listhosts response") |
| else: |
| cls.k140qgpuhosts=0 |
| cls.k120qgpuhosts=0 |
| cls.k100gpuhosts=0 |
| cls.k260qgpuhosts=0 |
| cls.k240qgpuhosts=0 |
| cls.k220qgpuhosts=0 |
| cls.k200gpuhosts=0 |
| cls.k1passthroughgpuhosts=0 |
| cls.k2passthroughgpuhosts=0 |
| k2hosts=0 |
| k1hosts=0 |
| |
| for ghost in hosts : |
| if ghost.hypervisorversion >= "6.2.0": |
| sshClient = SshClient(host=ghost.ipaddress, port=22, user='root',passwd="host_password") |
| |
| if ghost.hypervisorversion == "6.2.0": |
| res = sshClient.execute("xe patch-list uuid=0850b186-4d47-11e3-a720-001b2151a503") |
| if len(res) == 0: |
| continue |
| k1card= sshClient.execute("lspci | grep \"GRID K1\"") |
| k2card= sshClient.execute("lspci | grep \"GRID K2\"") |
| |
| if len(k2card) !=0: |
| k2hosts=k2hosts+1 |
| k260q = sshClient.execute("xe vgpu-type-list model-name=\"GRID K260Q\"") |
| k240q = sshClient.execute("xe vgpu-type-list model-name=\"GRID K240Q\"") |
| k220q = sshClient.execute("xe vgpu-type-list model-name=\"GRID K220Q\"") |
| k200 = sshClient.execute("xe vgpu-type-list model-name=\"GRID K200\"") |
| k2passthrough = sshClient.execute("xe vgpu-type-list model-name='passthrough'") |
| if (len(k260q) == 0) and len(k240q) == 0 and len(k220q) == 0 and len(k200) == 0 and len(k2passthrough) == 0: |
| continue |
| else: |
| if len(k260q) != 0 : |
| cls.k260qgpuhosts=cls.k260qgpuhosts+1 |
| if len(k240q) != 0 : |
| cls.k240qgpuhosts=cls.k240qgpuhosts+1 |
| if len(k220q) != 0 : |
| cls.k220qgpuhosts=cls.k220qgpuhosts+1 |
| if len(k200) != 0 : |
| cls.k200gpuhosts=cls.k200gpuhosts+1 |
| if len(k2passthrough) != 0: |
| cls.k2passthroughgpuhosts=cls.k2passthroughgpuhosts+1 |
| |
| if len(k1card) != 0: |
| k1hosts=k1hosts+1 |
| k100 = sshClient.execute("xe vgpu-type-list model-name=\"GRID K100\"") |
| k120q = sshClient.execute("xe vgpu-type-list model-name=\"GRID K120Q\"") |
| k140q = sshClient.execute("xe vgpu-type-list model-name=\"GRID K140Q\"") |
| k1passthrough = sshClient.execute("xe vgpu-type-list model-name='passthrough'") |
| if len(k100) == 0 and len(k120q) == 0 and len(k140q) == 0 and len(k1passthrough) == 0: |
| continue |
| else: |
| if len(k140q) != 0 : |
| cls.k140qgpuhosts=cls.k140qgpuhosts+1 |
| if len(k120q) != 0 : |
| cls.k120qgpuhosts=cls.k120qgpuhosts+1 |
| if len(k100) != 0 : |
| cls.k100gpuhosts=cls.k100gpuhosts+1 |
| if len(k1passthrough) != 0 : |
| cls.k1passthroughgpuhosts=cls.k1passthroughgpuhosts+1 |
| |
| if (k1hosts == 0) and (k2hosts == 0): |
| raise unittest.SkipTest("No XenServer available with GPU Drivers installed") |
| |
| cls.zone = get_zone(cls.apiclient, cls.testClient.getZoneForTests()) |
| cls.domain = get_domain(cls.apiclient) |
| cls.account = Account.create( |
| cls.apiclient, |
| cls.testdata["account"], |
| domainid=cls.domain.id |
| ) |
| |
| cls.template = get_windows_template(cls.apiclient, cls.zone.id ,ostype_desc="Windows 8 (64-bit)") |
| |
| if cls.template == FAILED: |
| cls.template = Template.register( |
| cls.apiclient, |
| cls.testdata["vgpu"] ["templateregister1"], |
| hypervisor = "XenServer", |
| zoneid=cls.zone.id, |
| domainid=cls.account.domainid, |
| account=cls.account.name |
| ) |
| timeout = cls.testdata["vgpu"]["timeout"] |
| |
| while True: |
| time.sleep(cls.testdata["vgpu"]["sleep"]) |
| list_template_response = Template.list( |
| cls.apiclient, |
| templatefilter=\ |
| cls.testdata["templatefilter"], |
| id=cls.template.id |
| ) |
| if (isinstance(list_template_response, list)) is not True: |
| raise unittest.SkipTest("Check list template api response returns a valid list") |
| |
| if len(list_template_response) is None : |
| raise unittest.SkipTest("Check template registered is in List Templates") |
| |
| template_response = list_template_response[0] |
| if template_response.isready == True: |
| break |
| |
| if timeout == 0: |
| raise unittest.SkipTest("Failed to download template(ID: %s)" % template_response.id) |
| |
| timeout = timeout - 1 |
| |
| cls._cleanup = [ |
| cls.account |
| ] |
| |
| @attr(tags = ['advanced', 'basic', 'vgpu'], required_hardware="true") |
| def setUp(self): |
| self.testdata = self.testClient.getParsedTestDataConfig() |
| self.apiclient = self.testClient.getApiClient() |
| return |
| |
| @attr(tags = ['advanced', 'basic', 'vgpu'], required_hardware="true") |
| def vgpu_serviceoffering_creation(self,gtype,nvidiamodel): |
| self.testdata["vgpu"]["service_offerings"][gtype]["serviceofferingdetails"] = [{'pciDevice': nvidiamodel}, |
| {'vgpuType':gtype}] |
| self.service_offering = ServiceOffering.create( |
| self.apiclient, |
| self.testdata["vgpu"]["service_offerings"][gtype] |
| ) |
| list_service_response = ServiceOffering.list( |
| self.apiclient, |
| id=self.service_offering.id |
| ) |
| |
| if list_service_response is None: |
| raise unittest.SkipTest("Check Service Offering list for %s service offering" %(gtype)) |
| |
| self.assertEqual( |
| list_service_response[0].serviceofferingdetails.vgpuType, |
| gtype, |
| "Failed To Create Service Offering . Check vGPU Service Offering list for K2 passthrough" |
| ) |
| self.assertEqual( |
| list_service_response[0].displaytext, |
| self.testdata["vgpu"]["service_offerings"][gtype]["displaytext"], |
| "Check server displaytext in createServiceOfferings" |
| ) |
| self.assertEqual( |
| list_service_response[0].name, |
| self.testdata["vgpu"]["service_offerings"][gtype]["name"], |
| "Check name in createServiceOffering" |
| ) |
| return(self.service_offering) |
| @attr(tags = ['advanced', 'basic' , 'vgpu'], required_hardware="true") |
| |
| def deploy_vGPU_windows_vm(self,vgpuofferingid): |
| """ |
| Validate vGPU K1 windows instances |
| """ |
| self.virtual_machine = VirtualMachine.create( |
| self.apiclient, |
| self.testdata["virtual_machine"], |
| accountid=self.account.name, |
| zoneid=self.zone.id, |
| domainid=self.account.domainid, |
| serviceofferingid=vgpuofferingid, |
| templateid=self.template.id |
| ) |
| time.sleep(600) |
| list_vms = VirtualMachine.list(self.apiclient, id=self.virtual_machine.id) |
| |
| self.debug( |
| "Verify listVirtualMachines response for virtual machine: %s"\ |
| % self.virtual_machine.id |
| ) |
| |
| self.assertEqual( |
| isinstance(list_vms, list), |
| True, |
| "List VM response was not a valid list" |
| ) |
| self.assertNotEqual( |
| len(list_vms), |
| 0, |
| "List VM response was empty" |
| ) |
| |
| vm = list_vms[0] |
| self.assertEqual( |
| vm.id, |
| self.virtual_machine.id, |
| "Virtual Machine ids do not match" |
| ) |
| self.assertEqual( |
| vm.name, |
| self.virtual_machine.name, |
| "Virtual Machine names do not match" |
| ) |
| self.assertEqual( |
| vm.state, |
| "Running", |
| msg="VM is not in Running state" |
| ) |
| return |
| |
| @attr(tags = ['advanced', 'basic' , 'vgpu'], required_hardware="true") |
| def delete_vgpu_service_offering(self,serviceoffering): |
| """ |
| delete vGPU Service Offering |
| """ |
| serviceoffering.delete(self.apiclient) |
| |
| list_service_response = list_service_offering( |
| self.apiclient, |
| id=serviceoffering.id |
| ) |
| |
| self.assertEqual( |
| list_service_response, |
| None, |
| "Check if service offering exists in listServiceOfferings" |
| ) |
| return |
| |
| @attr(tags = ['advanced', 'basic' , 'vgpu'], required_hardware="true") |
| def destroy_vm(self): |
| """Test destroy Virtual Machine |
| """ |
| |
| self.virtual_machine.delete(self.apiclient) |
| |
| list_vm_response = VirtualMachine.list( |
| self.apiclient, |
| id=self.virtual_machine.id |
| ) |
| self.assertEqual( |
| isinstance(list_vm_response, list), |
| True, |
| "Check list response returns a valid list" |
| ) |
| |
| self.assertNotEqual( |
| len(list_vm_response), |
| 0, |
| "Check VM avaliable in List Virtual Machines" |
| ) |
| |
| self.assertEqual( |
| list_vm_response[0].state, |
| "Destroyed", |
| "Check virtual machine is in destroyed state" |
| ) |
| return |
| @attr(tags = ['advanced', 'basic' , 'vgpu'], required_hardware="true") |
| |
| def test_01_create_deploy_windows_vm_with_k100_vgpu_service_offering(self): |
| """Test to create and deploy vm with K100 vGPU service offering""" |
| |
| if (self.k100gpuhosts == 0): |
| raise unittest.SkipTest("No XenServer available with K100 vGPU Drivers installed") |
| else: |
| self.vgpuoffering=self.vgpu_serviceoffering_creation("GRID K100","Group of NVIDIA Corporation GK107GL [GRID K1] GPUs") |
| self.deploy_vGPU_windows_vm(self.vgpuoffering[0].id) |
| self.delete_vgpu_service_offering(self.vgpuoffering) |
| |
| @attr(tags = ['advanced', 'basic' , 'vgpu'], required_hardware="true") |
| |
| def test_02_create_deploy_windows_vm_with_k120q_vgpu_service_offering(self): |
| """Test to create and deploy vm with K120Q vGPU service offering""" |
| |
| if (self.k120qgpuhosts == 0): |
| raise unittest.SkipTest("No XenServer available with K120Q vGPU Drivers installed") |
| else: |
| self.vgpuoffering=self.vgpu_serviceoffering_creation("GRID K120Q","Group of NVIDIA Corporation GK107GL [GRID K1] GPUs") |
| if self.vgpuoffering is not None: |
| self.deploy_vGPU_windows_vm(self.vgpuoffering.id) |
| self.delete_vgpu_service_offering(self.vgpuoffering) |
| self.destroy_vm() |
| self.delete_vgpu_service_offering(self.vgpuoffering) |
| |
| @attr(tags = ['advanced', 'basic' , 'vgpu'], required_hardware="true") |
| |
| def test_03_create_deploy_windows_vm_with_k140q_vgpu_service_offering(self): |
| """Test to create and deploy vm with K140Q vGPU service offering""" |
| |
| if (self.k140qgpuhosts == 0): |
| raise unittest.SkipTest("No XenServer available with K140Q vGPU Drivers installed") |
| else: |
| self.vgpuoffering=self.vgpu_serviceoffering_creation("GRID K140Q","Group of NVIDIA Corporation GK107GL [GRID K1] GPUs") |
| if self.vgpuoffering is not None: |
| self.deploy_vGPU_windows_vm(self.vgpuoffering.id) |
| self.delete_vgpu_service_offering(self.vgpuoffering) |
| self.destroy_vm() |
| self.delete_vgpu_service_offering(self.vgpuoffering) |
| |
| @attr(tags = ['advanced', 'basic' , 'vgpu'], required_hardware="true") |
| |
| def test_04_create_deploy_windows_vm_with_k1_passthrough_vgpu_service_offering(self): |
| """Test to create and deploy vm with K1 passthrough vGPU service offering""" |
| |
| if (self.k1passthroughgpuhosts == 0): |
| raise unittest.SkipTest("No XenServer available with K1 passthrough installed") |
| else: |
| self.vgpuoffering=self.vgpu_serviceoffering_creation("passthrough","Group of NVIDIA Corporation GK107GL [GRID K1] GPUs") |
| if self.vgpuoffering is not None: |
| self.deploy_vGPU_windows_vm(self.vgpuoffering.id) |
| self.delete_vgpu_service_offering(self.vgpuoffering) |
| self.destroy_vm() |
| self.delete_vgpu_service_offering(self.vgpuoffering) |
| |
| @attr(tags = ['advanced', 'basic' , 'vgpu'], required_hardware="true") |
| |
| def test_05_create_deploy_windows_vm_with_k2_passthrough_vgpu_service_offering(self): |
| """Test to create and deploy vm with K2 pasthrough vGPU service offering""" |
| |
| if (self.k2passthroughgpuhosts == 0): |
| raise unittest.SkipTest("No XenServer available with K2 passthrough installed") |
| else: |
| self.vgpuoffering=self.vgpu_serviceoffering_creation("passthrough","Group of NVIDIA Corporation GK104GL [GRID K2] GPUs") |
| if self.vgpuoffering is not None: |
| self.deploy_vGPU_windows_vm(self.vgpuoffering.id) |
| self.delete_vgpu_service_offering(self.vgpuoffering) |
| self.destroy_vm() |
| self.delete_vgpu_service_offering(self.vgpuoffering) |
| |
| @attr(tags = ['advanced', 'basic' , 'vgpu'], required_hardware="true") |
| |
| def test_06_create_deploy_windows_vm_with_k260q_vgpu_service_offering(self): |
| """Test to create and deploy vm with K260Q vGPU service offering""" |
| |
| if (self.k260qgpuhosts == 0): |
| raise unittest.SkipTest("No XenServer available with K260Q vGPU Drivers installed") |
| else: |
| self.vgpuoffering=self.vgpu_serviceoffering_creation("GRID K260Q","Group of NVIDIA Corporation GK104GL [GRID K2] GPUs") |
| if self.vgpuoffering is not None: |
| self.deploy_vGPU_windows_vm(self.vgpuoffering.id) |
| self.delete_vgpu_service_offering(self.vgpuoffering) |
| self.destroy_vm() |
| self.delete_vgpu_service_offering(self.vgpuoffering) |
| |
| @attr(tags = ['advanced', 'basic' , 'vgpu'], required_hardware="true") |
| |
| def test_07_create_deploy_windows_vm_with_k240q_vgpu_service_offering(self): |
| """ Test to create and deploy vm with K240Q vGPU service offering """ |
| |
| if (self.k240qgpuhosts == 0): |
| raise unittest.SkipTest("No XenServer available with K240Q vGPU Drivers installed") |
| else: |
| self.vgpuoffering=self.vgpu_serviceoffering_creation("GRID K240Q","Group of NVIDIA Corporation GK104GL [GRID K2] GPUs") |
| if self.vgpuoffering is not None: |
| self.deploy_vGPU_windows_vm(self.vgpuoffering.id) |
| self.delete_vgpu_service_offering(self.vgpuoffering) |
| self.destroy_vm() |
| self.delete_vgpu_service_offering(self.vgpuoffering) |
| |
| @attr(tags = ['advanced', 'basic' , 'vgpu'], required_hardware="true") |
| |
| def test_08_create_deploy_windows_vm_with_k220q_vgpu_service_offering(self): |
| """ Test to create and deploy vm with K220Q vGPU service offering """ |
| |
| if (self.k220qgpuhosts == 0): |
| raise unittest.SkipTest("No XenServer available with K220Q vGPU Drivers installed") |
| else: |
| self.vgpuoffering=self.vgpu_serviceoffering_creation("GRID K220Q","Group of NVIDIA Corporation GK104GL [GRID K2] GPUs") |
| if self.vgpuoffering is not None: |
| res=self.deploy_vGPU_windows_vm(self.vgpuoffering.id) |
| self.delete_vgpu_service_offering(self.vgpuoffering) |
| self.destroy_vm() |
| if res is not None: |
| self.delete_vgpu_service_offering(self.vgpuoffering) |
| |
| @attr(tags = ['advanced', 'basic' , 'vgpu'], required_hardware="true") |
| |
| def test_09_create_deploy_windows_vm_with_k200_vgpu_service_offering(self): |
| """ Test to create and deploy vm with K200 vGPU service offering """ |
| |
| if (self.k200gpuhosts == 0): |
| raise unittest.SkipTest("No XenServer available with K200 vGPU Drivers installed") |
| else: |
| self.vgpuoffering=self.vgpu_serviceoffering_creation("GRID K200","Group of NVIDIA Corporation GK104GL [GRID K2] GPUs") |
| if self.vgpuoffering is not None: |
| res=self.deploy_vGPU_windows_vm(self.vgpuoffering.id) |
| self.delete_vgpu_service_offering(self.vgpuoffering) |
| self.destroy_vm() |
| if res is not None: |
| self.delete_vgpu_service_offering(self.vgpuoffering) |
| |
| @classmethod |
| def tearDownClass(self): |
| try: |
| self.apiclient = super(TestvGPUWindowsVm, self).getClsTestClient().getApiClient() |
| cleanup_resources(self.apiclient, self._cleanup) |
| except Exception as e: |
| raise Exception("Warning: Exception during cleanup : %s" % e) |
| return |
| |
| def tearDown(self): |
| try: |
| cleanup_resources(self.apiclient, self.cleanup) |
| except Exception as e: |
| self.debug("Warning! Exception in tearDown: %s" % e) |
| |
| |
| |
| |