aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/scenario
diff options
context:
space:
mode:
authormorganrol <morgan.richomme@orange.com>2021-03-31 19:07:11 +0200
committermorganrol <morgan.richomme@orange.com>2021-03-31 19:23:15 +0200
commitc5f7f5e4d905171c1f0663bcb64ee050985a2d0b (patch)
treed48441654387a204abfce38da9fa094e70f58631 /src/onaptests/scenario
parenteffb276cbd7d61c6e5ee2d93eb2a7d6baa1d5baa (diff)
[CLAMP] Integrate basic_clamp
Some regressions occured and old files were used This patch update the different components with the right versions It also renames the vnf-service in basic_clamp-services.yaml It creates the entry point and the scenario to integrate the test in xtesting Issue-ID: INT-1819 Signed-off-by: morganrol <morgan.richomme@orange.com> Change-Id: I7a9e49d8ddc2c5bd0625a4a5ed940c10aed74f81
Diffstat (limited to 'src/onaptests/scenario')
-rw-r--r--src/onaptests/scenario/basic_clamp.py47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/onaptests/scenario/basic_clamp.py b/src/onaptests/scenario/basic_clamp.py
new file mode 100644
index 0000000..d3a9ba1
--- /dev/null
+++ b/src/onaptests/scenario/basic_clamp.py
@@ -0,0 +1,47 @@
+"""Basic Clamp test case."""
+import logging
+import time
+from xtesting.core import testcase
+from onapsdk.configuration import settings
+from onapsdk.exceptions import SDKException, APIError
+from onaptests.steps.loop.clamp import ClampStep
+from onaptests.utils.exceptions import OnapTestException
+class BasicClamp(testcase.TestCase):
+ """Onboard, update a model with a loop, design the loop and deploy it."""
+ __logger = logging.getLogger(__name__)
+ def __init__(self, **kwargs):
+ """Init Basic Clamp, onboard a VM, design and deploy a loop with CLAMP."""
+ if "case_name" not in kwargs:
+ kwargs["case_name"] = 'basic_clamp'
+ super(BasicClamp, self).__init__(**kwargs)
+ self.__logger.debug("Basic CLAMP init started")
+ self.test = ClampStep(
+ cleanup=settings.CLEANUP_FLAG)
+ self.start_time = None
+ self.stop_time = None
+ self.result = 0
+ def run(self):
+ """Run Basic CLAMP onap test."""
+ self.start_time = time.time()
+ self.__logger.debug("start time")
+ try:
+ self.test.execute()
+ self.__logger.info("VNF basic_clamp successfully created")
+ # The cleanup is part of the test, not only a teardown action
+ if settings.CLEANUP_FLAG:
+ self.__logger.info("VNF basic_clamp 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
+ except (OnapTestException, SDKException, APIError) 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()