mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-11-04 00:02:37 +01:00 
			
		
		
		
	Conflicts: test/integration/component/test_base_image_updation.py test/integration/component/test_cpu_domain_limits.py test/integration/component/test_cpu_limits.py test/integration/component/test_cpu_project_limits.py test/integration/component/test_ip_reservation.py test/integration/component/test_memory_limits.py test/integration/component/test_mm_domain_limits.py test/integration/component/test_mm_project_limits.py test/integration/component/test_persistent_networks.py test/integration/component/test_portable_ip.py test/integration/component/test_routers.py test/integration/smoke/test_deploy_vm.py test/integration/smoke/test_deploy_vm_with_userdata.py test/integration/smoke/test_internal_lb.py test/integration/smoke/test_vm_life_cycle.py test/integration/smoke/test_volumes.py tools/marvin/marvin/codes.py tools/marvin/marvin/configGenerator.py tools/marvin/marvin/lib/base.py tools/marvin/marvin/lib/common.py tools/marvin/marvin/lib/utils.py
		
			
				
	
	
		
			129 lines
		
	
	
		
			5.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			129 lines
		
	
	
		
			5.2 KiB
		
	
	
	
		
			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.cloudstackTestCase import cloudstackTestCase
 | 
						|
from marvin.lib.base import (ServiceOffering,
 | 
						|
                                         VirtualMachine,
 | 
						|
                                         Account)
 | 
						|
from marvin.lib.common import get_template, get_zone, list_virtual_machines
 | 
						|
from marvin.lib.utils import cleanup_resources
 | 
						|
from nose.plugins.attrib import attr
 | 
						|
from marvin.codes import FAILED
 | 
						|
import random
 | 
						|
import string
 | 
						|
 | 
						|
class TestDeployVmWithUserData(cloudstackTestCase):
 | 
						|
    """Tests for UserData
 | 
						|
    """
 | 
						|
 | 
						|
    @classmethod
 | 
						|
    def setUpClass(cls):
 | 
						|
        testClient = super(TestDeployVmWithUserData, cls).getClsTestClient()
 | 
						|
        cls.apiClient = testClient.getApiClient() 
 | 
						|
        cls.services = testClient.getParsedTestDataConfig()
 | 
						|
 | 
						|
        cls.zone = get_zone(cls.apiClient, testClient.getZoneForTests())
 | 
						|
        if cls.zone.localstorageenabled:
 | 
						|
            #For devcloud since localstroage is enabled
 | 
						|
            cls.services["service_offerings"]["storagetype"] = "local"
 | 
						|
        cls.service_offering = ServiceOffering.create(
 | 
						|
            cls.apiClient,
 | 
						|
            cls.services["service_offerings"]
 | 
						|
        )
 | 
						|
        cls.account = Account.create(cls.apiClient, services=cls.services["account"])
 | 
						|
        cls.cleanup = [cls.account]
 | 
						|
        cls.template = get_template(
 | 
						|
            cls.apiClient,
 | 
						|
            cls.zone.id,
 | 
						|
            cls.services["ostype"]
 | 
						|
        )
 | 
						|
 | 
						|
        if cls.template == FAILED:
 | 
						|
            assert False, "get_template() failed to return template with description %s" % cls.services["ostype"]
 | 
						|
 | 
						|
        cls.debug("Successfully created account: %s, id: \
 | 
						|
                   %s" % (cls.account.name,\
 | 
						|
                          cls.account.id))
 | 
						|
 | 
						|
 | 
						|
        # Generate userdata of 2500 bytes. This is larger than the 2048 bytes limit.
 | 
						|
        # CS however allows for upto 4K bytes in the code. So this must succeed.
 | 
						|
        # Overall, the query length must not exceed 4K, for then the json decoder
 | 
						|
        # will fail this operation at the marvin client side itcls.
 | 
						|
        user_data = ''.join(random.choice(string.ascii_uppercase + string.digits) for x in range(2500))
 | 
						|
        cls.services["virtual_machine"]["userdata"] = user_data
 | 
						|
 | 
						|
    def setup(self):
 | 
						|
            self.hypervisor = self.testClient.getHypervisorInfo()
 | 
						|
 | 
						|
    @attr(tags=["simulator", "devcloud", "basic", "advanced", "post", "provisioning"])
 | 
						|
    def test_deployvm_userdata_post(self):
 | 
						|
        """Test userdata as POST, size > 2k
 | 
						|
        """
 | 
						|
        deployVmResponse = VirtualMachine.create(
 | 
						|
            self.apiClient,
 | 
						|
            services=self.services["virtual_machine"],
 | 
						|
            accountid=self.account.name,
 | 
						|
            domainid=self.account.domainid,
 | 
						|
            serviceofferingid=self.service_offering.id,
 | 
						|
            templateid=self.template.id,
 | 
						|
            zoneid=self.zone.id,
 | 
						|
            method='POST'
 | 
						|
        )
 | 
						|
        vms = list_virtual_machines(
 | 
						|
            self.apiClient,
 | 
						|
            account=self.account.name,
 | 
						|
            domainid=self.account.domainid,
 | 
						|
            id=deployVmResponse.id
 | 
						|
        )
 | 
						|
        self.assert_(len(vms) > 0, "There are no Vms deployed in the account %s" % self.account.name)
 | 
						|
        vm = vms[0]
 | 
						|
        self.assert_(vm.id == str(deployVmResponse.id), "Vm deployed is different from the test")
 | 
						|
        self.assert_(vm.state == "Running", "VM is not in Running state")
 | 
						|
 | 
						|
    @attr(tags=["simulator", "devcloud", "basic", "advanced", "provisioning"])
 | 
						|
    def test_deployvm_userdata(self):
 | 
						|
        """Test userdata as GET, size > 2k
 | 
						|
        """
 | 
						|
        deployVmResponse = VirtualMachine.create(
 | 
						|
            self.apiClient,
 | 
						|
            services=self.services["virtual_machine"],
 | 
						|
            accountid=self.account.name,
 | 
						|
            domainid=self.account.domainid,
 | 
						|
            serviceofferingid=self.service_offering.id,
 | 
						|
            templateid=self.template.id,
 | 
						|
            zoneid=self.zone.id
 | 
						|
        )
 | 
						|
        vms = list_virtual_machines(
 | 
						|
            self.apiClient,
 | 
						|
            account=self.account.name,
 | 
						|
            domainid=self.account.domainid,
 | 
						|
            id=deployVmResponse.id
 | 
						|
        )
 | 
						|
        self.assert_(len(vms) > 0, "There are no Vms deployed in the account %s" % self.account.name)
 | 
						|
        vm = vms[0]
 | 
						|
        self.assert_(vm.id == str(deployVmResponse.id), "Vm deployed is different from the test")
 | 
						|
        self.assert_(vm.state == "Running", "VM is not in Running state")
 | 
						|
 | 
						|
    @classmethod
 | 
						|
    def tearDownClass(cls):
 | 
						|
        try:
 | 
						|
            #Cleanup resources used
 | 
						|
            cleanup_resources(cls.apiClient, cls.cleanup)
 | 
						|
        except Exception as e:
 | 
						|
            raise Exception("Warning: Exception during cleanup : %s" % e)
 |