Step 1: Move vm scripts to the right place
[integration/test.git] / test / csit / suites / openflowplugin / Groups_Meters_OF13 / 010__openflow_meter.robot
1 *** Settings ***
2 Documentation     Test suite for OpenFlow meter
3 Suite Setup       Create Session    session    http://${CONTROLLER}:${RESTCONFPORT}    auth=${AUTH}    headers=${HEADERS_XML}
4 Suite Teardown    Delete All Sessions
5 Library           SSHLibrary
6 Library           Collections
7 Library           OperatingSystem
8 Library           RequestsLibrary
9 Library           ../../../libraries/Common.py
10 Variables         ../../../variables/Variables.py
11 Resource          ../../../libraries/Utils.robot
12
13 *** Variables ***
14 ${REST_CONTEXT}    /restconf/operational/opendaylight-inventory:nodes/
15 ${REST_CONTEXT_CF}    /restconf/config/opendaylight-inventory:nodes/node/openflow:1
16 ${REST_CONTEXT_OP}    /restconf/operational/opendaylight-inventory:nodes/node/openflow:1
17 ${METER}          ${CURDIR}/../../../variables/xmls/m4.xml
18 ${FLOW}           ${CURDIR}/../../../variables/xmls/f51.xml
19 ${METER_NAME}     Foo
20 ${FLOW_NAME}      forward
21
22 *** Test Cases ***
23 Get list of nodes
24     [Documentation]    Get the inventory to make sure openflow:1 comes up
25     ${node_list}=    Create List    openflow:1
26     Wait Until Keyword Succeeds    3s    1s    Check For Elements At URI    ${REST_CONTEXT_OP}    ${node_list}
27
28 Add a meter
29     [Documentation]    Add a meter using RESTCONF
30     [Tags]    Push
31     ${body}    OperatingSystem.Get File    ${METER}
32     Set Suite Variable    ${body}
33     ${resp}    RequestsLibrary.Put    session    ${REST_CONTEXT_CF}/meter/1    headers=${HEADERS_XML}    data=${body}
34     Log    ${resp.content}
35     Should Be Equal As Strings    ${resp.status_code}    200
36
37 Verify after adding meter config
38     [Documentation]    Get the meter stat in config
39     ${resp}    RequestsLibrary.Get    session    ${REST_CONTEXT_CF}/meter/1
40     Log    ${resp.content}
41     Should Be Equal As Strings    ${resp.status_code}    200
42     Should Contain    ${resp.content}    ${METER_NAME}
43
44 Verify after adding meter operational
45     [Documentation]    Get the meter stat in operational
46     ${elements}=    Create List    meter-statistics    meter-config-stats
47     Wait Until Keyword Succeeds    6s    2s    Check For Elements At URI    ${REST_CONTEXT_OP}/meter/1    ${elements}
48
49 Add a flow that includes a meter
50     [Documentation]    Push a flow through RESTCONF
51     [Tags]    Push
52     ${body}    OperatingSystem.Get File    ${FLOW}
53     Set Suite Variable    ${body}
54     ${resp}    RequestsLibrary.Put    session    ${REST_CONTEXT_CF}/table/0/flow/2    headers=${HEADERS_XML}    data=${body}
55     Log    ${resp.content}
56     Should Be Equal As Strings    ${resp.status_code}    200
57
58 Verify after adding flow config
59     [Documentation]    Verify the flow
60     [Tags]    Get
61     ${resp}    RequestsLibrary.Get    session    ${REST_CONTEXT_CF}/table/0/flow/2
62     Log    ${resp.content}
63     Should Be Equal As Strings    ${resp.status_code}    200
64     Should Contain    ${resp.content}    ${FLOW_NAME}
65
66 Verify after adding flow operational
67     [Documentation]    Verify the flow
68     ${elements}=    Create List    meter-id    flow
69     Wait Until Keyword Succeeds    6s    2s    Check For Elements At URI    ${REST_CONTEXT_OP}/table/0/flow/2    ${elements}
70
71 Remove the flow
72     [Documentation]    Remove the flow
73     ${resp}    RequestsLibrary.Delete    session    ${REST_CONTEXT_CF}/table/0/flow/2
74     Should Be Equal As Strings    ${resp.status_code}    200
75
76 Verify after deleting flow
77     [Documentation]    Verify the flow removal
78     [Tags]    Get
79     ${resp}    RequestsLibrary.Get    session    ${REST_CONTEXT_CF}/table/0/flow/2
80     Should Not Contain    ${resp.content}    ${FLOW_NAME}
81
82 Delete the meter
83     [Documentation]    Remove the meter
84     [Tags]    Delete
85     ${resp}    RequestsLibrary.Delete    session    ${REST_CONTEXT_CF}/meter/1
86     Log    ${resp.content}
87     Should Be Equal As Strings    ${resp.status_code}    200
88
89 Verify after deleting meter
90     [Documentation]    Verify the flow removal
91     [Tags]    Get
92     ${resp}    RequestsLibrary.Get    session    ${REST_CONTEXT_CF}/meter/1
93     Should Not Contain    ${resp.content}    ${METER_NAME}