aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/scenario/basic_cnf.py
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2020-10-13 09:16:20 +0000
committerMorgan Richomme <morgan.richomme@orange.com>2020-10-13 09:16:20 +0000
commitded9ae3b507b9687a68cc00dfc75e13130be13ff (patch)
treec4fd34da2631a3a775612946841bd7149b664f8c /src/onaptests/scenario/basic_cnf.py
parent0123c525b0182a5d6f9cd1bee3830eb1956239c7 (diff)
Revert "Create basic_cnf test leveraging onapsdk"
This reverts commit 0123c525b0182a5d6f9cd1bee3830eb1956239c7. Reason for revert: <it is breaking basic_vm because ModuleNotFoundError: No module named 'onapsdk.msb.k8s' > Issue-ID: TEST-243 Change-Id: Iaf398a11b296b2c2bf55d9a25a588cd32e44077a Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
Diffstat (limited to 'src/onaptests/scenario/basic_cnf.py')
-rw-r--r--src/onaptests/scenario/basic_cnf.py47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/onaptests/scenario/basic_cnf.py b/src/onaptests/scenario/basic_cnf.py
deleted file mode 100644
index 6744781..0000000
--- a/src/onaptests/scenario/basic_cnf.py
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/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