Update Robot Framework format - step 5
[integration/test.git] / csit / suites / controller / cluster_singleton / partition_and_heal_longevity.robot
index 5ac029245ad09c78614c6e49ac6adf6379b29d22..a7e830a5d5b4bbba718b525104d3bdeac4304c46 100644 (file)
@@ -1,44 +1,53 @@
 *** Settings ***
-Documentation     Cluster Singleton testing: Partition And Heal longevity suite
+Documentation       Cluster Singleton testing: Partition And Heal longevity suite
 ...
-...               Copyright (c) 2017 Cisco Systems, Inc. and others. All rights reserved.
+...                 Copyright (c) 2017 Cisco Systems, Inc. and others. All rights reserved.
 ...
-...               This program and the accompanying materials are made available under the
-...               terms of the Eclipse Public License v1.0 which accompanies this distribution,
-...               and is available at http://www.eclipse.org/legal/epl-v10.html
+...                 This program and the accompanying materials are made available under the
+...                 terms of the Eclipse Public License v1.0 which accompanies this distribution,
+...                 and is available at http://www.eclipse.org/legal/epl-v10.html
 ...
-...               Cluster Singleton service is designed to ensure that only one instance of
-...               an application is registered globally in the cluster.
-...               The goal is to establish the service operates correctly in face of node
-...               failures.
-Suite Setup       Setup_Keyword
-Suite Teardown    SSHLibrary.Close_All_Connections
-Test Setup        SetupUtils.Setup_Test_With_Logging_And_Without_Fast_Failing
-Test Teardown     SetupUtils.Teardown_Test_Show_Bugs_If_Test_Failed
-Default Tags      critical
-Library           Collections
-Library           SSHLibrary
-Library           RequestsLibrary
-Resource          ${CURDIR}/../../../libraries/controller/CsCommon.robot
-Resource          ${CURDIR}/../../../libraries/ClusterManagement.robot
-Resource          ${CURDIR}/../../../libraries/MdsalLowlevel.robot
-Resource          ${CURDIR}/../../../libraries/SetupUtils.robot
-Resource          ${CURDIR}/../../../libraries/WaitForFailure.robot
+...                 Cluster Singleton service is designed to ensure that only one instance of
+...                 an application is registered globally in the cluster.
+...                 The goal is to establish the service operates correctly in face of node
+...                 failures.
+
+Library             Collections
+Library             SSHLibrary
+Library             RequestsLibrary
+Resource            ${CURDIR}/../../../libraries/controller/CsCommon.robot
+Resource            ${CURDIR}/../../../libraries/ClusterManagement.robot
+Resource            ${CURDIR}/../../../libraries/MdsalLowlevel.robot
+Resource            ${CURDIR}/../../../libraries/SetupUtils.robot
+Resource            ${CURDIR}/../../../libraries/WaitForFailure.robot
+
+Suite Setup         Setup_Keyword
+Suite Teardown      SSHLibrary.Close_All_Connections
+Test Setup          SetupUtils.Setup_Test_With_Logging_And_Without_Fast_Failing
+Test Teardown       SetupUtils.Teardown_Test_Show_Bugs_If_Test_Failed
+
+Default Tags        critical
+
 
 *** Variables ***
 # TODO: change back to 24h when releng has more granular steps to kill VMs than days; now 23h=82800s
-${LONGEVITY_TEST_DURATION_IN_SECS}    82800
-${STABILITY_TIMEOUT_ISOLATED}    120s
-${STABILITY_TIMEOUT_REJOINED}    60s
-@{STATUS_ISOLATED}    ${501}
+${LONGEVITY_TEST_DURATION_IN_SECS}      82800
+${STABILITY_TIMEOUT_ISOLATED}           120s
+${STABILITY_TIMEOUT_REJOINED}           60s
+@{STATUS_ISOLATED}                      ${501}
+
 
 *** Test Cases ***
 CS_Pertition_And_Heal
     [Documentation]    24h lasting suite for isolating the cluster singleton leader repeatedly.
     CsCommon.Register_Singleton_Constant_On_Nodes    ${cs_all_indices}
-    WaitForFailure.Verify_Keyword_Does_Not_Fail_Within_Timeout    ${LONGEVITY_TEST_DURATION_IN_SECS}    3s    Test_Scenario
+    WaitForFailure.Verify_Keyword_Does_Not_Fail_Within_Timeout
+    ...    ${LONGEVITY_TEST_DURATION_IN_SECS}
+    ...    3s
+    ...    Test_Scenario
     CsCommon.Unregister_Singleton_Constant_On_Nodes    ${cs_all_indices}
 
+
 *** Keywords ***
 Setup_Keyword
     [Documentation]    Suite setup.
@@ -50,10 +59,23 @@ Test_Scenario
     ...    Monitor the stability of the singleton application and fail the the owner is changed during the monitoring. Monitoring
     ...    is done after the node isolation and after the node rejoin.
     ${owner}    ${candidates}=    CsCommon.Get_And_Save_Present_CsOwner_And_CsCandidates    1
-    BuiltIn.Wait_Until_Keyword_Succeeds    15s    2s    CsCommon.Verify_Singleton_Constant_On_Nodes    ${cs_all_indices}    ${CS_CONSTANT_PREFIX}${owner}
+    BuiltIn.Wait_Until_Keyword_Succeeds
+    ...    15s
+    ...    2s
+    ...    CsCommon.Verify_Singleton_Constant_On_Nodes
+    ...    ${cs_all_indices}
+    ...    ${CS_CONSTANT_PREFIX}${owner}
     KarafKeywords.Log_Message_To_Controller_Karaf    Isolating node${owner}.
     CsCommon.Isolate_Owner_And_Verify_Isolated
-    WaitForFailure.Verify_Keyword_Does_Not_Fail_Within_Timeout    ${STABILITY_TIMEOUT_ISOLATED}    3s    CsCommon.Verify_Singleton_Constant_During_Isolation
+    WaitForFailure.Verify_Keyword_Does_Not_Fail_Within_Timeout
+    ...    ${STABILITY_TIMEOUT_ISOLATED}
+    ...    3s
+    ...    CsCommon.Verify_Singleton_Constant_During_Isolation
     KarafKeywords.Log_Message_To_Controller_Karaf    Rejoining node${owner}.
     CsCommon.Rejoin_Node_And_Verify_Rejoined
-    WaitForFailure.Verify_Keyword_Does_Not_Fail_Within_Timeout    ${STABILITY_TIMEOUT_REJOINED}    3s    CsCommon.Verify_Singleton_Constant_On_Nodes    ${cs_all_indices}    ${CS_CONSTANT_PREFIX}${cs_owner}
+    WaitForFailure.Verify_Keyword_Does_Not_Fail_Within_Timeout
+    ...    ${STABILITY_TIMEOUT_REJOINED}
+    ...    3s
+    ...    CsCommon.Verify_Singleton_Constant_On_Nodes
+    ...    ${cs_all_indices}
+    ...    ${CS_CONSTANT_PREFIX}${cs_owner}