[TESTCASE] fix basic_onboard scenario 57/116957/1
authormrichomme <morgan.richomme@orange.com>
Mon, 18 Jan 2021 14:26:53 +0000 (15:26 +0100)
committermrichomme <morgan.richomme@orange.com>
Mon, 18 Jan 2021 14:26:53 +0000 (15:26 +0100)
the run_basic_onboard.py is working, but the scenario used by xtesting
cannot work properly.

Tested on Daily master lab.

Issue-ID: TEST-288

Signed-off-by: mrichomme <morgan.richomme@orange.com>
Change-Id: Ibc5482607a738692a05260913eeb322a0933ff03

src/onaptests/scenario/basic_onboard.py

index 3695975..f81a38c 100644 (file)
@@ -1,12 +1,11 @@
-
 #!/usr/bin/env python
 """Basic Onboard test case."""
 import logging
 import time
 from xtesting.core import testcase
-#from onapsdk.configuration import settings
+from onapsdk.configuration import settings
 import onaptests.utils.exceptions as onap_test_exceptions
-#from onaptests.steps.onboard.service import YamlTemplateServiceOnboardStep
+from onaptests.steps.onboard.service import YamlTemplateServiceOnboardStep
 
 class BasicOnboard(testcase.TestCase):
     """Onboard a simple VM with ONAP."""
@@ -20,6 +19,8 @@ class BasicOnboard(testcase.TestCase):
             kwargs["case_name"] = 'basic_onboard'
         super(BasicOnboard, self).__init__(**kwargs)
         self.__logger.debug("BasicOnboard init started")
+        self.test = YamlTemplateServiceOnboardStep(
+            cleanup=settings.CLEANUP_FLAG)
         self.start_time = None
         self.stop_time = None
         self.result = 0
@@ -31,6 +32,7 @@ class BasicOnboard(testcase.TestCase):
         try:
             self.test.execute()
             self.__logger.info("VNF basic_vm successfully onboarded")
+            self.result = 100
         except onap_test_exceptions.OnapTestException as exc:
             self.result = 0
             self.__logger.error(exc.error_message)