aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/scenario
diff options
context:
space:
mode:
authorMichal Jagiello <michal.jagiello@t-mobile.pl>2021-07-05 10:45:05 +0000
committerMichal Jagiello <michal.jagiello@t-mobile.pl>2021-07-05 14:41:55 +0000
commit7fbd9f67fa43997bc8b030ab24dcc4315493c1b1 (patch)
tree73defcf7b5fcdc82134b10e74198115b464337d6 /src/onaptests/scenario
parent7cbad7912c0d14cbc06f7491ae77222b4feb23ed (diff)
[TEST] Basic macro stability scenario
Issue-ID: TEST-349 Signed-off-by: Michal Jagiello <michal.jagiello@t-mobile.pl> Change-Id: I951e9720668de9bf00136d4e043c9fe8950061f1
Diffstat (limited to 'src/onaptests/scenario')
-rw-r--r--src/onaptests/scenario/basic_vm_macro_stability.py44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/onaptests/scenario/basic_vm_macro_stability.py b/src/onaptests/scenario/basic_vm_macro_stability.py
new file mode 100644
index 0000000..552a331
--- /dev/null
+++ b/src/onaptests/scenario/basic_vm_macro_stability.py
@@ -0,0 +1,44 @@
+"""Instantiate basic vm using SO macro flow."""
+import logging
+import time
+
+from onapsdk.configuration import settings
+from onapsdk.exceptions import SDKException
+from xtesting.core import testcase
+
+from onaptests.utils.exceptions import OnapTestException
+from onaptests.steps.instantiate.service_macro import YamlTemplateServiceMacroInstantiateStep
+
+
+class BasicVmMacroStability(testcase.TestCase):
+ """Instantiate a basic vm macro."""
+
+ __logger = logging.getLogger(__name__)
+
+ def __init__(self, **kwargs):
+ """Init Basic Macro use case."""
+ if "case_name" not in kwargs:
+ kwargs["case_name"] = 'basic_vm_macro_stability'
+ super().__init__(**kwargs)
+ self.__logger.debug("Basic VM macro stability init started")
+ self.test = YamlTemplateServiceMacroInstantiateStep(cleanup=settings.CLEANUP_FLAG)
+
+ def run(self):
+ """Run basic vm macro 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.error(exc.error_message)
+ except SDKException:
+ self.result = 0
+ self.__logger.error("SDK Exception")
+ finally:
+ self.stop_time = time.time()
+
+ def clean(self):
+ """Generate report."""
+ self.test.reports_collection.generate_report()