Adding new suites which uses all xml files present in ./csit/variables/xmls
[integration/test.git] / test / tools / OF_Test / robot_suites / 075__Flows_OF13_Stat_Manager_extended / __init__.txt
1 *** Settings ***
2 Documentation     Test suite for the OpenDaylight base edition with of13, aimed for statistics manager
3 Suite Setup       Start Suite
4 Suite Teardown    Stop Suite
5 Library           SSHLibrary
6
7 *** Variables ***
8 ${start}          sudo mn --controller=remote,ip=${CONTROLLER} --topo tree,1 --switch ovsk,protocols=OpenFlow13
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 ovs-vsctl set-manager ptcp:6644
16     Write    sudo mn -c
17     Read Until   >
18     Write    ${start}
19     Read Until   mininet>
20
21 Stop Suite
22     Log    Stop the test on the base edition
23     Read
24     Write    exit
25     Sleep    2
26     Read
27     Close Connection
28