Step 1: Move vm scripts to the right place
[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    group-desc
47     Wait Until Keyword Succeeds    6s    2s    Check For Elements At URI    ${REST_CONTEXT_OP}/group/1    ${elements}
48
49 Add a flow that includes a group
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/1    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/1
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    group-action    group-id
69     Wait Until Keyword Succeeds    6s    2s    Check For Elements At URI    ${REST_CONTEXT_OP}/table/0/flow/1    ${elements}
70
71 Remove the flow
72     [Documentation]    Remove the flow
73     ${resp}    RequestsLibrary.Delete    session    ${REST_CONTEXT_CF}/table/0/flow/1
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/1
80     Should Not Contain    ${resp.content}    ${FLOW_NAME}
81
82 Delete the group
83     [Documentation]    Remove the group
84     [Tags]    Delete
85     ${resp}    RequestsLibrary.Delete    session    ${REST_CONTEXT_CF}/group/1
86     Log    ${resp.content}
87     Should Be Equal As Strings    ${resp.status_code}    200
88
89 Verify after deleting group
90     [Documentation]    Verify the flow removal
91     [Tags]    Get
92     ${resp}    RequestsLibrary.Get    session    ${REST_CONTEXT_CF}/group/1
93     Should Not Contain    ${resp.content}    ${GROUP_NAME}