Read all variables required for EPA_03 testsuite from the robot file 63/14163/2
authorgarciadeblas <gerardo.garciadeblas@telefonica.com>
Tue, 23 Jan 2024 13:29:51 +0000 (14:29 +0100)
committergarciadeblas <gerardo.garciadeblas@telefonica.com>
Tue, 23 Jan 2024 23:16:07 +0000 (00:16 +0100)
Change-Id: Ibcd39e2e1547839ca276718c8d4f25e67cb8071d
Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
robot-systest/resources/epa_03-crud_operations_on_sdnc_data.py [deleted file]
robot-systest/testsuite/epa_03-crud_operations_on_sdnc.robot

diff --git a/robot-systest/resources/epa_03-crud_operations_on_sdnc_data.py b/robot-systest/resources/epa_03-crud_operations_on_sdnc_data.py
deleted file mode 100644 (file)
index fe8d541..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-#   Licensed under the Apache License, Version 2.0 (the "License");
-#   you may not use this file except in compliance with the License.
-#   You may obtain a copy of the License at
-#
-#       http://www.apache.org/licenses/LICENSE-2.0
-#
-#   Unless required by applicable law or agreed to in writing, software
-#   distributed under the License is distributed on an "AS IS" BASIS,
-#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-#   See the License for the specific language governing permissions and
-#   limitations under the License.
-
-import os
-
-
-# SDNC Configuration
-sdnc_name = "epa_03"
-sdnc_user = os.environ.get("SDNC_USER")
-if not sdnc_user:
-    raise Exception("'SDNC_USER' environment variable not found")
-sdnc_password = os.environ.get("SDNC_PASSWORD")
-if not sdnc_password:
-    raise Exception("'SDNC_PASSWORD' environment variable not found")
-sdnc_url = os.environ.get("SDNC_URL")
-if not sdnc_url:
-    raise Exception("'SDNC_URL' environment variable not found")
-sdnc_type = os.environ.get("SDNC_TYPE")
-if not sdnc_type:
-    raise Exception("'SDNC_TYPE' environment variable not found")
index 1312328..116082b 100644 (file)
@@ -18,23 +18,26 @@ Documentation   [EPA-03] CRUD operations on SDNC accounts.
 Resource   ../lib/prometheus_lib.resource
 Resource   ../lib/sdnc_lib.resource
 
-Variables   ../resources/epa_03-crud_operations_on_sdnc_data.py
-
 Test Tags   epa_03   cluster_epa   daily   regression
 
 Suite Setup   Run Keyword And Ignore Error   Suite Preparation
-Suite Teardown   Run Keyword And Ignore Error   Delete Basic SDNC
+Suite Teardown   Run Keyword And Ignore Error   Clean SDNC
 
 
 *** Variables ***
 ${SDNC_ENABLED_MAX_WAIT_TIME}   1min
 ${SDNC_ENABLED_POL_TIME}   10
+${SDNC_NAME}   epa_03
+${SDNC_USER}   %{SDNC_USER=karaf}
+${SDNC_PASSWORD}   %{SDNC_PASSWORD=karaf}
+${SDNC_URL}   %{SDNC_URL=http://localhost:8181}
+${SDNC_TYPE}   %{SDNC_TYPE=onos_vpls}
 
 
 *** Test Cases ***
 Create Basic SDNC
     [Documentation]   Register SDN controller in OSM.
-    ${created_sdnc_id}=   Create SDNC   ${sdnc_name}   ${sdnc_user}   ${sdnc_password}   ${sdnc_url}   ${sdnc_type}
+    ${created_sdnc_id}=   Create SDNC   ${SDNC_NAME}   ${SDNC_USER}   ${SDNC_PASSWORD}   ${SDNC_URL}   ${SDNC_TYPE}
     Set Suite Variable   ${SDNC_ID}   ${created_sdnc_id}
     Wait Until Keyword Succeeds   ${SDNC_ENABLED_MAX_WAIT_TIME}   ${SDNC_ENABLED_POL_TIME}   Check For SDNC   ${SDNC_ID}
 
@@ -45,10 +48,14 @@ Check SDNC Status Is Healthy
 Delete Basic SDNC
     [Documentation]   Delete SDN controller from OSM.
     [Tags]   cleanup
-    Delete SDNC   ${sdnc_name}
+    Delete SDNC   ${SDNC_NAME}
 
 
 *** Keywords ***
 Suite Preparation
     [Documentation]   Test Suite Preparation: Setting Prometheus Testsuite Variables.
     Set Testsuite Prometheus Variables
+
+Clean SDNC
+    [Documentation]   Delete SDN controller from OSM.
+    Delete SDNC   ${sdnc_name}