diff options
author | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2021-02-10 21:19:59 +0000 |
---|---|---|
committer | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2021-02-11 09:15:03 +0000 |
commit | 1b96f9912524dddf6d656e096626800df32db0be (patch) | |
tree | 3355364a7d04dbf53aea1fdc3f881d17416a9a4d /src/onaptests/scenario/clearwater_ims.py | |
parent | 329e4445434d3a34f2ccd3ccbd48cdbae21dada0 (diff) |
[INT] Catch all onaptests and onapsdk exceptions for scenarios
Catch onaptests and onapsdk exceptions in scenario to generate test report if test fails
Issue-ID: INT-1852
Signed-off-by: Michal Jagiello <michal.jagiello@t-mobile.pl>
Change-Id: Id9772fea10dc5aa323437e72c6fe5ddb4c6caabb
Diffstat (limited to 'src/onaptests/scenario/clearwater_ims.py')
-rw-r--r-- | src/onaptests/scenario/clearwater_ims.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/onaptests/scenario/clearwater_ims.py b/src/onaptests/scenario/clearwater_ims.py index 8a68fa9..2a035bb 100644 --- a/src/onaptests/scenario/clearwater_ims.py +++ b/src/onaptests/scenario/clearwater_ims.py @@ -5,9 +5,10 @@ import time from xtesting.core import testcase from onapsdk.configuration import settings +from onapsdk.exceptions import SDKException -import onaptests.utils.exceptions as onap_test_exceptions from onaptests.steps.instantiate.vf_module_ala_carte import YamlTemplateVfModuleAlaCarteInstantiateStep +from onaptests.utils.exceptions import OnapTestException class ClearwaterIms(testcase.TestCase): """Onboard then instantiate a clearwater vIMS with ONAP.""" @@ -44,7 +45,7 @@ class ClearwaterIms(testcase.TestCase): self.__logger.info("No cleanup requested. Test completed.") self.result = 100 self.stop_time = time.time() - except onap_test_exceptions.OnapTestException as exc: + except (OnapTestException, SDKException) as exc: self.result = 0 self.__logger.error(exc.error_message) finally: |