CLOUDSTACK-6215: Updating test case to accomodate condition for VMware Signed-off-by: SrikanteswaraRao Talluri <[email protected]>
Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/768e91ef Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/768e91ef Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/768e91ef Branch: refs/heads/master Commit: 768e91ef4560b15deb4804e3593b3ad22fa18eef Parents: fd1b983 Author: Gaurav Aradhye <[email protected]> Authored: Mon Mar 10 03:44:43 2014 -0400 Committer: SrikanteswaraRao Talluri <[email protected]> Committed: Fri Mar 14 11:41:43 2014 +0530 ---------------------------------------------------------------------- .../component/test_base_image_updation.py | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/768e91ef/test/integration/component/test_base_image_updation.py ---------------------------------------------------------------------- diff --git a/test/integration/component/test_base_image_updation.py b/test/integration/component/test_base_image_updation.py index 28ac88b..e45ff0d 100644 --- a/test/integration/component/test_base_image_updation.py +++ b/test/integration/component/test_base_image_updation.py @@ -115,6 +115,18 @@ class Services: "ispublic": True, "isextractable": True, + }, + "VMware": { + "displaytext": "Public Template - VMware", + "name": "Public template -VMware", + "ostype": "CentOS 5.3 (64-bit)", + "url": "http://download.cloud.com/releases/2.2.0/CentOS5.3-x86_64.ova", + "hypervisor": "vmware", + "format": "ova", + "isfeatured": True, + "ispublic": True, + "isextractable": True, + } }, "template": { @@ -503,8 +515,7 @@ class TestBaseImageUpdate(cloudstackTestCase): "VM created with IsVolatile=False doesn't have same ip after restore. Got : %s Expected : %s" %(vm_without_reset.nic[0].ipaddress, self.vm_without_reset.nic[0].ipaddress) ) - - return + return @attr(tags=["advanced", "basic"]) def test_04_reoccuring_snapshot_rules(self):
