Merge "Renamed populate.py to crud.py Fixed method call name change Signed-off-by...
[integration/test.git] / test / csit / suites / l2switch / 030__LoopRemoval_OF13 / __init__.txt
1 *** Settings ***
2 Documentation     Test suite for L2switch's LoopRemoval using mininet OF13
3 Suite Setup       Start Suite
4 Suite Teardown    Stop Suite
5 Library     SSHLibrary
6
7 *** Variables ***
8 ${start}=  sudo mn --controller=remote,ip=${CONTROLLER} --custom customtopo.py --topo ring --switch ovsk,protocols=OpenFlow13
9
10 ** Keywords ***
11 Start Suite
12     Log    Start mininet
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     Sleep    2
18     Put File    ${USER_HOME}/integration/test/csit/suites/l2switch/topologies/customtopo.py
19     Write    ${start}
20     Sleep    30
21     Read
22 Stop Suite
23     Log    Stop mininet
24     Read
25     Write    exit
26     Sleep    6
27     Read
28     Close Connection