From 8f3c1e06049f242849af74b99fb60b41cebdc578 Mon Sep 17 00:00:00 2001 From: Aleksandr Taranov Date: Thu, 25 May 2023 17:21:34 +0300 Subject: Create SDNC Sanity test Issue-ID: TEST-395 Signed-off-by: Aleksandr Taranov Signed-off-by: Lukasz Rajewski Change-Id: I2a035beb74510013eb8e04aecd90c648af77fe28 --- src/onaptests/scenario/basic_sdnc.py | 45 ++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 src/onaptests/scenario/basic_sdnc.py (limited to 'src/onaptests/scenario') diff --git a/src/onaptests/scenario/basic_sdnc.py b/src/onaptests/scenario/basic_sdnc.py new file mode 100644 index 0000000..d791080 --- /dev/null +++ b/src/onaptests/scenario/basic_sdnc.py @@ -0,0 +1,45 @@ +import logging +import time +from xtesting.core import testcase + +from onapsdk.configuration import settings +from onapsdk.exceptions import SDKException + +from onaptests.steps.instantiate.sdnc_service import UpdateSdncService +from onaptests.utils.exceptions import OnapTestException + + +class BasicSdnc(testcase.TestCase): + """Create SDNC service. + Check and delete the service. + """ + + __logger = logging.getLogger() + + def __init__(self, **kwargs): + """Init Basic SDNC use case.""" + if "case_name" not in kwargs: + kwargs["case_name"] = 'basic_SDNC' + super().__init__(**kwargs) + self.__logger.debug("Basic SDNC init started") + self.test = UpdateSdncService(cleanup=settings.CLEANUP_FLAG) + + def run(self): + """Run basic SDNC test.""" + self.start_time = time.time() + try: + self.test.execute() + self.test.cleanup() + self.result = 100 + except OnapTestException as exc: + self.result = 0 + self.__logger.exception(exc.error_message) + except SDKException: + self.result = 0 + self.__logger.exception("SDK Exception") + finally: + self.stop_time = time.time() + + def clean(self): + """Generate report.""" + self.test.reports_collection.generate_report() -- cgit 1.2.3-korg