CLOUDSTACK-7304: Fixed Exception not raised issue in portable IP test cases

Signed-off-by: Santhosh Edukulla <santhosh.edukulla@gmail.com>
This commit is contained in:
Gaurav Aradhye 2014-08-11 04:10:14 -07:00 committed by Santhosh Edukulla
parent d75961d973
commit d3f75618e7

View File

@ -1218,7 +1218,6 @@ class TestDeleteAccount(cloudstackTestCase):
# 2. Delete account # 2. Delete account
# 3. Account should get deleted successfully # 3. Account should get deleted successfully
try:
portableip = PublicIPAddress.create( portableip = PublicIPAddress.create(
self.apiclient, self.apiclient,
accountid=self.account.name, accountid=self.account.name,
@ -1228,11 +1227,9 @@ class TestDeleteAccount(cloudstackTestCase):
isportable=True isportable=True
) )
self.account.delete(self.apiclient) self.account.delete(self.apiclient)
with self.assertRaises(Exception): list_publicips = PublicIPAddress.list(self.apiclient,
PublicIPAddress.list(self.apiclient,
id=portableip.ipaddress.id) id=portableip.ipaddress.id)
except Exception as e: self.assertEqual(list_publicips, None, "List of ip addresses should be empty")
self.fail(e)
return return
@attr(tags=["advanced", "selfservice"]) @attr(tags=["advanced", "selfservice"])
@ -1313,10 +1310,9 @@ class TestDeleteAccount(cloudstackTestCase):
self.debug("Trying to list the ip address associated with deleted account, \ self.debug("Trying to list the ip address associated with deleted account, \
should throw exception") should throw exception")
with self.assertRaises(Exception): list_publicips = PublicIPAddress.list(self.apiclient,
PublicIPAddress.list(self.apiclient,
id=portableip.ipaddress.id) id=portableip.ipaddress.id)
self.assertEqual(list_publicips, None, "List of ip addresses should be empty")
return return
class TestPortableIpTransferAcrossNetworks(cloudstackTestCase): class TestPortableIpTransferAcrossNetworks(cloudstackTestCase):