aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/steps/cloud/link_cloud_to_complex.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/onaptests/steps/cloud/link_cloud_to_complex.py')
-rw-r--r--src/onaptests/steps/cloud/link_cloud_to_complex.py40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/onaptests/steps/cloud/link_cloud_to_complex.py b/src/onaptests/steps/cloud/link_cloud_to_complex.py
new file mode 100644
index 0000000..4da3804
--- /dev/null
+++ b/src/onaptests/steps/cloud/link_cloud_to_complex.py
@@ -0,0 +1,40 @@
+from onapsdk.aai.cloud_infrastructure import CloudRegion, Complex
+from onapsdk.configuration import settings
+
+from ..base import BaseStep
+from .cloud_region_create import CloudRegionCreateStep
+from .complex_create import ComplexCreateStep
+
+
+class LinkCloudRegionToComplexStep(BaseStep):
+ """Link cloud region to complex step"""
+
+ def __init__(self, cleanup=False):
+ """Initialize step.
+
+ Substeps:
+ - ComplexCreateStep,
+ - CloudRegionCreateStep.
+ """
+ super().__init__(cleanup=cleanup)
+ self.add_step(ComplexCreateStep(cleanup=cleanup))
+ self.add_step(CloudRegionCreateStep(cleanup=cleanup))
+
+ def execute(self):
+ """Link cloud region to complex.
+
+ Use settings values:
+ - COMPLEX_PHYSICAL_LOCATION_ID,
+ - CLOUD_REGION_CLOUD_OWNER,
+ - CLOUD_REGION_ID.
+ """
+ super().execute()
+ cmplx = Complex(
+ physical_location_id=settings.COMPLEX_PHYSICAL_LOCATION_ID,
+ name=settings.COMPLEX_PHYSICAL_LOCATION_ID
+ )
+ cloud_region = CloudRegion.get_by_id(
+ cloud_owner=settings.CLOUD_REGION_CLOUD_OWNER,
+ cloud_region_id=settings.CLOUD_REGION_ID,
+ )
+ cloud_region.link_to_complex(cmplx)