blob: ddc867dbaa51acb3f6d41f6072779d02eb228272 [file] [log] [blame]
A R Karthick51e6fd82016-11-22 14:39:19 -08001*** Settings ***
2Documentation Run Cord verification test cases for Cluster
3Resource cord_resource.robot
4Suite Setup Cord Cluster Setup
5Suite Teardown Cord Teardown
6
7*** Variables ***
8${NODES} 3
9${EXTRA_OPTS} -v
10
11*** Test Cases ***
A.R Karthick45ab3e12016-11-30 11:25:51 -080012Verify Onos Controllers Restart Functionality
A R Karthick51e6fd82016-11-22 14:39:19 -080013 [Documentation] Verify ONOS cluster by restarting controllers iteratively
14 ${rc}= Run Cord Tester cluster:cluster_exchange.test_cluster_controller_restarts
15 Should Be Equal As Integers ${rc} 0
16
A.R Karthick45ab3e12016-11-30 11:25:51 -080017Verify Onos Single Controller Restart Functionality
18 [Documentation] Verify ONOS cluster by restarting the same controller
A R Karthick6c527a02016-12-01 14:37:42 -080019 Cord Setup
A.R Karthick45ab3e12016-11-30 11:25:51 -080020 ${rc}= Run Cord Tester cluster:cluster_exchange.test_cluster_single_controller_restarts
21 Should Be Equal As Integers ${rc} 0
22
A.R Karthick2560f042016-11-30 14:38:52 -080023Verify Onos Cluster Restart Functionality
24 [Documentation] Verify ONOS cluster by restarting the entire cluster
A R Karthick6c527a02016-12-01 14:37:42 -080025 Cord Setup
A.R Karthick2560f042016-11-30 14:38:52 -080026 ${rc}= Run Cord Tester cluster:cluster_exchange.test_cluster_restarts
27 Should Be Equal As Integers ${rc} 0
28
A R Karthick51e6fd82016-11-22 14:39:19 -080029*** Keywords ***
30Cord Cluster Setup
31 [Documentation] Configure a ${NODES} node ONOS cluster for cord tester
32 ${output} Run sudo docker ps |grep cord-onos | tr -s ' ' | awk '{print $NF}' | xargs docker kill
33 Cord Setup