Move new Clustering Keywords
authorPhillip Shea <phillip.shea@hp.com>
Fri, 24 Jul 2015 17:54:30 +0000 (10:54 -0700)
committerGerrit Code Review <gerrit@opendaylight.org>
Wed, 5 Aug 2015 23:06:28 +0000 (23:06 +0000)
Move new clustering keywords from utils.txt to ClusteringKeywords.txt.
Also ran Tidy on all affected files.

Change-Id: I6174deefef5e15ab0ef18d5cf544fd2a26a16c98
Signed-off-by: Phillip Shea <phillip.shea@hp.com>
test/csit/libraries/ClusterKeywords.txt
test/csit/libraries/Utils.txt
test/csit/suites/controller/Clustering_Datastore/001_start_cluster.robot
test/csit/suites/controller/Clustering_Datastore/030_car_failover_crud_on_new_leader.robot
test/csit/suites/controller/Clustering_Datastore/999_cleanup.robot

index 5565bd7de18e7e6ce18da0bb1eea44932f7b616a..46512e1a2f7064b2727fedf9f6766090519fd953 100644 (file)
@@ -7,127 +7,130 @@ Library           Collections
 *** Keywords ***
 Get Controller List
     [Arguments]    ${exclude_controller}=${EMPTY}
+    [Documentation]  Creates a list of all controllers minus any excluded controller.
     Log    ${exclude_controller}
-    @{searchlist}    Create List    ${CONTROLLER}  ${CONTROLLER1}  ${CONTROLLER2}
+    @{searchlist}    Create List    ${CONTROLLER}    ${CONTROLLER1}    ${CONTROLLER2}
     Remove Values From List    ${searchlist}    ${exclude_controller}
     Log    ${searchlist}
     [Return]    ${searchlist}
 
 Get Leader And Verify
-    [Arguments]   ${shard_name}  ${old_leader}=${EMPTY}
-    [Documentation]  Returns the IP addr or hostname of the leader of the specified shard.
-    [Documentation]  Controllers are specifed in the pybot command line.
+    [Arguments]    ${shard_name}    ${old_leader}=${EMPTY}
+    [Documentation]    Returns the IP addr or hostname of the leader of the specified shard.
+    ...    Controllers are specifed in the pybot command line.
     ${searchlist}    Get Controller List    ${old_leader}
-    ${leader}   GetLeader   ${shard_name}  ${3}  ${3}  ${1}  ${PORT}  @{searchlist}
-    Should Not Be Equal As Strings   ${leader}   None
-    Run Keyword If  '${old_leader}'!='${EMPTY}'  Should Not Be Equal  ${old_leader}  ${leader}
-    [Return]   ${leader}
+    ${leader}    GetLeader    ${shard_name}    ${3}    ${3}    ${1}    ${PORT}
+    ...    @{searchlist}
+    Should Not Be Equal As Strings    ${leader}    None
+    Run Keyword If    '${old_leader}'!='${EMPTY}'    Should Not Be Equal    ${old_leader}    ${leader}
+    [Return]    ${leader}
 
 Wait For Leader To Be Found
-    [Arguments]   ${shard_name}
-    [Documentation]  Waits until the leader of the specified shard is found.
-    ${leader}   Wait Until Keyword Succeeds   60s  2s  Get Leader And Verify  ${shard_name}
-    Log   ${leader}
-    [Return]   ${leader}
+    [Arguments]    ${shard_name}
+    [Documentation]    Waits until the leader of the specified shard is found.
+    ${leader}    Wait Until Keyword Succeeds    12s    2s    Get Leader And Verify    ${shard_name}
+    Log    ${leader}
+    [Return]    ${leader}
 
 Switch Leader
-    [Arguments]   ${shard_name}  ${current_leader}
-    [Documentation]  Forces a change of leadership by shutting down the current leader.
-    Stop One Or More Controllers  ${current_leader}
-    ${new_leader}  Wait Until Keyword Succeeds   60s  2s  Get Leader And Verify  ${shard_name}  ${current_leader}
+    [Arguments]    ${shard_name}    ${current_leader}
+    [Documentation]    Forces a change of leadership by shutting down the current leader.
+    Stop One Or More Controllers    ${current_leader}
+    ${new_leader}    Wait Until Keyword Succeeds    60s    2s    Get Leader And Verify    ${shard_name}    ${current_leader}
     # TODO: Future enhanement: make sure the other controller is a follower and not a master or candidate.
-    Log   ${new_leader}
-    [Return]   ${new_leader}
+    Log    ${new_leader}
+    [Return]    ${new_leader}
 
 Get All Followers
-    [Arguments]   ${shard_name}    ${exclude_controller}=${EMPTY}
-    [Documentation]  Returns the IP addresses or hostnames of all followers of the specified shard.
+    [Arguments]    ${shard_name}    ${exclude_controller}=${EMPTY}
+    [Documentation]    Returns the IP addresses or hostnames of all followers of the specified shard.
     ${searchlist}    Get Controller List    ${exclude_controller}
-    ${followers}  GetFollowers  ${shard_name}  ${3}  ${3}  ${1}  ${PORT}  @{searchlist}
-    Log  ${followers}
-    Should Not Be Empty  ${followers}
-    [Return]  ${followers}
+    ${followers}    GetFollowers    ${shard_name}    ${3}    ${3}    ${1}    ${PORT}
+    ...    @{searchlist}
+    Log    ${followers}
+    Should Not Be Empty    ${followers}
+    [Return]    ${followers}
 
 Add Cars And Verify
-    [Documentation]  Initializes shard and then adds the specified number of cars and performs a GET as a check.
-    [Arguments]    ${controller_ip}    ${num_cars}  ${timeout}=60s
-    ${resp}   InitCar   ${controller_ip}   ${PORT}
+    [Arguments]    ${controller_ip}    ${num_cars}    ${timeout}=12s
+    [Documentation]    Initializes shard and then adds the specified number of cars and performs a GET as a check.
+    ${resp}    InitCar    ${controller_ip}    ${PORT}
     Should Be Equal As Strings    ${resp.status_code}    204
-    ${resp}   AddCar   ${controller_ip}   ${RESTCONFPORT}   ${num_cars}    204
+    ${resp}    AddCar    ${controller_ip}    ${RESTCONFPORT}    ${num_cars}    204
     Should Be Equal As Strings    ${resp.status_code}    204
-    Wait Until Keyword Succeeds   ${timeout}  2s  Get Cars And Verify   ${controller_ip}  ${num_cars}
+    Wait Until Keyword Succeeds    ${timeout}    2s    Get Cars And Verify    ${controller_ip}    ${num_cars}
 
 Add Cars And Verify Without Init
-    [Documentation]  Adds cars to an initialized cars shard then performs a GET as a check.
-    [Arguments]    ${controller_ip}    ${num_cars}  ${timeout}=60s
+    [Arguments]    ${controller_ip}    ${num_cars}    ${timeout}=12s
+    [Documentation]    Adds cars to an initialized cars shard then performs a GET as a check.
     Comment    First car add may return 409, but subsequent should be 204
-    ${resp}   AddCar   ${controller_ip}   ${RESTCONFPORT}   ${num_cars}   204    409
+    ${resp}    AddCar    ${controller_ip}    ${RESTCONFPORT}    ${num_cars}    204    409
     Should Be Equal As Strings    ${resp.status_code}    204
-    Wait Until Keyword Succeeds   ${timeout}  2s  Get Cars And Verify   ${controller_ip}  ${num_cars}
-
+    Wait Until Keyword Succeeds    ${timeout}    2s    Get Cars And Verify    ${controller_ip}    ${num_cars}
 
 Get Cars And Verify
     [Arguments]    ${controller_ip}    ${num_cars}
-    [Documentation]  Gets cars and verifies that the manufacturer is correct.
+    [Documentation]    Gets cars and verifies that the manufacturer is correct.
     # TODO: Future enhanement: verify all fields.
-    ${resp}     Getcars  ${controller_ip}   ${RESTCONFPORT}  ${0}
+    ${resp}    Getcars    ${controller_ip}    ${RESTCONFPORT}    ${0}
     Should Be Equal As Strings    ${resp.status_code}    200
-    :FOR    ${i}    IN RANGE    1    ${num_cars}+1
-    \    Should Contain     ${resp.content}   manufacturer${i}
+    : FOR    ${i}    IN RANGE    1    ${num_cars}+1
+    \    Should Contain    ${resp.content}    manufacturer${i}
 
 Add People And Verify
     [Arguments]    ${controller_ip}    ${num_people}
-    [Documentation]  Note: The first AddPerson call passed with 0 posts directly to the data store to get
-    [Documentation]  the people container created so the subsequent AddPerson RPC calls that put 
-    [Documentation]  to the person list will succeed.
-    ${resp}  AddPerson  ${controller_ip}  ${RESTCONFPORT}  ${0}    204
-    Should Be Equal As Strings  ${resp.status_code}  204
-    Wait Until Keyword Succeeds   60s  2s  Get One Person And Verify  ${controller_ip}  ${0}
-    ${resp}  AddPerson   ${controller_ip}    ${RESTCONFPORT}  ${num_people}    200
-    Wait Until Keyword Succeeds   60s  2s  Get People And Verify  ${controller_ip}  ${num_people}
+    [Documentation]    Note: The first AddPerson call passed with 0 posts directly to the data store to get
+    ...    the people container created so the subsequent AddPerson RPC calls that put to the
+    ...    person list will succeed.
+    ${resp}    AddPerson    ${controller_ip}    ${RESTCONFPORT}    ${0}    204
+    Should Be Equal As Strings    ${resp.status_code}    204
+    Wait Until Keyword Succeeds    12s    2s    Get One Person And Verify    ${controller_ip}    ${0}
+    ${resp}    AddPerson    ${controller_ip}    ${RESTCONFPORT}    ${num_people}    200
+    Wait Until Keyword Succeeds    12s    2s    Get People And Verify    ${controller_ip}    ${num_people}
 
 Get One Person And Verify
     [Arguments]    ${controller_ip}    ${number}
-    [Documentation]  Gets a person and verifies that the user ID is correct.
+    [Documentation]    Gets a person and verifies that the user ID is correct.
     # TODO: Future enhanement: verify all fields.
-    ${resp}     GetPersons  ${controller_ip}    ${RESTCONFPORT}  ${0}
+    ${resp}    GetPersons    ${controller_ip}    ${RESTCONFPORT}    ${0}
     Should Be Equal As Strings    ${resp.status_code}    200
-    Should Contain   ${resp.content}   user${number}
+    Should Contain    ${resp.content}    user${number}
 
 Get People And Verify
     [Arguments]    ${controller_ip}    ${num_people}
-    [Documentation]  Gets multiple people and verifies that the user IDs are correct.
+    [Documentation]    Gets multiple people and verifies that the user IDs are correct.
     # TODO: Future enhanement: verify all fields.
-    ${resp}     GetPersons  ${controller_ip}    ${RESTCONFPORT}  ${0}
+    ${resp}    GetPersons    ${controller_ip}    ${RESTCONFPORT}    ${0}
     Should Be Equal As Strings    ${resp.status_code}    200
-    :FOR    ${i}    IN RANGE    1    ${num_people}+1
-    \    Should Contain     ${resp.content}   user${i}
+    : FOR    ${i}    IN RANGE    1    ${num_people}+1
+    \    Should Contain    ${resp.content}    user${i}
 
 Add Car Person And Verify
     [Arguments]    ${controller_ip}
-    [Documentation]  Add a car-person via the data store and get the car-person from Leader.
-    [Documentation]  Note: This is done to get the car-people container created so subsequent BuyCar
-    [Documentation]  RPC puts to the car-person list will succeed.
-    AddCarPerson    ${controller_ip}   ${RESTCONFPORT}     ${0}
-    Wait Until Keyword Succeeds   60s  2s  Get One Car-Person Mapping And Verify  ${controller_ip}   ${0}
+    [Documentation]    Add a car-person via the data store and get the car-person from Leader.
+    ...    Note: This is done to get the car-people container created so subsequent
+    ...    BuyCar RPC puts to the car-person list will succeed.
+    AddCarPerson    ${controller_ip}    ${RESTCONFPORT}    ${0}
+    Wait Until Keyword Succeeds    60s    2s    Get One Car-Person Mapping And Verify    ${controller_ip}    ${0}
 
 Get One Car-Person Mapping And Verify
     [Arguments]    ${controller_ip}    ${number}
-    [Documentation]  Gets a car person mapping and verifies that the user ID is correct.
-    ${resp}     GetCarPersonMappings    ${controller_ip}   ${RESTCONFPORT}     ${0}
+    [Documentation]    Gets a car person mapping and verifies that the user ID is correct.
+    ${resp}    GetCarPersonMappings    ${controller_ip}    ${RESTCONFPORT}    ${0}
     Should Be Equal As Strings    ${resp.status_code}    200
-    Should Contain     ${resp.content}   user${number}
+    Should Contain    ${resp.content}    user${number}
 
 Get Car-Person Mappings And Verify
     [Arguments]    ${controller_ip}    ${num_entries}
-    ${resp}     GetCarPersonMappings    ${controller_ip}    ${RESTCONFPORT}  ${0}
+    ${resp}    GetCarPersonMappings    ${controller_ip}    ${RESTCONFPORT}    ${0}
     Should Be Equal As Strings    ${resp.status_code}    200
-    :FOR    ${i}    IN RANGE    1    ${num_entries}+1
-    \    Should Contain     ${resp.content}   user${i}
+    : FOR    ${i}    IN RANGE    1    ${num_entries}+1
+    \    Should Contain    ${resp.content}    user${i}
 
 Buy Cars And Verify
-    [Arguments]    ${controller_ip}    ${num_entries}   ${start}=${0}
-    Wait Until Keyword Succeeds   60s  2s  BuyCar  ${controller_ip}   ${RESTCONFPORT}    ${num_entries}   ${start}
+    [Arguments]    ${controller_ip}    ${num_entries}    ${start}=${0}
+    Wait Until Keyword Succeeds    60s    2s    BuyCar    ${controller_ip}    ${RESTCONFPORT}    ${num_entries}
+    ...    ${start}
 
 Check Cars Deleted
     [Arguments]    ${controller_ip}
@@ -137,7 +140,7 @@ Check Cars Deleted
 Delete All Cars And Verify
     [Arguments]    ${controller_ip}
     DeleteAllCars    ${controller_ip}    ${RESTCONFPORT}    ${0}
-    Wait Until Keyword Succeeds   60s  2s  Check Cars Deleted  ${controller_ip}
+    Wait Until Keyword Succeeds    60s    2s    Check Cars Deleted    ${controller_ip}
 
 Check People Deleted
     [Arguments]    ${controller_ip}
@@ -147,7 +150,7 @@ Check People Deleted
 Delete All People And Verify
     [Arguments]    ${controller_ip}
     DeleteAllPersons    ${controller_ip}    ${RESTCONFPORT}    ${0}
-    Wait Until Keyword Succeeds   60s  2s  Check People Deleted  ${controller_ip}
+    Wait Until Keyword Succeeds    60s    2s    Check People Deleted    ${controller_ip}
 
 Check Cars-Persons Deleted
     [Arguments]    ${controller_ip}
@@ -157,4 +160,78 @@ Check Cars-Persons Deleted
 Delete All Cars-Persons And Verify
     [Arguments]    ${controller_ip}
     DeleteAllCarsPersons    ${controller_ip}    ${RESTCONFPORT}    ${0}
-    Wait Until Keyword Succeeds   60s  2s  Check Cars-Persons Deleted  ${controller_ip}
+    Wait Until Keyword Succeeds    60s    2s    Check Cars-Persons Deleted    ${controller_ip}
+
+Stop One Or More Controllers
+    [Arguments]    @{controllers}
+    [Documentation]    Give this keyword a scalar or list of controllers to be stopped.
+    ${cmd} =    Set Variable    ${KARAF_HOME}/bin/stop
+    : FOR    ${ip}    IN    @{controllers}
+    \    Run Command On Remote System    ${ip}    ${cmd}
+    : FOR    ${ip}    IN    @{controllers}
+    \    Wait Until Keyword Succeeds    120 s   3 s    Controller Down Check    ${ip}
+
+Start One Or More Controllers
+    [Arguments]    @{controllers}
+    [Documentation]    Give this keyword a scalar or list of controllers to be started.
+    ${cmd} =    Set Variable    ${KARAF_HOME}/bin/start
+    : FOR    ${ip}    IN    @{controllers}
+    \    Run Command On Remote System    ${ip}    ${cmd}
+    # TODO: This should throw an error if controller never comes up.
+    : FOR    ${ip}    IN    @{controllers}
+    \    UtilLibrary.Wait For Controller Up    ${ip}    ${RESTCONFPORT}
+
+Kill One Or More Controllers
+    [Arguments]    @{controllers}
+    [Documentation]    Give this keyword a scalar or list of controllers to be stopped.
+    ${cmd} =    Set Variable    ps axf | grep karaf | grep -v grep | awk '{print \"kill -9 \" $1}' | sh
+    log    ${cmd}
+    : FOR    ${ip}    IN    @{controllers}
+    \    Run Command On Remote System    ${ip}    ${cmd}
+    : FOR    ${ip}    IN    @{controllers}
+    \    Wait Until Keyword Succeeds    12 s    3 s    Controller Down Check    ${ip}
+
+Controller Down Check
+    [Arguments]    ${ip}
+    [Documentation]    Checks to see if a controller is down by verifying that the karaf process isn't present.
+    ${cmd} =    Set Variable    ps axf | grep karaf | grep -v grep | wc -l
+    ${response}    Run Command On Remote System    ${ip}    ${cmd}
+    Log    Number of controller instances running: ${response}
+    Should Start With    ${response}    0    Controller process found or there may be extra instances of karaf running on the host machine.
+
+Clean One Or More Journals
+    [Arguments]    @{controllers}
+    [Documentation]    Give this keyword a scalar or list of controllers on which to clean journals.
+    ${del_cmd} =    Set Variable    rm -rf ${KARAF_HOME}/journal
+    : FOR    ${ip}    IN    @{controllers}
+    \    Run Command On Remote System    ${ip}    ${del_cmd}
+
+Clean One Or More Snapshots
+    [Arguments]    @{controllers}
+    [Documentation]    Give this keyword a scalar or list of controllers on which to clean snapshots.
+    ${del_cmd} =    Set Variable    rm -rf ${KARAF_HOME}/snapshots
+    : FOR    ${ip}    IN    @{controllers}
+    \    Run Command On Remote System    ${ip}    ${del_cmd}
+
+Show Cluster Configuation Files
+    [Arguments]    @{controllers}
+    [Documentation]    Prints out the cluster configuration files for one or more controllers.
+    Log    controllers: @{controllers}
+    ${cmd} =    Set Variable    cat ${KARAF_HOME}/configuration/initial/akka.conf
+    : FOR    ${ip}    IN    @{controllers}
+    \    Run Command On Remote System    ${ip}    ${cmd}
+    ${cmd} =    Set Variable    cat ${KARAF_HOME}/configuration/initial/modules.conf
+    : FOR    ${ip}    IN    @{controllers}
+    \    Run Command On Remote System    ${ip}    ${cmd}
+    ${cmd} =    Set Variable    cat ${KARAF_HOME}/configuration/initial/module-shards.conf
+    : FOR    ${ip}    IN    @{controllers}
+    \    Run Command On Remote System    ${ip}    ${cmd}
+    ${cmd} =    Set Variable    cat ${KARAF_HOME}/configuration/initial/jolokia.xml
+    : FOR    ${ip}    IN    @{controllers}
+    \    Run Command On Remote System    ${ip}    ${cmd}
+    ${cmd} =    Set Variable    cat ${KARAF_HOME}/etc/initial/org.apache.karaf.management.cfg
+    : FOR    ${ip}    IN    @{controllers}
+    \    Run Command On Remote System    ${ip}    ${cmd}
+    ${cmd} =    Set Variable    cat ${KARAF_HOME}/etc/org.apache.karaf.features.cfg
+    : FOR    ${ip}    IN    @{controllers}
+    \    Run Command On Remote System    ${ip}    ${cmd}
index 6a95514b5f64fd048ddb1c546251717cb22fcd63..2d14bc64acff572cff63b337150c20512ea6d362 100644 (file)
@@ -117,7 +117,7 @@ Clean Mininet System
     Run Command On Remote System    ${mininet_system}    sudo ps -elf | egrep 'usr/local/bin/mn' | egrep python | awk '{print "sudo kill -9",$4}' | sh
 
 Clean Up Ovs
-    [Arguments]     ${mininet_system}=${MININET}
+    [Arguments]    ${mininet_system}=${MININET}
     [Documentation]    Cleans up the OVS instance and remove any existing common known bridges.
     ${output}=    Run Command On Remote System    ${mininet_system}    sudo ovs-vsctl list-br
     Log    ${output}
@@ -160,9 +160,9 @@ Strip Quotes
 
 Run Command On Remote System
     [Arguments]    ${remote_system}    ${cmd}    ${user}=${MININET_USER}    ${prompt}=${LINUX_PROMPT}    ${prompt_timeout}=30s
-    [Documentation]    Reduces the common work of running a command on a remote system to a single higher level robot keyword,
-    ...    taking care to log in with a public key and. The command given is written and the output returned. No test conditions
-    ...    are checked.
+    [Documentation]    Reduces the common work of running a command on a remote system to a single higher level
+    ...    robot keyword, taking care to log in with a public key and. The command given is written
+    ...    and the output returned. No test conditions are checked.
     Log    Attempting to execute ${cmd} on ${remote_system} by ${user} with ${keyfile_pass} and ${prompt}
     ${conn_id}=    SSHLibrary.Open Connection    ${remote_system}    prompt=${prompt}    timeout=${prompt_timeout}
     Login With Public Key    ${user}    ${USER_HOME}/.ssh/${SSH_KEY}    ${KEYFILE_PASS}
@@ -174,7 +174,8 @@ Run Command On Remote System
 
 Verify File Exists On Remote System
     [Arguments]    ${remote_system}    ${file}    ${user}=${MININET_USER}    ${prompt}=${LINUX_PROMPT}    ${prompt_timeout}=5s
-    [Documentation]    Will create connection with public key and will PASS if the given ${file} exists, otherwise will FAIL
+    [Documentation]    Will create connection with public key and will PASS if the given ${file} exists,
+    ...    otherwise will FAIL
     ${conn_id}=    Open Connection    ${remote_system}    prompt=${prompt}    timeout=${prompt_timeout}
     Login With Public Key    ${user}    ${USER_HOME}/.ssh/${SSH_KEY}    any
     SSHLibrary.File Should Exist    ${file}
@@ -236,72 +237,3 @@ Post Elements To URI From File
     ${body}    OperatingSystem.Get File    ${data_file}
     ${resp}    RequestsLibrary.Post    session    ${dest_uri}    data=${body}    headers=${headers}
     Should Be Equal As Strings    ${resp.status_code}    200
-
-Stop One Or More Controllers
-    [Arguments]    @{controllers}
-    [Documentation]    Give this keyword a scalar or list of controllers to be stopped.
-    ${cmd} =    Set Variable    ${KARAF_HOME}/bin/stop
-    : FOR    ${ip}    IN    @{controllers}
-    \    Run Command On Remote System    ${ip}    ${cmd}
-    : FOR    ${ip}    IN    @{controllers}
-    \    Wait Until Keyword Succeeds    60 s    3 s    Controller Down Check    ${ip}
-
-Start One Or More Controllers
-    [Arguments]    @{controllers}
-    [Documentation]    Give this keyword a scalar or list of controllers to be started.
-    ${cmd} =    Set Variable    ${KARAF_HOME}/bin/start
-    : FOR    ${ip}    IN    @{controllers}
-    \    Run Command On Remote System    ${ip}    ${cmd}
-    # TODO: This should throw an error if controller never comes up.
-    : FOR    ${ip}    IN    @{controllers}
-    \    UtilLibrary.Wait For Controller Up    ${ip}    ${RESTCONFPORT}
-
-Kill One Or More Controllers
-    [Arguments]    @{controllers}
-    [Documentation]    Give this keyword a scalar or list of controllers to be stopped.
-    ${cmd} =    Set Variable    ps axf | grep karaf | grep -v grep | awk '{print \"kill -9 \" $1}' | sh
-    log     ${cmd}
-    ${controller_pid}=    Get Process ID Based On Regex On Remote System    ${CONTROLLER}    karaf
-    : FOR    ${ip}    IN    @{controllers}
-    \    Run Command On Remote System    ${ip}    ${cmd}
-    : FOR    ${ip}    IN    @{controllers}
-    \    Wait Until Keyword Succeeds    60 s    3 s    Controller Down Check    ${ip}
-
-Controller Down Check
-    [Arguments]    ${ip}
-    [Documentation]    Checks to see if a controller is down by verifying that the karaf process isn't present.
-    ${cmd} =    Set Variable    ps axf | grep karaf | grep -v grep | wc -l
-    ${response}    Run Command On Remote System    ${ip}    ${cmd}
-    Log    Number of controller instances running: ${response}
-    Should Start With    ${response}    0    Controller process found or there may be extra instances of
-    ...    karaf running on the host machine.
-
-Clean One Or More Journals
-    [Arguments]    @{controllers}
-    [Documentation]    Give this keyword a scalar or list of controllers on which to clean journals.
-    ${del_cmd} =    Set Variable    rm -rf ${KARAF_HOME}/journal
-    : FOR    ${ip}    IN    @{controllers}
-    \    Run Command On Remote System    ${ip}    ${del_cmd}
-
-Show Cluster Configuation Files
-    [Arguments]    @{controllers}
-    [Documentation]    Prints out the cluster configuration files for one or more controllers.
-    Log    controllers: @{controllers}
-    ${cmd} =    Set Variable    cat ${KARAF_HOME}/configuration/initial/akka.conf
-    : FOR    ${ip}    IN    @{controllers}
-    \    Run Command On Remote System    ${ip}    ${cmd}
-    ${cmd} =    Set Variable    cat ${KARAF_HOME}/configuration/initial/modules.conf
-    : FOR    ${ip}    IN    @{controllers}
-    \    Run Command On Remote System    ${ip}    ${cmd}
-    ${cmd} =    Set Variable    cat ${KARAF_HOME}/configuration/initial/module-shards.conf
-    : FOR    ${ip}    IN    @{controllers}
-    \    Run Command On Remote System    ${ip}    ${cmd}
-    ${cmd} =    Set Variable    cat ${KARAF_HOME}/configuration/initial/jolokia.xml
-    : FOR    ${ip}    IN    @{controllers}
-    \    Run Command On Remote System    ${ip}    ${cmd}
-    ${cmd} =    Set Variable    cat ${KARAF_HOME}/etc/initial/org.apache.karaf.management.cfg
-    : FOR    ${ip}    IN    @{controllers}
-    \    Run Command On Remote System    ${ip}    ${cmd}
-    ${cmd} =    Set Variable    cat ${KARAF_HOME}/etc/org.apache.karaf.features.cfg
-    : FOR    ${ip}    IN    @{controllers}
-    \    Run Command On Remote System    ${ip}    ${cmd}
index ca3c618556fb92de685698f731b3d2d85525b3d3..a8fc8e67db66fa3ff722bb9ca63c4e5d851f2eda 100644 (file)
@@ -1,7 +1,7 @@
 *** Settings ***
 Documentation     Start the controllers
 Default Tags      3-node-cluster
-Resource          ../../../libraries/Utils.txt
+Resource          ../../../libraries/ClusterKeywords.txt
 
 *** Variables ***
 @{controllers}    ${CONTROLLER}    ${CONTROLLER1}    ${CONTROLLER2}
index 1d5daec6c04ff3d3753ffa53012cc1e3949b6257..2e37596181afd4d8ff2f43fac94b811f1d7fb6b0 100644 (file)
@@ -1,11 +1,11 @@
 *** Settings ***
-Documentation     This test brings down the current leader of the "car" shard and then executes CRUD operations on the new leader
+Documentation     This test brings down the current leader of the "car" shard and then executes CRUD
+...               operations on the new leader
 Default Tags      3-node-cluster
 Library           ../../../libraries/CrudLibrary.py
 Library           ../../../libraries/UtilLibrary.py
 Library           ../../../libraries/ClusterStateLibrary.py
 Resource          ../../../libraries/ClusterKeywords.txt
-Resource          ../../../libraries/Utils.txt
 
 *** Variables ***
 ${CAR_SHARD}      shard-car-config
index 9fb9d4b2080fb1a760ebeba5aeccfe601d590805..fb15bd733e02c564ecf289f709a9d56c7fdff952 100644 (file)
@@ -1,7 +1,7 @@
 *** Settings ***
 Documentation     Test cleanup
 Default Tags      3-node-cluster
-Resource          ../../../libraries/Utils.txt
+Resource          ../../../libraries/ClusterKeywords.txt
 Library           ../../../libraries/UtilLibrary.py
 Variables         ../../../variables/Variables.py