Baremetal: Test cases
Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/f5e67e7c Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/f5e67e7c Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/f5e67e7c Branch: refs/heads/baremetal-4.2 Commit: f5e67e7c0ee9f754558bb9e54396798c59db366a Parents: b047a9b Author: Sheng Yang <sheng.y...@citrix.com> Authored: Thu Jun 20 16:44:06 2013 -0700 Committer: Sheng Yang <sheng.y...@citrix.com> Committed: Thu Jun 20 17:42:16 2013 -0700 ---------------------------------------------------------------------- test/integration/component/test_baremetal.py | 123 ++++++++++++++++++++++ 1 file changed, 123 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/f5e67e7c/test/integration/component/test_baremetal.py ---------------------------------------------------------------------- diff --git a/test/integration/component/test_baremetal.py b/test/integration/component/test_baremetal.py new file mode 100644 index 0000000..c6a877e --- /dev/null +++ b/test/integration/component/test_baremetal.py @@ -0,0 +1,123 @@ +# 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. +""" Test for baremetal +""" +#Import Local Modules +import marvin +from marvin.cloudstackTestCase import * +from marvin.cloudstackAPI import * +from marvin import remoteSSHClient +from marvin.integration.lib.utils import * +from marvin.integration.lib.base import * +from marvin.integration.lib.common import * +from nose.plugins.attrib import attr +import telnetlib + +#Import System modules +import time +_multiprocess_shared_ = True + +class Services: + """Test Baremetal + """ + + def __init__(self): + self.services = { + "network_offering": { + "name": 'Baremetal_network_offering', + "displaytext": 'Baremetal_network_offering', + "guestiptype": 'Shared', + "supportedservices": 'Dhcp,UserData,BaremetalPxeService', + "specifyVlan": "true", + "specifyIpRanges": "true", + "traffictype": 'GUEST', + "availability": 'Optional', + "conservemode": 'false', + "serviceProviderList": { + "Dhcp": 'BaremetalDhcpProvider', + "UserData": 'BaremetalUserdataProvider', + "BaremetalPxeService": 'BaremetalPxeProvider', + }, + }, + "network" :{ + "name" : "defaultBaremetalNetwork", + "displaytext" : "defaultBaremetalNetwork", + }, + "ostype": 'CentOS 5.3 (64-bit)', + # Cent OS 5.3 (64 bit) + "sleep": 60, + "timeout": 10, + } +class TestBaremetal(cloudstackTestCase): + zoneid = 1 + + def setUp(self): + self.apiclient = self.testClient.getApiClient() + self.services = Services().services + self.cleanup = [] + + def tearDown(self): + try: + self.debug("Cleaning up the resources") + #Clean up, terminate the created network offerings + cleanup_resources(self.apiclient, self.cleanup) + self.debug("Cleanup complete!") + except Exception as e: + raise Exception("Warning: Exception during cleanup : %s" % e) + return + + @attr(tags = ["baremetal", "basic"]) + def test_baremetal(self): + self.debug("Test create baremetal network offering") + networkoffering = NetworkOffering.create(self.apiclient, self.services["network_offering"]) + networkoffering.update(self.apiclient, state="Enabled") + self.cleanup.append(networkoffering) + + physical_network = PhysicalNetwork.list(self.apiclient, zoneid=self.zoneid)[0]; + dhcp_provider = NetworkServiceProvider.list(self.apiclient, name="BaremetalDhcpProvider", physical_network_id=physical_network.id)[0] + response = NetworkServiceProvider.update( + self.apiclient, + id=dhcp_provider.id, + state='Enabled' + ) + pxe_provider = NetworkServiceProvider.list(self.apiclient, name="BaremetalPxeProvider", physical_network_id=physical_network.id)[0] + response = NetworkServiceProvider.update( + self.apiclient, + id=pxe_provider.id, + state='Enabled' + ) + userdata_provider = NetworkServiceProvider.list(self.apiclient, name="BaremetalUserdataProvider", physical_network_id=physical_network.id)[0] + response = NetworkServiceProvider.update( + self.apiclient, + id=userdata_provider.id, + state='Enabled' + ) + + network = Network.create(self.apiclient, self.services["network"], zoneid=self.zoneid, networkofferingid=networkoffering.id) + self.cleanup.insert(0, network) + + pod = Pod.list(self.apiclient)[0] + cmd = createVlanIpRange.createVlanIpRangeCmd() + cmd.podid = pod.id + cmd.networkid = network.id + cmd.gateway = "10.1.1.1" + cmd.netmask = "255.255.255.0" + cmd.startip = "10.1.1.20" + cmd.endip = "10.1.1.40" + cmd.forVirtualNetwork="false" + response = self.apiclient.createVlanIpRange(cmd) + \ No newline at end of file