Tidied new and updated suites
[integration/test.git] / csit / suites / vtn / VTN_Mgr_OF10 / 010__vtn_manager_flowfilter_out.robot
1 *** Settings ***
2 Documentation     Test suite for VTN Manager using OF10
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.3/32","destination-network":"10.0.0.1/32"},"index":"1"}]
9 ${flowfilterInetdata}    "output": "true", "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}    "output": "true", "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}    "output": "true", "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}    "output": "true", "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}    "output": "true", "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}    "output": "true", "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 vbrif flowfilter with inet4src and inet4dst
86     [Documentation]    Create a flowfilter with inet4 and Verify ping
87     Add a vbrif flowfilter    Tenant1    vBridge1    if1    ${flowfilterInetdata}
88     Wait_Until_Keyword_Succeeds    20s    1s    Mininet Ping Should Not Succeed    h1    h3
89
90 Verify inet4src and inet4dst of vbrif flowfilter
91     [Documentation]    Verify actions in Flow Enties for inet4src and inet4dst
92     Wait_Until_Keyword_Succeeds    20s    1s    Verify Flow Entries for Flowfilter    ${FF_OUT_DUMPFLOWS_OF10}    @{inet_actions}
93
94 Remove vbrif Flowfilter index
95     [Documentation]    Remove a index of vbrif flowfilter
96     Remove a vbrif flowfilter    Tenant1    vBridge1    if1    ${filter_index}
97
98 Add a vbrif flowfilter with dscp
99     [Documentation]    Create a flowfilter with dscp and Verify ping
100     Add a vbrif flowfilter    Tenant1    vBridge1    if1    ${flowfilterDscpdata}
101     Wait_Until_Keyword_Succeeds    20s    1s    Mininet Ping Should Succeed    h1    h3
102
103 Verify dscp action for vbrif flowfilter
104     [Documentation]    Verify actions in Flow Enties for dscp
105     Wait_Until_Keyword_Succeeds    20s    1s    Verify flowactions    ${dscp_flow}    ${FF_OUT_DUMPFLOWS_OF10}
106
107 Remove vbrif Flowfilter index which have dscp
108     [Documentation]    Remove a index of vbrif flowfilter which have DSCP
109     Remove a vbrif flowfilter    Tenant1    vBridge1    if1    ${filter_index}
110
111 Add a flowfilter with inet4 for drop
112     [Documentation]    Create a flowfilter with inet4 for drop action and Verify no pinging
113     Add a vbrif flowfilter    Tenant1    vBridge1    if1    ${flowfilterInetdropdata}
114     Wait_Until_Keyword_Succeeds    20s    1s    Mininet Ping Should Not Succeed    h1    h3
115
116 Verify Removed Flow Entry For Inet After Drop Action
117     [Documentation]    Verify no flows between the hosts after drop
118     Wait_Until_Keyword_Succeeds    20s    1s    Verify flowactions    ${drop_action}    ${DROP_OUT_DUMPFLOWS_OF10}
119
120 Delete a flowcondition
121     [Documentation]    Delete a flowcondition
122     Remove flowcondition    cond_1
123
124 Delete a vtn Tenant1
125     [Documentation]    Delete vtn Tenant1
126     Delete a vtn    Tenant1