Step 2: Move test folder to root
[integration/test.git] / csit / suites / openflowplugin / MD_SAL_NSF_OF13 / 040__restconf_frm.robot
1 *** Settings ***
2 Documentation     Test suite for RESTCONF FRM
3 Suite Setup       Create Session    session    http://${CONTROLLER}:${RESTCONFPORT}    auth=${AUTH}    headers=${HEADERS_XML}
4 Suite Teardown    Delete All Sessions
5 Library           Collections
6 Library           RequestsLibrary
7 Library           ../../../libraries/Common.py
8 Variables         ../../../variables/Variables.py
9 Resource          ../../../libraries/Utils.robot
10
11 *** Variables ***
12 ${REST_CON}       /restconf/config/opendaylight-inventory:nodes
13 ${BODY1}          <flow xmlns="urn:opendaylight:flow:inventory"><priority>2</priority><flow-name>Foo</flow-name><match><ethernet-match><ethernet-type><type>2048</type></ethernet-type></ethernet-match><ipv4-destination>10.0.10.1/32</ipv4-destination></match><id>139</id><table_id>2</table_id><instructions><instruction><order>0</order><apply-actions><action><order>0</order><dec-nw-ttl/></action></apply-actions></instruction></instructions></flow>
14 ${BODY2}          <flow xmlns="urn:opendaylight:flow:inventory"><priority>2</priority><flow-name>Foo</flow-name><match><ethernet-match><ethernet-type><type>2048</type></ethernet-type></ethernet-match><ipv4-destination>10.0.20.1/32</ipv4-destination></match><id>139</id><table_id>2</table_id><instructions><instruction><order>0</order><apply-actions><action><order>0</order><output-action><output-node-connector>1</output-node-connector><max-length>60</max-length></output-action></action></apply-actions></instruction></instructions></flow>
15
16 *** Test Cases ***
17 Add a flow - Sending IPv4 Dest Address and Eth type
18     [Documentation]    Push a flow through REST-API
19     ${resp}    RequestsLibrary.Put    session    ${REST_CON}/node/openflow:1/table/2/flow/139    headers=${HEADERS_XML}    data=${BODY1}
20     Should Be Equal As Strings    ${resp.status_code}    200
21
22 Verify after adding flow config - Sending IPv4 Dest Address and Eth type
23     [Documentation]    Verify the flow
24     ${resp}    RequestsLibrary.Get    session    ${REST_CON}/node/openflow:1/table/2
25     Should Be Equal As Strings    ${resp.status_code}    200
26     Should Contain    ${resp.content}    139
27
28 Verify after adding flow operational - Sending IPv4 Dest Address and Eth type
29     [Documentation]    Verify the flow
30     ${elements}=    Create List    10.0.10.1
31     Wait Until Keyword Succeeds    6s    2s    Check For Elements At URI    ${OPERATIONAL_NODES_API}/node/openflow:1/table/2/flow/139    ${elements}
32
33 Modify a flow - Output to physical port#
34     [Documentation]    Push a flow through REST-API
35     ${resp}    RequestsLibrary.Put    session    ${REST_CON}/node/openflow:1/table/2/flow/139    headers=${HEADERS_XML}    data=${BODY2}
36     Should Be Equal As Strings    ${resp.status_code}    200
37
38 Verify after modifying flow config - Output to physical port#
39     [Documentation]    Verify the flow
40     ${resp}    RequestsLibrary.Get    session    ${REST_CON}/node/openflow:1/table/2
41     Should Be Equal As Strings    ${resp.status_code}    200
42     Should Contain    ${resp.content}    10.0.20.1
43
44 Verify after modifying flow operational - Output to physical port#
45     [Documentation]    Verify the flow
46     ${elements}=    Create List    10.0.20.1
47     Wait Until Keyword Succeeds    6s    2s    Check For Elements At URI    ${OPERATIONAL_NODES_API}/node/openflow:1/table/2/flow/139    ${elements}
48
49 Remove a flow - Output to physical port#
50     [Documentation]    Remove a flow
51     ${resp}    RequestsLibrary.Delete    session    ${REST_CON}/node/openflow:1/table/2/flow/139
52     Should Be Equal As Strings    ${resp.status_code}    200
53
54 Verify after deleting flow config - Output to physical port#
55     [Documentation]    Verify the flow
56     ${resp}    RequestsLibrary.Get    session    ${REST_CON}/node/openflow:1/table/2
57     Should Be Equal As Strings    ${resp.status_code}    200
58     Should Not Contain    ${resp.content}    139
59
60 Verify after deleting flow operational - Output to physical port#
61     [Documentation]    Verify the flow
62     ${elements}=    Create List    10.0.20.1
63     Wait Until Keyword Succeeds    6s    2s    Check For Elements Not At URI    ${OPERATIONAL_NODES_API}/node/openflow:1/table/2    ${elements}