aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/scenario
diff options
context:
space:
mode:
authorMichal Jagiello <michal.jagiello@t-mobile.pl>2024-01-31 08:30:41 +0100
committerMichal Jagiello <michal.jagiello@t-mobile.pl>2024-02-02 08:30:15 +0100
commit440df5e3af8446ddaf1e7ab9ed5abbbe439f9a06 (patch)
tree13ee8f0a3839b18eff32a1bcab25a6c5baf00364 /src/onaptests/scenario
parent6a3e189d7fac6ec562f8785c71ed87663ef0c311 (diff)
Refactor tests to use SDC v2 onapsdk module
Refactored SDC allows to archive and delete SDC resources Remove unmaintained test basic_clamp Issue-ID: TEST-404 Signed-off-by: Michal Jagiello <michal.jagiello@t-mobile.pl> Change-Id: I11e4be6f4567098b20733879e393c689766a9c6e
Diffstat (limited to 'src/onaptests/scenario')
-rw-r--r--src/onaptests/scenario/basic_clamp.py12
-rw-r--r--src/onaptests/scenario/cds_resource_resolution.py2
-rw-r--r--src/onaptests/scenario/multi_vnf_macro.py2
3 files changed, 2 insertions, 14 deletions
diff --git a/src/onaptests/scenario/basic_clamp.py b/src/onaptests/scenario/basic_clamp.py
deleted file mode 100644
index e04e372..0000000
--- a/src/onaptests/scenario/basic_clamp.py
+++ /dev/null
@@ -1,12 +0,0 @@
-"""Basic Clamp test case."""
-from onaptests.scenario.scenario_base import ScenarioBase
-from onaptests.steps.loop.clamp import ClampStep
-
-
-class BasicClamp(ScenarioBase):
- """Onboard, update a model with a loop, design the loop and deploy it."""
-
- def __init__(self, **kwargs):
- """Init Basic Clamp, onboard a VM, design and deploy a loop with CLAMP."""
- super().__init__('basic_clamp', **kwargs)
- self.test = ClampStep()
diff --git a/src/onaptests/scenario/cds_resource_resolution.py b/src/onaptests/scenario/cds_resource_resolution.py
index 03f8a86..a9965db 100644
--- a/src/onaptests/scenario/cds_resource_resolution.py
+++ b/src/onaptests/scenario/cds_resource_resolution.py
@@ -52,5 +52,5 @@ class CDSResourceResolution(ScenarioBase):
def __init__(self, **kwargs):
"""Init CDS resource resolution use case."""
- super().__init__('basic_cds', **kwargs)
+ super().__init__('cds_resource_resolution', **kwargs)
self.test = CDSResourceResolutionStep()
diff --git a/src/onaptests/scenario/multi_vnf_macro.py b/src/onaptests/scenario/multi_vnf_macro.py
index f4dfc71..107417d 100644
--- a/src/onaptests/scenario/multi_vnf_macro.py
+++ b/src/onaptests/scenario/multi_vnf_macro.py
@@ -88,5 +88,5 @@ class MultiVnfUbuntuMacro(ScenarioBase):
def __init__(self, **kwargs):
"""Init Basic Macro use case."""
- super().__init__('nso_ubuntu_macro', **kwargs)
+ super().__init__('multi_vnf_macro', **kwargs)
self.test = MultiVnfUbuntuMacroStep()