Update Robot Framework format - step 12
[integration/test.git] / csit / suites / openflowplugin / EntityOwnership / 020_Cluster_Node_Failure.robot
index a841f29f6a8f8ece4b207878cb46f13b2f53d229..91ed6875d1c12812c32cf18f82c518f7569dc947 100644 (file)
@@ -1,38 +1,41 @@
 *** Settings ***
-Documentation     Test suite for entity ownership service and openflowplugin. Makes changes on controller side (restart karaf)
-Suite Setup       Start Suite
-Suite Teardown    End Suite
-Test Setup        SetupUtils.Setup_Test_With_Logging_And_Without_Fast_Failing
-Test Template     Restarting Karaf Scenario
-Library           SSHLibrary
-Library           RequestsLibrary
-Library           XML
-Resource          ${CURDIR}/../../../libraries/SetupUtils.robot
-Resource          ${CURDIR}/../../../libraries/Utils.robot
-Resource          ${CURDIR}/../../../libraries/FlowLib.robot
-Resource          ${CURDIR}/../../../libraries/OvsManager.robot
-Resource          ${CURDIR}/../../../libraries/ClusterManagement.robot
-Resource          ${CURDIR}/../../../libraries/ClusterOpenFlow.robot
-Library           Collections
+Documentation       Test suite for entity ownership service and openflowplugin. Makes changes on controller side (restart karaf)
+
+Library             SSHLibrary
+Library             RequestsLibrary
+Library             XML
+Resource            ${CURDIR}/../../../libraries/SetupUtils.robot
+Resource            ${CURDIR}/../../../libraries/Utils.robot
+Resource            ${CURDIR}/../../../libraries/FlowLib.robot
+Resource            ${CURDIR}/../../../libraries/OvsManager.robot
+Resource            ${CURDIR}/../../../libraries/ClusterManagement.robot
+Resource            ${CURDIR}/../../../libraries/ClusterOpenFlow.robot
+Library             Collections
+
+Suite Setup         Start Suite
+Suite Teardown      End Suite
+Test Setup          SetupUtils.Setup_Test_With_Logging_And_Without_Fast_Failing
+Test Template       Restarting Karaf Scenario
+
 
 *** Variables ***
-${SWITCHES}       1
-${START_CMD}      sudo mn --topo linear,${SWITCHES}
-${KARAF_HOME}     ${WORKSPACE}${/}${BUNDLEFOLDER}
+${SWITCHES}         1
+${START_CMD}        sudo mn --topo linear,${SWITCHES}
+${KARAF_HOME}       ${WORKSPACE}${/}${BUNDLEFOLDER}
+
 
 *** Test Cases ***
 Switches To Be Connected To All Nodes
     [Documentation]    Initial check for correct connected topology.
     [Template]    NONE
     BuiltIn.Wait Until Keyword Succeeds    5x    3s    Check All Switches Connected To All Cluster Nodes
-
 Restarting Owner Of Switch s1
     s1
-
 Switches Still Be Connected To All Nodes
     [Template]    NONE
     BuiltIn.Wait Until Keyword Succeeds    5x    3s    Check All Switches Connected To All Cluster Nodes
 
+
 *** Keywords ***
 Start Suite
     SetupUtils.Setup_Utils_For_Setup_And_Teardown
@@ -44,15 +47,20 @@ Start Suite
     SSHLibrary.Execute Command    sudo mn -c
     SSHLibrary.Write    ${START_CMD}
     SSHLibrary.Read Until    mininet>
-    ${cntls_list}    BuiltIn.Create List    ${ODL_SYSTEM_1_IP}    ${ODL_SYSTEM_2_IP}    ${ODL_SYSTEM_3_IP}
-    ${switch_list}    BuiltIn.Create List
+    ${cntls_list}=    BuiltIn.Create List    ${ODL_SYSTEM_1_IP}    ${ODL_SYSTEM_2_IP}    ${ODL_SYSTEM_3_IP}
+    ${switch_list}=    BuiltIn.Create List
     FOR    ${i}    IN RANGE    0    ${SWITCHES}
         ${sid}=    BuiltIn.Evaluate    ${i}+1
         Collections.Append To List    ${switch_list}    s${sid}
     END
     BuiltIn.Set Suite Variable    ${active_member}    1
     OvsManager.Setup Clustered Controller For Switches    ${switch_list}    ${cntls_list}
-    BuiltIn.Wait Until Keyword Succeeds    10s    1s    ClusterOpenFlow.Verify Switch Connections Running On Member    ${SWITCHES}    1
+    BuiltIn.Wait Until Keyword Succeeds
+    ...    10s
+    ...    1s
+    ...    ClusterOpenFlow.Verify Switch Connections Running On Member
+    ...    ${SWITCHES}
+    ...    1
 
 End Suite
     RequestsLibrary.Delete All Sessions
@@ -69,8 +77,8 @@ Check All Switches Connected To All Cluster Nodes
     END
 
 Restarting Karaf Scenario
-    [Arguments]    ${switch_name}
     [Documentation]    Disconnect and connect owner and successor and check switch data to be consistent
+    [Arguments]    ${switch_name}
     ${idx}=    BuiltIn.Evaluate    str("${switch_name}"[1:])
     BuiltIn.Set Test Variable    ${idx}
     Kill Switchs Old Owner    ${switch_name}
@@ -82,15 +90,26 @@ Restarting Karaf Scenario
 Kill Switchs Old Owner
     [Arguments]    ${switch_name}
     BuiltIn.Set Test Variable    ${stopped_karaf}    ${Empty}
-    ${old_owner}    ${old_successors}=    ClusterOpenFlow.Get OpenFlow Entity Owner Status For One Device    openflow:${idx}    ${active_member}
+    ${old_owner}    ${old_successors}=    ClusterOpenFlow.Get OpenFlow Entity Owner Status For One Device
+    ...    openflow:${idx}
+    ...    ${active_member}
     ${old_master}=    BuiltIn.Set Variable    ${ODL_SYSTEM_${old_owner}_IP}
     ${active_member}=    Collections.Get From List    ${old_successors}    0
     BuiltIn.Set Suite Variable    ${active_member}
     Stop Controller Node And Verify    ${old_owner}
     BuiltIn.Set Test Variable    ${stopped_karaf}    ${old_owner}
     ClusterOpenFlow.Check OpenFlow Shards Status After Cluster Event    ${old_successors}
-    ${new_master}=    BuiltIn.Wait Until Keyword Succeeds    5x    3s    Verify New Master Controller Node    ${switch_name}    ${old_master}
-    ${owner}    ${successors}=    ClusterOpenFlow.Get OpenFlow Entity Owner Status For One Device    openflow:${idx}    ${active_member}    ${old_successors}    after_stop=True
+    ${new_master}=    BuiltIn.Wait Until Keyword Succeeds
+    ...    5x
+    ...    3s
+    ...    Verify New Master Controller Node
+    ...    ${switch_name}
+    ...    ${old_master}
+    ${owner}    ${successors}=    ClusterOpenFlow.Get OpenFlow Entity Owner Status For One Device
+    ...    openflow:${idx}
+    ...    ${active_member}
+    ...    ${old_successors}
+    ...    after_stop=True
     BuiltIn.Should Be Equal As Strings    ${new_master}    ${ODL_SYSTEM_${owner}_IP}
     BuiltIn.Set Suite Variable    ${active_member}    ${owner}
     BuiltIn.Set Test Variable    ${old_owner}
@@ -104,12 +123,16 @@ Restart Switchs Old Owner
     Start Controller Node And Verify    ${old_owner}
     BuiltIn.Set Test Variable    ${stopped_karaf}    ${Empty}
     ClusterOpenFlow.Check OpenFlow Shards Status After Cluster Event
-    ${new_owner}    ${new_successors}=    ClusterOpenFlow.Get OpenFlow Entity Owner Status For One Device    openflow:${idx}    ${active_member}
+    ${new_owner}    ${new_successors}=    ClusterOpenFlow.Get OpenFlow Entity Owner Status For One Device
+    ...    openflow:${idx}
+    ...    ${active_member}
     BuiltIn.Should Be Equal    ${owner}    ${new_owner}
 
 Kill Switchs Successor
     [Arguments]    ${switch_name}
-    ${old_owner}    ${old_successors}=    ClusterOpenFlow.Get OpenFlow Entity Owner Status For One Device    openflow:${idx}    ${active_member}
+    ${old_owner}    ${old_successors}=    ClusterOpenFlow.Get OpenFlow Entity Owner Status For One Device
+    ...    openflow:${idx}
+    ...    ${active_member}
     ${old_successor}=    Collections.Get From List    ${old_successors}    0
     ${old_slave}=    BuiltIn.Set Variable    ${ODL_SYSTEM_${old_successor}_IP}
     Stop Controller Node And Verify    ${old_successor}
@@ -117,7 +140,11 @@ Kill Switchs Successor
     ${tmp_candidates}=    BuiltIn.Create List    @{ClusterManagement__member_index_list}
     Collections.Remove Values From List    ${tmp_candidates}    ${old_successor}
     ClusterOpenFlow.Check OpenFlow Shards Status After Cluster Event    ${tmp_candidates}
-    ${owner}    ${successor}=    ClusterOpenFlow.Get OpenFlow Entity Owner Status For One Device    openflow:${idx}    ${active_member}    ${tmp_candidates}    after_stop=True
+    ${owner}    ${successor}=    ClusterOpenFlow.Get OpenFlow Entity Owner Status For One Device
+    ...    openflow:${idx}
+    ...    ${active_member}
+    ...    ${tmp_candidates}
+    ...    after_stop=True
     BuiltIn.Should Be Equal    ${owner}    ${old_owner}
     BuiltIn.Should Be Equal As Strings    ${new_master}    ${ODL_SYSTEM_${owner}_IP}
     BuiltIn.Set Test Variable    ${old_owner}
@@ -131,26 +158,31 @@ Restart Switchs Successor
     Start Controller Node And Verify    ${old_successor}
     BuiltIn.Set Test Variable    ${stopped_karaf}    ${Empty}
     ClusterOpenFlow.Check OpenFlow Shards Status After Cluster Event
-    ${new_owner}    ${new_successors}=    ClusterOpenFlow.Get OpenFlow Entity Owner Status For One Device    openflow:${idx}    ${active_member}
+    ${new_owner}    ${new_successors}=    ClusterOpenFlow.Get OpenFlow Entity Owner Status For One Device
+    ...    openflow:${idx}
+    ...    ${active_member}
     BuiltIn.Should Be Equal    ${old_owner}    ${new_owner}
 
 Verify New Master Controller Node
-    [Arguments]    ${switch_name}    ${old_master}
     [Documentation]    Checks if given node is different from actual master
+    [Arguments]    ${switch_name}    ${old_master}
     ${idx}=    BuiltIn.Evaluate    "${switch_name}"[1:]
-    ${owner}    ${successors}=    ClusterManagement.Get Owner And Candidates For Device    openflow:${idx}    openflow    ${active_member}
-    ${new_master}    BuiltIn.Set Variable    ${ODL_SYSTEM_${owner}_IP}
+    ${owner}    ${successors}=    ClusterManagement.Get Owner And Candidates For Device
+    ...    openflow:${idx}
+    ...    openflow
+    ...    ${active_member}
+    ${new_master}=    BuiltIn.Set Variable    ${ODL_SYSTEM_${owner}_IP}
     BuiltIn.Should Not Be Equal    ${old_master}    ${new_master}
-    Return From Keyword    ${new_master}
+    RETURN    ${new_master}
 
 Stop Controller Node And Verify
-    [Arguments]    ${node}
     [Documentation]    Stops the given node
+    [Arguments]    ${node}
     ClusterManagement.Stop Single Member    ${node}
     [Teardown]    SSHLibrary.Switch Connection    ${mininet_conn_id}
 
 Start Controller Node And Verify
-    [Arguments]    ${node}
     [Documentation]    Starts the given node
+    [Arguments]    ${node}
     ClusterManagement.Start Single Member    ${node}
     [Teardown]    SSHLibrary.Switch Connection    ${mininet_conn_id}