Remove libraries for openstack
[integration/test.git] / csit / libraries / DevstackUtils.robot
diff --git a/csit/libraries/DevstackUtils.robot b/csit/libraries/DevstackUtils.robot
deleted file mode 100644 (file)
index a8bb601..0000000
+++ /dev/null
@@ -1,124 +0,0 @@
-*** Settings ***
-Documentation       General Utils library. This library has broad scope, it can be used by any robot system tests.
-
-Library             RequestsLibrary
-Library             SSHLibrary
-Resource            OpenStackOperations.robot
-Resource            ../variables/Variables.robot
-
-
-*** Variables ***
-${DEFAULT_DEVSTACK_PROMPT_TIMEOUT}      10s
-${DEVSTACK_SYSTEM_PASSWORD}             \    # set to empty, but provide for others to override if desired
-${OS_CNTL_CONN_ID}                      None
-${OS_CMP1_CONN_ID}                      None
-${OS_CMP2_CONN_ID}                      None
-${OS_CNTL_IP}                           ${EMPTY}
-${OS_CMP1_IP}                           ${EMPTY}
-${OS_CMP2_IP}                           ${EMPTY}
-@{OS_ALL_IPS}                           @{EMPTY}
-@{OS_CMP_IPS}                           @{EMPTY}
-${OS_NODE_CNT}                          ${1}
-
-
-*** Keywords ***
-Open Connection
-    [Arguments]    ${name}    ${ip}
-    ${conn_id} =    SSHLibrary.Open Connection    ${ip}    prompt=${DEFAULT_LINUX_PROMPT}
-    SSHKeywords.Flexible SSH Login    ${OS_USER}    ${DEVSTACK_SYSTEM_PASSWORD}
-    BuiltIn.Set Suite Variable    \${${name}}    ${conn_id}
-    RETURN    ${conn_id}
-
-Devstack Suite Setup
-    [Documentation]    Open connections to the nodes
-    [Arguments]    ${odl_ip}=${ODL_SYSTEM_IP}
-    SSHLibrary.Set Default Configuration    timeout=${DEFAULT_DEVSTACK_PROMPT_TIMEOUT}
-    DevstackUtils.Get DevStack Nodes Data
-    RequestsLibrary.Create Session    session    http://${odl_ip}:${RESTCONFPORT}    auth=${AUTH}    headers=${HEADERS}
-
-Write Commands Until Prompt
-    [Documentation]    quick wrapper for Write and Read Until Prompt Keywords to make test cases more readable
-    [Arguments]    ${cmd}    ${timeout}=${DEFAULT_DEVSTACK_PROMPT_TIMEOUT}
-    SSHLibrary.Set Client Configuration    timeout=${timeout}
-    SSHLibrary.Read
-    SSHLibrary.Write    ${cmd};echo Command Returns $?
-    ${output} =    SSHLibrary.Read Until Prompt
-    RETURN    ${output}
-
-Write Commands Until Prompt And Log
-    [Documentation]    quick wrapper for Write and Read Until Prompt Keywords to make test cases more readable
-    [Arguments]    ${cmd}    ${timeout}=${DEFAULT_DEVSTACK_PROMPT_TIMEOUT}
-    ${output} =    DevstackUtils.Write Commands Until Prompt    ${cmd}    ${timeout}
-    BuiltIn.Log    ${output}
-    RETURN    ${output}
-
-Log Devstack Nodes Data
-    ${output} =    BuiltIn.Catenate
-    ...    SEPARATOR=\n
-    ...    OS_CNTL_HOSTNAME: ${OS_CNTL_HOSTNAME} - OS_CNTL_IP: ${OS_CNTL_IP} - OS_CONTROL_NODE_IP: ${OS_CONTROL_NODE_IP}
-    ...    OS_CMP1_HOSTNAME: ${OS_CMP1_HOSTNAME} - OS_CMP1_IP: ${OS_CMP1_IP} - OS_COMPUTE_1_IP: ${OS_COMPUTE_1_IP}
-    ...    OS_CMP2_HOSTNAME: ${OS_CMP2_HOSTNAME} - OS_CMP2_IP: ${OS_CMP2_IP} - OS_COMPUTE_2_IP: ${OS_COMPUTE_2_IP}
-    ...    OS_ALL_IPS: @{OS_ALL_IPS}
-    ...    OS_CMP_IPS: @{OS_CMP_IPS}
-    ...    OS_NODE_CNT: ${OS_NODE_CNT}
-    ...    OS_ALL_CONN_IDS: @{OS_ALL_CONN_IDS}
-    ...    OS_CMP_CONN_IDS: @{OS_CMP_CONN_IDS}
-    BuiltIn.Log    DevStack Nodes Data:\n${output}
-
-Get DevStack Hostnames
-    [Documentation]    Assign hostname global variables for DevStack nodes
-    ${OS_CNTL_HOSTNAME} =    OpenStackOperations.Get Hypervisor Hostname From IP    ${OS_CNTL_IP}
-    ${OS_CMP1_HOSTNAME} =    OpenStackOperations.Get Hypervisor Hostname From IP    ${OS_CMP1_IP}
-    ${OS_CMP2_HOSTNAME} =    OpenStackOperations.Get Hypervisor Hostname From IP    ${OS_CMP2_IP}
-    BuiltIn.Set Suite Variable    ${OS_CNTL_HOSTNAME}
-    BuiltIn.Set Suite Variable    ${OS_CMP1_HOSTNAME}
-    BuiltIn.Set Suite Variable    ${OS_CMP2_HOSTNAME}
-
-Set Node Data For AllinOne Setup
-    [Documentation]    Assign global variables for DevStack nodes where the Control Node enables Compute service also.
-    BuiltIn.Set Suite Variable    ${OS_CMP1_IP}    ${OS_CNTL_IP}
-    BuiltIn.Set Suite Variable    ${OS_CMP2_IP}    ${OS_CNTL_IP}
-    BuiltIn.Set Suite Variable    @{OS_ALL_IPS}    ${OS_CNTL_IP}
-    BuiltIn.Set Suite Variable    @{OS_CMP_IPS}    ${OS_CNTL_IP}
-    BuiltIn.Set Suite Variable    ${OS_CMP1_CONN_ID}    ${OS_CNTL_CONN_ID}
-    BuiltIn.Set Suite Variable    ${OS_CMP2_CONN_ID}    ${OS_CNTL_CONN_ID}
-    BuiltIn.Set Suite Variable    @{OS_ALL_CONN_IDS}    ${OS_CNTL_CONN_ID}
-    BuiltIn.Set Suite Variable    @{OS_CMP_CONN_IDS}    ${OS_CNTL_CONN_ID}
-
-Set Node Data For Control And Compute Node Setup
-    [Documentation]    Assign global variables for DevStack nodes where the control node is also the compute
-    BuiltIn.Set Suite Variable    ${OS_CMP1_IP}    ${OS_CNTL_IP}
-    BuiltIn.Set Suite Variable    ${OS_CMP2_IP}    ${OS_COMPUTE_1_IP}
-    BuiltIn.Set Suite Variable    @{OS_ALL_IPS}    ${OS_CNTL_IP}    ${OS_CMP2_IP}
-    BuiltIn.Set Suite Variable    @{OS_CMP_IPS}    ${OS_CMP1_IP}    ${OS_CMP2_IP}
-    BuiltIn.Set Suite Variable    ${OS_CMP1_CONN_ID}    ${OS_CNTL_CONN_ID}
-    DevstackUtils.Open Connection    OS_CMP2_CONN_ID    ${OS_COMPUTE_1_IP}
-    BuiltIn.Set Suite Variable    @{OS_ALL_CONN_IDS}    ${OS_CNTL_CONN_ID}    ${OS_CMP2_CONN_ID}
-    BuiltIn.Set Suite Variable    @{OS_CMP_CONN_IDS}    ${OS_CNTL_CONN_ID}    ${OS_CMP2_CONN_ID}
-
-Set Node Data For Control And Two Compute Node Setup
-    [Documentation]    Assign global variables for DevStack nodes where the control node is different than the compute
-    BuiltIn.Set Suite Variable    ${OS_CMP1_IP}    ${OS_COMPUTE_1_IP}
-    BuiltIn.Set Suite Variable    ${OS_CMP2_IP}    ${OS_COMPUTE_2_IP}
-    BuiltIn.Set Suite Variable    @{OS_ALL_IPS}    ${OS_CNTL_IP}    ${OS_CMP1_IP}    ${OS_CMP2_IP}
-    BuiltIn.Set Suite Variable    @{OS_CMP_IPS}    ${OS_CMP1_IP}    ${OS_CMP2_IP}
-    DevstackUtils.Open Connection    OS_CMP1_CONN_ID    ${OS_COMPUTE_1_IP}
-    DevstackUtils.Open Connection    OS_CMP2_CONN_ID    ${OS_COMPUTE_2_IP}
-    BuiltIn.Set Suite Variable    @{OS_ALL_CONN_IDS}    ${OS_CNTL_CONN_ID}    ${OS_CMP1_CONN_ID}    ${OS_CMP2_CONN_ID}
-    BuiltIn.Set Suite Variable    @{OS_CMP_CONN_IDS}    ${OS_CMP1_CONN_ID}    ${OS_CMP2_CONN_ID}
-
-Get DevStack Nodes Data
-    [Documentation]    Assign global variables for DevStack nodes
-    BuiltIn.Set Suite Variable    ${OS_CNTL_IP}    ${OS_CONTROL_NODE_IP}
-    DevstackUtils.Open Connection    OS_CNTL_CONN_ID    ${OS_CNTL_IP}
-    IF    "${OPENSTACK_TOPO}" == "1cmb-0ctl-0cmp"
-        DevstackUtils.Set Node Data For AllinOne Setup
-    ELSE IF    "${OPENSTACK_TOPO}" == "1cmb-0ctl-1cmp"
-        DevstackUtils.Set Node Data For Control And Compute Node Setup
-    ELSE IF    "${OPENSTACK_TOPO}" == "0cmb-1ctl-2cmp"
-        DevstackUtils.Set Node Data For Control And Two Compute Node Setup
-    END
-    ${OS_NODE_CNT} =    BuiltIn.Get Length    ${OS_ALL_IPS}
-    BuiltIn.Set Suite Variable    ${OS_NODE_CNT}
-    DevstackUtils.Get DevStack Hostnames
-    DevstackUtils.Log Devstack Nodes Data