b274e8d0c39ed760089ba9f93e1acd27e5b6d06d
[integration/test.git] / csit / suites / openflowplugin / Groups_Meters_OF13 / 005__openflow_group.robot
1 *** Settings ***
2 Documentation     Test suite for OpenFlow group
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 ${GROUP}          ${CURDIR}/../../../variables/xmls/g4.xml
18 ${FLOW}           ${CURDIR}/../../../variables/xmls/f50.xml
19 ${GROUP_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 group
29     [Documentation]    Add a group using RESTCONF
30     [Tags]    Push
31     ${body}    OperatingSystem.Get File    ${GROUP}
32     Set Suite Variable    ${body}
33     ${resp}    RequestsLibrary.Put    session    ${REST_CONTEXT_CF}/group/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 group config
38     [Documentation]    Get the group stat in config
39     ${resp}    RequestsLibrary.Get    session    ${REST_CONTEXT_CF}/group/1
40     Log    ${resp.content}
41     Should Be Equal As Strings    ${resp.status_code}    200
42     Should Contain    ${resp.content}    ${GROUP_NAME}
43
44 Verify after adding group operational
45     [Documentation]    Get the group stat in operational
46     ${elements}=    Create List    group-statistics    ref-count    packet-count    byte-count    buckets
47     ...    weight    group-select
48     Wait Until Keyword Succeeds    6s    2s    Check For Elements At URI    ${REST_CONTEXT_OP}/group/1    ${elements}
49
50 Add a flow that includes a group
51     [Documentation]    Push a flow through RESTCONF
52     [Tags]    Push
53     ${body}    OperatingSystem.Get File    ${FLOW}
54     Set Suite Variable    ${body}
55     ${resp}    RequestsLibrary.Put    session    ${REST_CONTEXT_CF}/table/0/flow/1    headers=${HEADERS_XML}    data=${body}
56     Log    ${resp.content}
57     Should Be Equal As Strings    ${resp.status_code}    200
58
59 Verify after adding flow config
60     [Documentation]    Verify the flow
61     [Tags]    Get
62     ${resp}    RequestsLibrary.Get    session    ${REST_CONTEXT_CF}/table/0/flow/1
63     Log    ${resp.content}
64     Should Be Equal As Strings    ${resp.status_code}    200
65     Should Contain    ${resp.content}    ${FLOW_NAME}
66
67 Verify after adding flow operational
68     [Documentation]    Verify the flow
69     ${elements}=    Create List    group-action    group-id
70     Wait Until Keyword Succeeds    6s    2s    Check For Elements At URI    ${REST_CONTEXT_OP}/table/0/flow/1    ${elements}
71
72 Remove the flow
73     [Documentation]    Remove the flow
74     ${resp}    RequestsLibrary.Delete    session    ${REST_CONTEXT_CF}/table/0/flow/1
75     Should Be Equal As Strings    ${resp.status_code}    200
76
77 Verify after deleting flow
78     [Documentation]    Verify the flow removal
79     [Tags]    Get
80     ${resp}    RequestsLibrary.Get    session    ${REST_CONTEXT_CF}/table/0/flow/1
81     Should Not Contain    ${resp.content}    ${FLOW_NAME}
82
83 Delete the group
84     [Documentation]    Remove the group
85     [Tags]    Delete
86     ${resp}    RequestsLibrary.Delete    session    ${REST_CONTEXT_CF}/group/1
87     Log    ${resp.content}
88     Should Be Equal As Strings    ${resp.status_code}    200
89
90 Verify after deleting group
91     [Documentation]    Verify the flow removal
92     [Tags]    Get
93     ${resp}    RequestsLibrary.Get    session    ${REST_CONTEXT_CF}/group/1
94     Should Not Contain    ${resp.content}    ${GROUP_NAME}