From 0d10050485d745101f266270bea17345a92ac1e9 Mon Sep 17 00:00:00 2001 From: Prasanna Santhanam Date: Mon, 12 Aug 2013 12:03:14 +0530 Subject: [PATCH] CLOUDSTACK-3017: Add tags to Cisco ASA tests Signed-off-by: Prasanna Santhanam --- test/integration/component/test_asa1000v_fw.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/integration/component/test_asa1000v_fw.py b/test/integration/component/test_asa1000v_fw.py index 643fc1db28f..0d8cad09802 100644 --- a/test/integration/component/test_asa1000v_fw.py +++ b/test/integration/component/test_asa1000v_fw.py @@ -119,6 +119,7 @@ class TestASASetup(cloudstackTestCase): raise Exception("Warning: Exception during cleanup : %s" % e) return + @attr(tags=["device", "asa"]) def test_registerVnmc(self): Vnmc = VNMC.create(self.apiclient, self.services["vnmc"]["ipaddress"], self.services["vnmc"]["username"], self.services["vnmc"]["password"], self.physicalnetworks[0].id) self.debug("Cisco VNMC appliance with id %s deployed"%(Vnmc.id)) @@ -126,6 +127,7 @@ class TestASASetup(cloudstackTestCase): self.assertNotEqual(len(VnmcList), 0, "List VNMC API returned an empty response") Vnmc.delete(self.apiclient) + @attr(tags=["device", "asa"]) def test_registerAsa1000v(self): Asa = ASA1000V.create(self.apiclient, self.services["asa"]["ipaddress"], self.services["asa"]["insideportprofile"], self.clusters[0].id, self.physicalnetworks[0].id) self.debug("Cisco ASA 1000v appliance with id %s deployed"%(Asa.id))