mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-11-04 00:02:37 +01:00 
			
		
		
		
	* refactor: remove trailing whitespace from Python files * Add the GitHub Super-Linter Add Python flake8 linting for W291 trailing whitespace * Add licenses
		
			
				
	
	
		
			249 lines
		
	
	
		
			8.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			249 lines
		
	
	
		
			8.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
#!/usr/bin/env python
 | 
						|
# 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 required 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.
 | 
						|
 | 
						|
from marvin.codes import FAILED
 | 
						|
from marvin.cloudstackTestCase import *
 | 
						|
from marvin.cloudstackAPI import *
 | 
						|
from marvin.lib.utils import *
 | 
						|
from marvin.lib.base import *
 | 
						|
from marvin.lib.common import (get_domain,
 | 
						|
                               get_zone,
 | 
						|
                               get_template,
 | 
						|
                               list_virtual_machines)
 | 
						|
from nose.plugins.attrib import attr
 | 
						|
 | 
						|
class TestDeployVmWithAffinityGroup(cloudstackTestCase):
 | 
						|
    """
 | 
						|
    This test deploys a virtual machine into a user account
 | 
						|
    using the small service offering and builtin template
 | 
						|
    """
 | 
						|
 | 
						|
    @classmethod
 | 
						|
    def setUpClass(cls):
 | 
						|
        cls.testClient = super(TestDeployVmWithAffinityGroup, cls).getClsTestClient()
 | 
						|
        zone_name = cls.testClient.getZoneForTests()
 | 
						|
        cls.apiclient = cls.testClient.getApiClient()
 | 
						|
        cls.domain = get_domain(cls.apiclient)
 | 
						|
        cls.services = cls.testClient.getParsedTestDataConfig()
 | 
						|
        # Get Zone, Domain and templates
 | 
						|
        cls.zone = get_zone(cls.apiclient, cls.testClient.getZoneForTests())
 | 
						|
        cls.hypervisor = cls.testClient.getHypervisorInfo()
 | 
						|
 | 
						|
        cls.template = get_template(
 | 
						|
            cls.apiclient,
 | 
						|
            cls.zone.id,
 | 
						|
            cls.hypervisor
 | 
						|
        )
 | 
						|
 | 
						|
        if cls.template == FAILED:
 | 
						|
            assert False, "get_template() failed to return template"
 | 
						|
 | 
						|
        cls.services["virtual_machine"]["zoneid"] = cls.zone.id
 | 
						|
 | 
						|
        cls.services["template"] = cls.template.id
 | 
						|
        cls.services["zoneid"] = cls.zone.id
 | 
						|
 | 
						|
        cls.account = Account.create(
 | 
						|
            cls.apiclient,
 | 
						|
            cls.services["account"],
 | 
						|
            domainid=cls.domain.id
 | 
						|
        )
 | 
						|
        cls.service_offering = ServiceOffering.create(
 | 
						|
            cls.apiclient,
 | 
						|
            cls.services["service_offerings"]["tiny"]
 | 
						|
        )
 | 
						|
 | 
						|
        cls.ag = AffinityGroup.create(cls.apiclient, cls.services["virtual_machine"]["affinity"],
 | 
						|
            account=cls.account.name, domainid=cls.domain.id)
 | 
						|
 | 
						|
        host_affinity = {
 | 
						|
            "name": "marvin-host-affinity",
 | 
						|
            "type": "host affinity",
 | 
						|
        }
 | 
						|
        cls.affinity = AffinityGroup.create(
 | 
						|
            cls.apiclient,
 | 
						|
            host_affinity,
 | 
						|
            account=cls.account.name,
 | 
						|
            domainid=cls.domain.id
 | 
						|
        )
 | 
						|
        cls._cleanup = [
 | 
						|
            cls.service_offering,
 | 
						|
            cls.ag,
 | 
						|
            cls.account,
 | 
						|
        ]
 | 
						|
        return
 | 
						|
 | 
						|
    @attr(tags=["basic", "advanced", "multihost"], required_hardware="false")
 | 
						|
    def test_DeployVmAntiAffinityGroup(self):
 | 
						|
        """
 | 
						|
        test DeployVM in anti-affinity groups
 | 
						|
 | 
						|
        deploy VM1 and VM2 in the same host-anti-affinity groups
 | 
						|
        Verify that the vms are deployed on separate hosts
 | 
						|
        """
 | 
						|
        #deploy VM1 in affinity group created in setUp
 | 
						|
        vm1 = VirtualMachine.create(
 | 
						|
            self.apiclient,
 | 
						|
            self.services["virtual_machine"],
 | 
						|
            templateid=self.template.id,
 | 
						|
            accountid=self.account.name,
 | 
						|
            domainid=self.account.domainid,
 | 
						|
            serviceofferingid=self.service_offering.id,
 | 
						|
            affinitygroupnames=[self.ag.name]
 | 
						|
        )
 | 
						|
 | 
						|
        list_vm1 = list_virtual_machines(
 | 
						|
            self.apiclient,
 | 
						|
            id=vm1.id
 | 
						|
        )
 | 
						|
        self.assertEqual(
 | 
						|
            isinstance(list_vm1, list),
 | 
						|
            True,
 | 
						|
            "Check list response returns a valid list"
 | 
						|
        )
 | 
						|
        self.assertNotEqual(
 | 
						|
            len(list_vm1),
 | 
						|
            0,
 | 
						|
            "Check VM available in List Virtual Machines"
 | 
						|
        )
 | 
						|
        vm1_response = list_vm1[0]
 | 
						|
        self.assertEqual(
 | 
						|
            vm1_response.state,
 | 
						|
            'Running',
 | 
						|
            msg="VM is not in Running state"
 | 
						|
        )
 | 
						|
        host_of_vm1 = vm1_response.hostid
 | 
						|
 | 
						|
        #deploy VM2 in affinity group created in setUp
 | 
						|
        vm2 = VirtualMachine.create(
 | 
						|
            self.apiclient,
 | 
						|
            self.services["virtual_machine"],
 | 
						|
            templateid=self.template.id,
 | 
						|
            accountid=self.account.name,
 | 
						|
            domainid=self.account.domainid,
 | 
						|
            serviceofferingid=self.service_offering.id,
 | 
						|
            affinitygroupnames=[self.ag.name]
 | 
						|
        )
 | 
						|
        list_vm2 = list_virtual_machines(
 | 
						|
            self.apiclient,
 | 
						|
            id=vm2.id
 | 
						|
        )
 | 
						|
        self.assertEqual(
 | 
						|
            isinstance(list_vm2, list),
 | 
						|
            True,
 | 
						|
            "Check list response returns a valid list"
 | 
						|
        )
 | 
						|
        self.assertNotEqual(
 | 
						|
            len(list_vm2),
 | 
						|
            0,
 | 
						|
            "Check VM available in List Virtual Machines"
 | 
						|
        )
 | 
						|
        vm2_response = list_vm2[0]
 | 
						|
        self.assertEqual(
 | 
						|
            vm2_response.state,
 | 
						|
            'Running',
 | 
						|
            msg="VM is not in Running state"
 | 
						|
        )
 | 
						|
        host_of_vm2 = vm2_response.hostid
 | 
						|
 | 
						|
        self.assertNotEqual(host_of_vm1, host_of_vm2,
 | 
						|
            msg="Both VMs of affinity group %s are on the same host" % self.ag.name)
 | 
						|
 | 
						|
    @attr(tags=["basic", "advanced", "multihost"], required_hardware="false")
 | 
						|
    def test_DeployVmAffinityGroup(self):
 | 
						|
        """
 | 
						|
        test DeployVM in affinity groups
 | 
						|
 | 
						|
        deploy VM1 and VM2 in the same host-affinity groups
 | 
						|
        Verify that the vms are deployed on the same host
 | 
						|
        """
 | 
						|
        #deploy VM1 in affinity group created in setUp
 | 
						|
        vm1 = VirtualMachine.create(
 | 
						|
            self.apiclient,
 | 
						|
            self.services["virtual_machine"],
 | 
						|
            templateid=self.template.id,
 | 
						|
            accountid=self.account.name,
 | 
						|
            domainid=self.account.domainid,
 | 
						|
            serviceofferingid=self.service_offering.id,
 | 
						|
            affinitygroupnames=[self.affinity.name]
 | 
						|
        )
 | 
						|
 | 
						|
        list_vm1 = list_virtual_machines(
 | 
						|
            self.apiclient,
 | 
						|
            id=vm1.id
 | 
						|
        )
 | 
						|
        self.assertEqual(
 | 
						|
            isinstance(list_vm1, list),
 | 
						|
            True,
 | 
						|
            "Check list response returns a valid list"
 | 
						|
        )
 | 
						|
        self.assertNotEqual(
 | 
						|
            len(list_vm1),
 | 
						|
            0,
 | 
						|
            "Check VM available in List Virtual Machines"
 | 
						|
        )
 | 
						|
        vm1_response = list_vm1[0]
 | 
						|
        self.assertEqual(
 | 
						|
            vm1_response.state,
 | 
						|
            'Running',
 | 
						|
            msg="VM is not in Running state"
 | 
						|
        )
 | 
						|
        host_of_vm1 = vm1_response.hostid
 | 
						|
 | 
						|
        #deploy VM2 in affinity group created in setUp
 | 
						|
        vm2 = VirtualMachine.create(
 | 
						|
            self.apiclient,
 | 
						|
            self.services["virtual_machine"],
 | 
						|
            templateid=self.template.id,
 | 
						|
            accountid=self.account.name,
 | 
						|
            domainid=self.account.domainid,
 | 
						|
            serviceofferingid=self.service_offering.id,
 | 
						|
            affinitygroupnames=[self.affinity.name]
 | 
						|
        )
 | 
						|
        list_vm2 = list_virtual_machines(
 | 
						|
            self.apiclient,
 | 
						|
            id=vm2.id
 | 
						|
        )
 | 
						|
        self.assertEqual(
 | 
						|
            isinstance(list_vm2, list),
 | 
						|
            True,
 | 
						|
            "Check list response returns a valid list"
 | 
						|
        )
 | 
						|
        self.assertNotEqual(
 | 
						|
            len(list_vm2),
 | 
						|
            0,
 | 
						|
            "Check VM available in List Virtual Machines"
 | 
						|
        )
 | 
						|
        vm2_response = list_vm2[0]
 | 
						|
        self.assertEqual(
 | 
						|
            vm2_response.state,
 | 
						|
            'Running',
 | 
						|
            msg="VM is not in Running state"
 | 
						|
        )
 | 
						|
        host_of_vm2 = vm2_response.hostid
 | 
						|
 | 
						|
        self.assertEqual(host_of_vm1, host_of_vm2,
 | 
						|
            msg="Both VMs of affinity group %s are on different hosts" % self.affinity.name)
 | 
						|
 | 
						|
    @classmethod
 | 
						|
    def tearDownClass(cls):
 | 
						|
        try:
 | 
						|
            cleanup_resources(cls.apiclient, cls._cleanup)
 | 
						|
        except Exception as e:
 | 
						|
            raise Exception("Warning: Exception during cleanup : %s" % e)
 |