Remove testplans and suites for openstack
[integration/test.git] / tools / deployment / openstack_ha / deploy / 02_rabbitmq_setup.robot
index 9590f29ddf7a4b078e61121f5765095cb99f44d7..80c3793d4ffdf20c677af5630baa8f7b18a8b029 100644 (file)
@@ -1,35 +1,55 @@
 *** Settings ***
-Documentation     Test suite to verify packet flows between vm instances.
-Suite Setup       OpenStackInstallUtils.Get All Ssh Connections
-Suite Teardown    Close All Connections
-Library           SSHLibrary
-Library           OperatingSystem
-Library           RequestsLibrary
-Resource          ../libraries/OpenStackInstallUtils.robot
-Resource          ../libraries/SystemUtils.robot
-Resource          ../libraries/Utils.robot
+Documentation       Test suite to verify packet flows between vm instances.
+
+Library             SSHLibrary
+Library             OperatingSystem
+Library             RequestsLibrary
+Resource            ../libraries/OpenStackInstallUtils.robot
+Resource            ../libraries/SystemUtils.robot
+Resource            ../libraries/Utils.robot
+
+Suite Setup         OpenStackInstallUtils.Get All Ssh Connections
+Suite Teardown      Close All Connections
+
 
 *** Test Cases ***
 Setup RabbitMQ
-    Run Keyword If    2 > ${NUM_CONTROL_NODES}    Install RabbitMQ    ${OS_CONTROL_1_IP}
-    Run Keyword If    2 > ${NUM_CONTROL_NODES}    Start RabbitMQ    ${OS_CONTROL_1_IP}
-    Run Keyword If    2 > ${NUM_CONTROL_NODES}    Add Openstack MQ    ${OS_CONTROL_1_IP}    openstack    rabbit
-    Run Keyword If    2 < ${NUM_CONTROL_NODES}    Install RabbitMQ    ${OS_CONTROL_1_IP}
-    Run Keyword If    2 < ${NUM_CONTROL_NODES}    Start Stop And Copy Cookie File    ${OS_CONTROL_1_IP}    rabbit    rabbit
-    Run Keyword If    2 < ${NUM_CONTROL_NODES}    Install RabbitMQ    ${OS_CONTROL_2_IP}
-    Run Keyword If    2 < ${NUM_CONTROL_NODES}    Install RabbitMQ    ${OS_CONTROL_3_IP}
-    Run Keyword If    3 < ${NUM_CONTROL_NODES}    Install RabbitMQ    ${OS_CONTROL_4_IP}
-    Run Keyword If    4 < ${NUM_CONTROL_NODES}    Install RabbitMQ    ${OS_CONTROL_5_IP}
-    Run Keyword If    2 < ${NUM_CONTROL_NODES}    Setup RabbitMQ Cluster    ${OS_CONTROL_2_IP}    rabbit    ${OS_CONTROL_1_HOSTNAME}
-    Run Keyword If    2 < ${NUM_CONTROL_NODES}    Setup RabbitMQ Cluster    ${OS_CONTROL_3_IP}    rabbit    ${OS_CONTROL_1_HOSTNAME}
-    Run Keyword If    3 < ${NUM_CONTROL_NODES}    Setup RabbitMQ Cluster    ${OS_CONTROL_4_IP}    rabbit    ${OS_CONTROL_1_HOSTNAME}
-    Run Keyword If    4 < ${NUM_CONTROL_NODES}    Setup RabbitMQ Cluster    ${OS_CONTROL_5_IP}    rabbit    ${OS_CONTROL_1_HOSTNAME}
-    Run Keyword If    2 < ${NUM_CONTROL_NODES}    Generic HAProxy Entry    ${HAPROXY_IP}    ${HAPROXY_IP}    5672    rabbitmq
+    IF    2 > ${NUM_CONTROL_NODES}    Install RabbitMQ    ${OS_CONTROL_1_IP}
+    IF    2 > ${NUM_CONTROL_NODES}    Start RabbitMQ    ${OS_CONTROL_1_IP}
+    IF    2 > ${NUM_CONTROL_NODES}
+        Add Openstack MQ    ${OS_CONTROL_1_IP}    openstack    rabbit
+    END
+    IF    2 < ${NUM_CONTROL_NODES}    Install RabbitMQ    ${OS_CONTROL_1_IP}
+    IF    2 < ${NUM_CONTROL_NODES}
+        Start Stop And Copy Cookie File    ${OS_CONTROL_1_IP}    rabbit    rabbit
+    END
+    IF    2 < ${NUM_CONTROL_NODES}    Install RabbitMQ    ${OS_CONTROL_2_IP}
+    IF    2 < ${NUM_CONTROL_NODES}    Install RabbitMQ    ${OS_CONTROL_3_IP}
+    IF    3 < ${NUM_CONTROL_NODES}    Install RabbitMQ    ${OS_CONTROL_4_IP}
+    IF    4 < ${NUM_CONTROL_NODES}    Install RabbitMQ    ${OS_CONTROL_5_IP}
+    IF    2 < ${NUM_CONTROL_NODES}
+        Setup RabbitMQ Cluster    ${OS_CONTROL_2_IP}    rabbit    ${OS_CONTROL_1_HOSTNAME}
+    END
+    IF    2 < ${NUM_CONTROL_NODES}
+        Setup RabbitMQ Cluster    ${OS_CONTROL_3_IP}    rabbit    ${OS_CONTROL_1_HOSTNAME}
+    END
+    IF    3 < ${NUM_CONTROL_NODES}
+        Setup RabbitMQ Cluster    ${OS_CONTROL_4_IP}    rabbit    ${OS_CONTROL_1_HOSTNAME}
+    END
+    IF    4 < ${NUM_CONTROL_NODES}
+        Setup RabbitMQ Cluster    ${OS_CONTROL_5_IP}    rabbit    ${OS_CONTROL_1_HOSTNAME}
+    END
+    IF    2 < ${NUM_CONTROL_NODES}
+        Generic HAProxy Entry    ${HAPROXY_IP}    ${HAPROXY_IP}    5672    rabbitmq
+    END
+
 
 *** Keywords ***
 Install RabbitMQ
     [Arguments]    ${os_node_cxn}
-    Run Keyword If    '${OS_APPS_PRE_INSTALLED}' == 'no'    Install Rpm Package    ${os_node_cxn}    rabbitmq-server
+    IF    '${OS_APPS_PRE_INSTALLED}' == 'no'
+        Install Rpm Package    ${os_node_cxn}    rabbitmq-server
+    END
     Enable Service    ${os_node_cxn}    rabbitmq-server
 
 Start RabbitMQ
@@ -54,44 +74,54 @@ Setup RabbitMQ Cluster
     Copy RabbitMQ Cookie File    ${os_node_cxn}    ${rabbit_user}    ${src_hostname}
 
 Add Rabbitmq User
-    [Arguments]    ${os_node_cxn}    ${rabbit_user}    ${rabbit_pass}
     [Documentation]    Add a user to Rabbit MQ
+    [Arguments]    ${os_node_cxn}    ${rabbit_user}    ${rabbit_pass}
     Switch Connection    ${os_node_cxn}
-    ${output}    ${rc}=    Execute Command    sudo rabbitmqctl add_user ${rabbit_user} ${rabbit_pass}    return_rc=True    return_stdout=True
+    ${output}    ${rc}=    Execute Command
+    ...    sudo rabbitmqctl add_user ${rabbit_user} ${rabbit_pass}
+    ...    return_rc=True
+    ...    return_stdout=True
     Log    ${output}
+    RETURN    ${output}
+
     #Should Not Be True    ${rc}
-    [Return]    ${output}
 
 Change Rabbitmq Password
-    [Arguments]    ${os_node_cxn}    ${rabbit_user}    ${rabbit_pass}
     [Documentation]    Add a user to Rabbit MQ
+    [Arguments]    ${os_node_cxn}    ${rabbit_user}    ${rabbit_pass}
     Switch Connection    ${os_node_cxn}
-    ${output}    ${rc}=    Execute Command    sudo rabbitmqctl change_password ${rabbit_user} ${rabbit_pass}    return_rc=True    return_stdout=True
+    ${output}    ${rc}=    Execute Command
+    ...    sudo rabbitmqctl change_password ${rabbit_user} ${rabbit_pass}
+    ...    return_rc=True
+    ...    return_stdout=True
     Log    ${output}
     Should Not Be True    ${rc}
-    [Return]    ${output}
+    RETURN    ${output}
 
 Enable Access to Rabbitmq vhost
-    [Arguments]    ${os_node_cxn}    ${rabbit_user}
     [Documentation]    Add a user to Rabbit MQ
+    [Arguments]    ${os_node_cxn}    ${rabbit_user}
     Switch Connection    ${os_node_cxn}
-    ${output}    ${rc}=    Execute Command    rabbitmqctl set_permissions ${rabbit_user} ".*" ".*" ".*"    return_rc=True    return_stdout=True
+    ${output}    ${rc}=    Execute Command
+    ...    rabbitmqctl set_permissions ${rabbit_user} ".*" ".*" ".*"
+    ...    return_rc=True
+    ...    return_stdout=True
     Log    ${output}
     Should Not Be True    ${rc}
-    [Return]    ${output}
+    RETURN    ${output}
 
 Stop RabbitMQ
-    [Arguments]    ${os_node_cxn}
     [Documentation]    Stop the RabbitMQ user
+    [Arguments]    ${os_node_cxn}
     Switch Connection    ${os_node_cxn}
     ${output}    ${rc}=    Execute Command    rabbitmqctl stop_app    return_rc=True    return_stdout=True
     Log    ${output}
     Should Not Be True    ${rc}
-    [Return]    ${output}
+    RETURN    ${output}
 
 Get RabbitMQ Cookie File
-    [Arguments]    ${os_node_cxn}
     [Documentation]    Get the Cookie file from the primary node
+    [Arguments]    ${os_node_cxn}
     Switch Connection    ${os_node_cxn}
     ${output}    ${rc}=    Execute Command    rabbitmqctl stop_app    return_rc=True    return_stdout=True
     Log    ${output}
@@ -105,14 +135,20 @@ Get RabbitMQ Cookie File
     Should Not Be True    ${rc}
 
 Copy RabbitMQ Cookie File
-    [Arguments]    ${os_node_cxn}    ${rabbit_user}    ${src_hostname}
     [Documentation]    Copy the rabbit cookie file to other servers to join the cluster
+    [Arguments]    ${os_node_cxn}    ${rabbit_user}    ${src_hostname}
     Switch Connection    ${os_node_cxn}
     SSHLibrary.Put File    /tmp/.erlang.cookie    /var/lib/rabbitmq/.erlang.cookie
-    ${output}    ${rc}=    Execute Command    chown rabbitmq:rabbitmq /var/lib/rabbitmq/.erlang.cookie    return_rc=True    return_stdout=True
+    ${output}    ${rc}=    Execute Command
+    ...    chown rabbitmq:rabbitmq /var/lib/rabbitmq/.erlang.cookie
+    ...    return_rc=True
+    ...    return_stdout=True
     Log    ${output}
     Should Not Be True    ${rc}
-    ${output}    ${rc}=    Execute Command    chmod 400 /var/lib/rabbitmq/.erlang.cookie    return_rc=True    return_stdout=True
+    ${output}    ${rc}=    Execute Command
+    ...    chmod 400 /var/lib/rabbitmq/.erlang.cookie
+    ...    return_rc=True
+    ...    return_stdout=True
     Log    ${output}
     Should Not Be True    ${rc}
     Enable Service    ${os_node_cxn}    rabbitmq-server
@@ -120,7 +156,10 @@ Copy RabbitMQ Cookie File
     ${output}    ${rc}=    Execute Command    rabbitmqctl stop_app    return_rc=True    return_stdout=True
     Log    ${output}
     Should Not Be True    ${rc}
-    ${output}    ${rc}=    Execute Command    rabbitmqctl join_cluster --ram ${rabbit_user}@${src_hostname}    return_rc=True    return_stdout=True
+    ${output}    ${rc}=    Execute Command
+    ...    rabbitmqctl join_cluster --ram ${rabbit_user}@${src_hostname}
+    ...    return_rc=True
+    ...    return_stdout=True
     Log    ${output}
     Should Not Be True    ${rc}
     ${output}    ${rc}=    Execute Command    rabbitmqctl start_app    return_rc=True    return_stdout=True