Change URI to specific ovsdb node
[integration/test.git] / tools / Robot_Tool / suites / cluster / __init__.txt
1 *** Settings ***
2 Documentation     Test suite for the OpenDaylight Cluster
3 Suite Setup       Start Suite
4 Suite Teardown    Stop Suite
5 Library     SSHLibrary
6
7 *** Variables ***
8 ${start}=  sudo mn --controller=remote,ip=${CONTROLLER},port=6633 --topo tree,2
9
10 *** Keywords ***
11 Start Suite  
12     Log    Start the test on the base edition
13     Open Connection   ${MININET}     prompt=>
14     Login With Public Key    ${MININET_USER}   ${USER_HOME}/.ssh/id_rsa   any
15     Write    sudo mn -c
16     Sleep    5
17     Write    ${start}
18     Sleep    20
19     Read
20 Stop Suite
21     Log    Stop the test on the base edition
22     Read
23     Write    exit 
24     Sleep    4
25     Read 
26     Close Connection 
27