# 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. """ P1 tests for Dedicating Public IP addresses """ #Import Local Modules import marvin from nose.plugins.attrib import attr from marvin.cloudstackTestCase import * from marvin.cloudstackAPI import * from marvin.integration.lib.utils import * from marvin.integration.lib.base import * from marvin.integration.lib.common import * import datetime class Services: """Test Dedicating Public IP addresses """ def __init__(self): self.services = { "domain": { "name": "Domain", }, "account": { "email": "test@test.com", "firstname": "Test", "lastname": "User", "username": "test", # Random characters are appended for unique # username "password": "password", }, "gateway": "10.102.196.1", "netmask": "255.255.255.0", "forvirtualnetwork": "true", "startip": "10.102.196.70", "endip": "10.102.196.73", "zoneid": "1", "podid": "", "vlan": "101", "sleep": 60, "timeout": 10, } class TesDedicatePublicIPRange(cloudstackTestCase): @classmethod def setUpClass(cls): cls.api_client = super(TesDedicatePublicIPRange, cls).getClsTestClient().getApiClient() cls.services = Services().services # Get Zone, Domain cls.domain = get_domain(cls.api_client, cls.services) cls.zone = get_zone(cls.api_client, cls.services) # Create Account, VMs etc cls.account = Account.create( cls.api_client, cls.services["account"], domainid=cls.domain.id ) cls._cleanup = [ #cls.account, ] return @classmethod def tearDownClass(cls): try: # Cleanup resources used cleanup_resources(cls.api_client, cls._cleanup) except Exception as e: raise Exception("Warning: Exception during cleanup : %s" % e) return def setUp(self): self.apiclient = self.testClient.getApiClient() self.dbclient = self.testClient.getDbConnection() self.cleanup = [] return def tearDown(self): try: # Clean up cleanup_resources(self.apiclient, self.cleanup) except Exception as e: raise Exception("Warning: Exception during cleanup : %s" % e) return @attr(tags = ["publiciprange", "dedicate"]) def test_createPublicIpRange(self): """Test create public IP range """ # Validate the following: # 1. Create public IP range. # 2. Created IP range should be present, verify with listVlanIpRanges self.debug("Creating Public IP range") self.public_ip_range = PublicIpRange.create( self.api_client, self.services ) list_public_ip_range_response = PublicIpRange.list( self.apiclient, id=self.public_ip_range.vlan.id ) self.debug( "Verify listPublicIpRanges response for public ip ranges: %s" \ % self.public_ip_range.vlan.id ) self.assertEqual( isinstance(list_public_ip_range_response, list), True, "Check for list Public IP range response" ) public_ip_response = list_public_ip_range_response[0] self.assertEqual( public_ip_response.id, self.public_ip_range.vlan.id, "Check public ip range response id is in listVlanIpRanges" ) self.debug("Dedicating Public IP range"); self.debug("Vlan id %s" % self.public_ip_range.vlan.id); self.debug("Zone id %s" % self.zone.id); self.debug("Account name %s" % self.account.account.name); self.debug("Domain id %s" % self.account.account.domainid); dedicate_public_ip_range_response = PublicIpRange.dedicate( self.apiclient, self.public_ip_range.vlan.id, zoneid=self.zone.id, account=self.account.account.name, domainid=self.account.account.domainid ) return