Modify CSIT test files and library file of VTN Manager.
[integration/test.git] / csit / suites / vtn / VTN_Mgr_OF13 / 010__vtn_manager_flowfilter.robot
1 *** Settings ***
2 Documentation     Test suite for VTN Manager using OF13
3 Suite Setup       Start SuiteVtnMaTest
4 Suite Teardown    Stop SuiteVtnMaTest
5 Resource          ../../../libraries/VtnMaKeywords.robot
6
7 *** Variables ***
8 ${flowconditiondata}    "vtn-flow-match":[{"vtn-inet-match":{"source-network":"10.0.0.1/32","destination-network":"10.0.0.3/32"},"index":"1"}]
9 ${flowfilterInetdata}    "vtn-flow-filter":[{"condition":"cond_1","vtn-pass-filter":{},"vtn-flow-action":[{"order": "1","vtn-set-inet-src-action":{"ipv4-address":"192.0.0.1/32"}},{"order": "2","vtn-set-inet-dst-action":{"ipv4-address":"192.0.0.2/32"}}],"index": "1"}]
10 ${flowfilterInetdropdata}    "vtn-flow-filter":[{"condition":"cond_1","vtn-drop-filter":{},"vtn-flow-action":[{"order": "1","vtn-set-inet-src-action":{"ipv4-address":"10.0.0.2/32"}},{"order": "2","vtn-set-inet-dst-action":{"ipv4-address":"10.0.0.4/32"}}],"index": "1"}]
11 ${flowfilterIcmpCodedata}    "vtn-flow-filter": [{"condition": "cond_1","index": "1", "vtn-pass-filter": {}, "vtn-flow-action": [{ "order": "1", "vtn-set-icmp-code-action":{"code": "1"}},{"order": "2","vtn-set-icmp-type-action": {"type": "3"}}]}]
12 ${flowfilterTpsrcTpdstdata}    "vtn-flow-filter": [{"condition": "cond_1","vtn-pass-filter": {},"vtn-flow-action": [{"order": "1","vtn-set-port-src-action": {"port": "5"}},{"order": "2","vtn-set-port-dst-action": {"port": "10"}}],"index": "1"}]
13 ${flowfilterDscpdata}    "vtn-flow-filter":[{"condition": "cond_1","vtn-pass-filter": {},"vtn-flow-action": [{"order": "1","vtn-set-inet-dscp-action": {"dscp":"32"}}],"index":"1"}]
14 ${flowfiltervlanpcp}    "vtn-flow-filter":[{"condition":"cond_1","vtn-pass-filter":{},"vtn-flow-action":[{"order":"3","vtn-set-icmp-code-action":{"code":"1"}},{"order":"4","vtn-set-vlan-pcp-action":{"vlan-pcp":"3"}}],"index":"1"}]
15
16 *** Test Cases ***
17 Check if switch1 detected
18     [Documentation]    Check if openflow:1 is detected
19     BuiltIn.Wait_Until_Keyword_Succeeds    12    3    Fetch vtn switch inventory    openflow:1
20
21 Check if switch2 detected
22     [Documentation]    Check if openflow:2 is detected
23     BuiltIn.Wait_Until_Keyword_Succeeds    3    1    Fetch vtn switch inventory    openflow:2
24
25 Check if switch3 detected
26     [Documentation]    Check if openflow:3 is detected
27     BuiltIn.Wait_Until_Keyword_Succeeds    3    1    Fetch vtn switch inventory    openflow:3
28
29 Add a vtn Tenant1
30     [Documentation]    Add a vtn Tenant1
31     Add a vtn    Tenant1
32
33 Add a vBridge vBridge1
34     [Documentation]    Add a vBridge vBridge1 in vtn Tenant1
35     Add a vBridge    Tenant1    vBridge1
36
37 Add a interface If1
38     [Documentation]    Add a interface if1 into vBridge vBridge1
39     Add a interface    Tenant1    vBridge1    if1
40
41 Add a interface if2
42     [Documentation]    Add a interface if2 into vBridge vBridge1
43     Add a interface    Tenant1    vBridge1    if2
44
45 Add a portmap for interface if1
46     [Documentation]    Create a portmap on Interface if1 of vBridge1
47     Add a portmap    Tenant1    vBridge1    if1    openflow:2    s2-eth1
48
49 Add a portmap for interface if2
50     [Documentation]    Create a portmap on Interface if2 of vBridge1
51     Add a portmap    Tenant1    vBridge1    if2    openflow:3    s3-eth1
52
53 Ping h1 to h3
54     [Documentation]    Ping h1 to h3, verify no packet loss
55     Wait_Until_Keyword_Succeeds    20s    1s    Mininet Ping Should Succeed    h1    h3
56
57 Add a vBridge vBridge2
58     [Documentation]    Add a vBridge vBridge2 in vtn Tenant1
59     Add a vBridge    Tenant1    vBridge2
60
61 Add a interface If3
62     [Documentation]    Add a interface if3 into vBrdige vBridge2
63     Add a interface    Tenant1    vBridge2    if3
64
65 Add a interface if4
66     [Documentation]    Add a interface if4 into vBrdige vBridge2
67     Add a interface    Tenant1    vBridge2    if4
68
69 Add a portmap for interface if3
70     [Documentation]    Create a portmap on Interface if3 of vBridge2
71     Add a portmap    Tenant1    vBridge2    if3    openflow:2    s2-eth2
72
73 Add a portmap for interface if4
74     [Documentation]    Create a portmap on Interface if4 of vBridge2
75     Add a portmap    Tenant1    vBridge2    if4    openflow:3    s3-eth2
76
77 Ping h2 to h4
78     [Documentation]    Ping h2 to h4, verify no packet loss
79     Wait_Until_Keyword_Succeeds    20s    1s    Mininet Ping Should Succeed    h2    h4
80
81 Add a flowcondition
82     [Documentation]    Create a flowcondition cond_1 using restconfig api
83     Add a flowcondition    cond_1    ${flowconditiondata}
84
85 Add a vtn flowfilter with inet4src and inet4dst
86     [Documentation]    Create a flowfilter with inet4 and Verify ping
87     Add a vtn flowfilter    Tenant1    ${flowfilterInetdata}
88     Wait_Until_Keyword_Succeeds    20s    1s    Mininet Ping Should Not Succeed    h1    h3
89
90 Verify inet4src and inet4dst of vtn flowfilter
91     [Documentation]    Verify vtn flowfilter actions in Flow Enties for inet4src and inet4dst
92     Wait_Until_Keyword_Succeeds    20s    1s    Verify Flow Entries for Flowfilter    ${FF_DUMPFLOWS_OF13}    @{inet_action}
93
94 Remove vtn Flowfilter index
95     [Documentation]    Remove a index of vtn flowfilter
96     Remove a vtn flowfilter    Tenant1    ${filter_index}
97
98 Add a vbr flowfilter with inet4src and inet4dst
99     [Documentation]    Create a flowfilter with inet4 and Verify ping
100     Add a vbr flowfilter    Tenant1    vBridge1    ${flowfilterInetdata}
101     Wait_Until_Keyword_Succeeds    20s    1s    Mininet Ping Should Not Succeed    h1    h3
102
103 Verify inet4src and inet4dst of vbr flowfilter
104     [Documentation]    Verify actions in Flow Enties for inet4src and inet4dst
105     Wait_Until_Keyword_Succeeds    20s    1s    Verify Flow Entries for Flowfilter    ${FF_DUMPFLOWS_OF13}    @{inet_action}
106
107 Remove vbr Flowfilter index
108     [Documentation]    Remove a index of vbr flowfilter
109     Remove a vbr flowfilter    Tenant1    vBridge1    ${filter_index}
110
111 Add a vbrif flowfilter with inet4src and inet4dst
112     [Documentation]    Create a flowfilter with inet4 and Verify ping
113     Add a vbrif flowfilter    Tenant1    vBridge1    if1    ${flowfilterInetdata}
114     Wait_Until_Keyword_Succeeds    20s    1s    Mininet Ping Should Not Succeed    h1    h3
115
116 Verify inet4src and inet4dst of vbrif flowfilter
117     [Documentation]    Verify actions in Flow Enties for inet4src and inet4dst
118     Wait_Until_Keyword_Succeeds    20s    1s    Verify Flow Entries for Flowfilter    ${FF_DUMPFLOWS_OF13}    @{inet_action}
119
120 Remove vbrif Flowfilter index
121     [Documentation]    Remove a index of vbrif flowfilter
122     Remove a vbrif flowfilter    Tenant1    vBridge1    if1    ${filter_index}
123
124 Add a vtn flowfilter with Icmp code
125     [Documentation]    Create a flowfilter with icmp code and Verify ping
126     Add a vtn flowfilter    Tenant1    ${flowfilterIcmpCodedata}
127     Wait_Until_Keyword_Succeeds    20s    1s    Mininet Ping Should Not Succeed    h1    h3
128
129 Verify icmp action for vtn flowfilter
130     [Documentation]    Verify actions in Flow Enties for icmp code and type
131     [Tags]    exclude
132     Wait_Until_Keyword_Succeeds    20s    1s    Verify Flow Entries for Flowfilter    ${FF_DUMPFLOWS_OF13}    @{icmp_action}
133
134 Remove vtn Flowfilter index which has ICMP
135     [Documentation]    Remove a index of vtn flowfilter which have ICMP
136     Remove a vtn flowfilter    Tenant1    ${filter_index}
137
138 Add a vbr flowfilter with Icmp code
139     [Documentation]    Create a flowfilter with icmp code and Verify ping
140     Add a vbr flowfilter    Tenant1    vBridge1    ${flowfilterIcmpCodedata}
141     Wait_Until_Keyword_Succeeds    20s    1s    Mininet Ping Should Not Succeed    h1    h3
142
143 Verify icmp action for vbr flowfilter
144     [Documentation]    Verify actions in Flow Enties for icmp code and type
145     [Tags]    exclude
146     Wait_Until_Keyword_Succeeds    20s    1s    Verify Flow Entries for Flowfilter    ${FF_DUMPFLOWS_OF13}    @{icmp_action}
147
148 Remove vbr Flowfilter index which has ICMP
149     [Documentation]    Remove a index of vbr flowfilter which have ICMP
150     Remove a vbr flowfilter    Tenant1    vBridge1    ${filter_index}
151
152 Add a vbrif flowfilter with Icmp code
153     [Documentation]    Create a flowfilter with icmp code and Verify ping
154     Add a vbrif flowfilter    Tenant1    vBridge1    if1    ${flowfilterIcmpCodedata}
155     Wait_Until_Keyword_Succeeds    20s    1s    Mininet Ping Should Not Succeed    h1    h3
156
157 Verify icmp action for vbrif flowfilter
158     [Documentation]    Verify actions in Flow Enties for icmp code and type
159     [Tags]    exclude
160     Wait_Until_Keyword_Succeeds    20s    1s    Verify Flow Entries for Flowfilter    ${FF_DUMPFLOWS_OF13}    @{icmp_action}
161
162 Remove vbrif Flowfilter index which has ICMP
163     [Documentation]    Remove a index of vbrif flowfilter which have ICMP
164     Remove a vbrif flowfilter    Tenant1    vBridge1    if1    ${filter_index}
165
166 Add a vtn flowfilter with dscp
167     [Documentation]    Create a flowfilter with dscp and Verify ping
168     Add a vtn flowfilter    Tenant1    ${flowfilterDscpdata}
169     Wait_Until_Keyword_Succeeds    20s    1s    Mininet Ping Should Succeed    h1    h3
170
171 Verify dscp action for vtn flowfilter
172     [Documentation]    Verify actions in Flow Enties for dscp
173     Wait_Until_Keyword_Succeeds    20s    1s    Verify flowactions    ${dscp_action}    ${FF_DUMPFLOWS_OF13}
174
175 Remove vtn Flowfilter index which have dscp
176     [Documentation]    Remove a index of vtn flowfilter which have DSCP
177     Remove a vtn flowfilter    Tenant1    ${filter_index}
178
179 Add a vbr flowfilter with dscp
180     [Documentation]    Create a flowfilter with dscp and Verify ping
181     Add a vbr flowfilter    Tenant1    vBridge1    ${flowfilterDscpdata}
182     Wait_Until_Keyword_Succeeds    20s    1s    Mininet Ping Should Succeed    h1    h3
183
184 Verify dscp action for vbr flowfilter
185     [Documentation]    Verify actions in Flow Enties for dscp
186     Wait_Until_Keyword_Succeeds    20s    1s    Verify flowactions    ${dscp_action}    ${FF_DUMPFLOWS_OF13}
187
188 Remove vbr Flowfilter index which have dscp
189     [Documentation]    Remove a index of vbr flowfilter which have DSCP
190     Remove a vbr flowfilter    Tenant1    vBridge1    ${filter_index}
191
192 Add a vbrif flowfilter with dscp
193     [Documentation]    Create a flowfilter with dscp and Verify ping
194     Add a vbrif flowfilter    Tenant1    vBridge1    if1    ${flowfilterDscpdata}
195     Wait_Until_Keyword_Succeeds    20s    1s    Mininet Ping Should Succeed    h1    h3
196
197 Verify dscp action for vbrif flowfilter
198     [Documentation]    Verify actions in Flow Enties for dscp
199     Wait_Until_Keyword_Succeeds    20s    1s    Verify flowactions    ${dscp_action}    ${FF_DUMPFLOWS_OF13}
200
201 Remove vbrif Flowfilter index which have dscp
202     [Documentation]    Remove a index of vbrif flowfilter which have DSCP
203     Remove a vbrif flowfilter    Tenant1    vBridge1    if1    ${filter_index}
204
205 Add a flowfilter with inet4 for drop
206     [Documentation]    Create a flowfilter with inet4 for drop action and Verify no pinging
207     Add a vbrif flowfilter    Tenant1    vBridge1    if1    ${flowfilterInetdropdata}
208     Wait_Until_Keyword_Succeeds    20s    1s    Mininet Ping Should Not Succeed    h1    h3
209
210 Verify Removed Flow Entry For Inet After Drop Action
211     [Documentation]    Verify no flows between the hosts after drop
212     Wait_Until_Keyword_Succeeds    20s    1s    Verify flowactions    ${drop_action}    ${DROP_DUMPFLOWS_OF13}
213
214 Delete a flowcondition
215     [Documentation]    Delete a flowcondition
216     Remove flowcondition    cond_1
217
218 Delete a vtn Tenant1
219     [Documentation]    Delete vtn Tenant1
220     Delete a vtn    Tenant1