From d6ab274b76e48164d3aefe702cf8ea2f87c98004 Mon Sep 17 00:00:00 2001 From: mrichomme Date: Mon, 18 Jan 2021 15:26:53 +0100 Subject: [TESTCASE] fix basic_onboard scenario 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 Change-Id: Ibc5482607a738692a05260913eeb322a0933ff03 --- src/onaptests/scenario/basic_onboard.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/onaptests/scenario/basic_onboard.py') diff --git a/src/onaptests/scenario/basic_onboard.py b/src/onaptests/scenario/basic_onboard.py index 3695975..f81a38c 100644 --- a/src/onaptests/scenario/basic_onboard.py +++ b/src/onaptests/scenario/basic_onboard.py @@ -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) -- cgit 1.2.3-korg