aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/scenario/basic_onboard.py
diff options
context:
space:
mode:
authorChereau Natacha <natacha.chereau@orange.com>2021-01-13 10:54:46 +0100
committerChereau Natacha <natacha.chereau@orange.com>2021-01-15 11:01:19 +0100
commitff24de49ef658ffe0aa13d494e8201bd181bce2c (patch)
treeb4425e2240fd1cd1e760053f49fc161f71208595 /src/onaptests/scenario/basic_onboard.py
parentd089e89005df1b4b3b6238a2937e23791c07d9ae (diff)
[PythonSDK-tests] Add basic_onboard testcase
Issue-ID: TEST-288 Signed-off-by: Chereau Natacha <natacha.chereau@orange.com> Change-Id: Ide7267428b5ca694dc3ca44a4c81730233610b78
Diffstat (limited to 'src/onaptests/scenario/basic_onboard.py')
-rw-r--r--src/onaptests/scenario/basic_onboard.py43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/onaptests/scenario/basic_onboard.py b/src/onaptests/scenario/basic_onboard.py
new file mode 100644
index 0000000..3695975
--- /dev/null
+++ b/src/onaptests/scenario/basic_onboard.py
@@ -0,0 +1,43 @@
+
+#!/usr/bin/env python
+"""Basic Onboard test case."""
+import logging
+import time
+from xtesting.core import testcase
+#from onapsdk.configuration import settings
+import onaptests.utils.exceptions as onap_test_exceptions
+#from onaptests.steps.onboard.service import YamlTemplateServiceOnboardStep
+
+class BasicOnboard(testcase.TestCase):
+ """Onboard a simple VM with ONAP."""
+
+ __logger = logging.getLogger(__name__)
+
+ def __init__(self, **kwargs):
+ """Init BasicOnboard."""
+ # import basic_onboard_settings needed
+ if "case_name" not in kwargs:
+ kwargs["case_name"] = 'basic_onboard'
+ super(BasicOnboard, self).__init__(**kwargs)
+ self.__logger.debug("BasicOnboard init started")
+ self.start_time = None
+ self.stop_time = None
+ self.result = 0
+
+ def run(self):
+ """Run basic_onboard and onboard a simple service"""
+ self.start_time = time.time()
+ self.__logger.debug("start time")
+ try:
+ self.test.execute()
+ self.__logger.info("VNF basic_vm successfully onboarded")
+ except onap_test_exceptions.OnapTestException as exc:
+ self.result = 0
+ self.__logger.error(exc.error_message)
+ finally:
+ self.stop_time = time.time()
+
+ def clean(self):
+ """Clean Additional resources if needed."""
+ self.__logger.info("Generate Test report")
+ self.test.reports_collection.generate_report()