Create basic_cnf test leveraging onapsdk
[testsuite/pythonsdk-tests.git] / src / onaptests / scenario / basic_cnf.py
diff --git a/src/onaptests/scenario/basic_cnf.py b/src/onaptests/scenario/basic_cnf.py
new file mode 100644 (file)
index 0000000..6744781
--- /dev/null
@@ -0,0 +1,47 @@
+#!/usr/bin/env python
+"""Basic CNF test case."""
+import logging
+import time
+
+from xtesting.core import testcase
+from onapsdk.configuration import settings
+from onaptests.steps.instantiate.vf_module_ala_carte import YamlTemplateVfModuleAlaCarteInstantiateStep
+
+class BasicCNF(testcase.TestCase):
+    """Onboard then instantiate a simple CNF with ONAP."""
+
+    __logger = logging.getLogger(__name__)
+
+    def __init__(self, **kwargs):
+        """Init BasicCNF."""
+        if "case_name" not in kwargs:
+            kwargs["case_name"] = 'basic_cnf'
+        super(BasicCNF, self).__init__(**kwargs)
+        self.__logger.debug("BasicCNF init started")
+        self.test = YamlTemplateVfModuleAlaCarteInstantiateStep(
+                cleanup=settings.CLEANUP_FLAG)
+        self.start_time = None
+        self.stop_time = None
+        self.result = 0
+
+    def run(self):
+        """Run onap_tests with basic_cnf VM."""
+        self.start_time = time.time()
+        self.__logger.debug("start time")
+        self.test.execute()
+        self.__logger.info("basic_cnf successfully created")
+        self.stop_time = time.time()
+        # The cleanup is part of the test, not only a teardown action
+        if settings.CLEANUP_FLAG:
+            self.__logger.info("basic_cnf cleanup called")
+            time.sleep(settings.CLEANUP_ACTIVITY_TIMER)
+            self.test.cleanup()
+            self.result = 100
+        else:
+            self.__logger.info("No cleanup requested. Test completed.")
+            self.result = 100
+
+
+    def clean(self):
+        """Clean Additional resources if needed."""
+        pass