Bug 2327 fix to verify ipaddress in sol003_02 testsuite
[osm/tests.git] / robot-systest / testsuite / epa_03-crud_operations_on_sdnc.robot
index 335d619..116082b 100644 (file)
@@ -1,3 +1,4 @@
+*** Comments ***
 #   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
 #   See the License for the specific language governing permissions and
 #   limitations under the License.
 
+
 *** Settings ***
-Documentation     [EPA-03] CRUD operations on SDNC accounts.
+Documentation   [EPA-03] CRUD operations on SDNC accounts.
 
-Resource   %{ROBOT_DEVOPS_FOLDER}/lib/sdnc_lib.robot
+Resource   ../lib/prometheus_lib.resource
+Resource   ../lib/sdnc_lib.resource
 
-Variables   %{ROBOT_DEVOPS_FOLDER}/resources/epa_03-crud_operations_on_sdnc_data.py
+Test Tags   epa_03   cluster_epa   daily   regression
 
-Suite Teardown   Run Keyword And Ignore Error   Delete Basic SDNC
+Suite Setup   Run Keyword And Ignore Error   Suite Preparation
+Suite Teardown   Run Keyword And Ignore Error   Clean SDNC
 
 
-*** Test Cases ***
-Create Basic SDNC
-    [Tags]  sdnc_crud  sanity   regression
+*** 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}
 
-    ${created_sdnc_id}=  Create SDNC  ${sdnc_name}  ${sdnc_user}  ${sdnc_password}  ${sdnc_url}  ${sdnc_type}
-    Check for SDNC  ${sdnc_name}
 
+*** 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}
+    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}
 
- Check SDNC Status Is Healthy
-    [Tags]  sdnc_crud  sanity   regression
+Check SDNC Status Is Healthy
+    [Documentation]   Check in Prometheus that the SDN controller is in healthy state.
+    Check For SDNC Status   ${SDNC_ID}   ${PROMETHEUS_HOST}   ${PROMETHEUS_PORT}   ${PROMETHEUS_USER}   ${PROMETHEUS_PASSWORD}
 
-    Check for SDNC Status  ${sdnc_name}  ${prometheus_host}  ${prometheus_port}
+Delete Basic SDNC
+    [Documentation]   Delete SDN controller from OSM.
+    [Tags]   cleanup
+    Delete SDNC   ${SDNC_NAME}
 
 
-Delete Basic SDNC
-    [Tags]  sdnc_crud  sanity   regression  cleanup
+*** Keywords ***
+Suite Preparation
+    [Documentation]   Test Suite Preparation: Setting Prometheus Testsuite Variables.
+    Set Testsuite Prometheus Variables
 
-    Delete SDNC  ${sdnc_name}
+Clean SDNC
+    [Documentation]   Delete SDN controller from OSM.
+    Delete SDNC   ${sdnc_name}