cleanup connections
[integration/test.git] / csit / suites / openstack / extensions / sfc.robot
1 *** Settings ***
2 Documentation     Test suite to verify SFC configuration and packet flows.
3 Suite Setup       OpenStackOperations.OpenStack Suite Setup
4 Suite Teardown    OpenStackOperations.OpenStack Suite Teardown
5 Test Setup        SetupUtils.Setup_Test_With_Logging_And_Without_Fast_Failing
6 Test Teardown     BuiltIn.Run Keywords    OpenStackOperations.Get Test Teardown Debugs
7 ...               AND    OpenStackOperations.Get Test Teardown Debugs For SFC
8 Library           SSHLibrary
9 Library           OperatingSystem
10 Library           RequestsLibrary
11 Resource          ../../../libraries/DevstackUtils.robot
12 Resource          ../../../libraries/OpenStackOperations.robot
13 Resource          ../../../libraries/SetupUtils.robot
14 Resource          ../../../libraries/Utils.robot
15 Resource          ../../../libraries/KarafKeywords.robot
16
17 *** Variables ***
18 ${SECURITY_GROUP}    sg-sfc
19 @{NETWORKS}       network_1
20 @{SUBNETS}        l2_subnet_1
21 @{NET_1_VMS}      sf1    sf2    sf3    source_vm    dest_vm
22 @{SUBNET_CIDRS}    30.0.0.0/24
23 @{PORTS}          p1in    p1out    p2in    p2out    p3in    p3out    source_vm_port
24 ...               dest_vm_port
25
26 *** Test Cases ***
27 Create VXLAN Network net_1
28     [Documentation]    Create Network with neutron request.
29     OpenStackOperations.Create Network    @{NETWORKS}[0]
30
31 Create Subnets For net_1
32     [Documentation]    Create Sub Nets for the Networks with neutron request.
33     OpenStackOperations.Create SubNet    @{NETWORKS}[0]    @{SUBNETS}[0]    @{SUBNET_CIDRS}[0]
34
35 Add Allow All Rules
36     [Documentation]    Allow all TCP/UDP/ICMP packets for this suite
37     OpenStackOperations.Create Allow All SecurityGroup    ${SECURITY_GROUP}
38
39 Create Neutron Ports
40     [Documentation]    Precreate neutron ports to be used for SFC VMs
41     : FOR    ${port}    IN    @{PORTS}
42     \    OpenStackOperations.Create Port    @{NETWORKS}[0]    ${port}    sg=${SECURITY_GROUP}
43
44 Create Vm Instances
45     [Documentation]    Create Four Vm instances using flavor and image names for a network.
46     Create Vm Instance With Ports    p1in    p1out    sf1    sg=${SECURITY_GROUP}
47     Create Vm Instance With Ports    p2in    p2out    sf2    sg=${SECURITY_GROUP}
48     Create Vm Instance With Ports    p3in    p3out    sf3    sg=${SECURITY_GROUP}
49     Create Vm Instance With Port    source_vm_port    source_vm    sg=${SECURITY_GROUP}
50     Create Vm Instance With Port    dest_vm_port    dest_vm    sg=${SECURITY_GROUP}
51
52 Check Vm Instances Have Ip Address
53     @{NET1_VM_IPS}    ${NET1_DHCP_IP} =    OpenStackOperations.Get VM IPs    @{NET_1_VMS}
54     BuiltIn.Set Suite Variable    @{NET1_VM_IPS}
55     BuiltIn.Should Not Contain    ${NET1_VM_IPS}    None
56     BuiltIn.Should Not Contain    ${NET1_DHCP_IP}    None
57     [Teardown]    BuiltIn.Run Keywords    OpenStackOperations.Show Debugs    @{NET_1_VMS}
58     ...    AND    OpenStackOperations.Get Test Teardown Debugs
59
60 Create Flow Classifiers
61     [Documentation]    Create SFC Flow Classifier for TCP traffic between source VM and destination VM
62     OpenStackOperations.Create SFC Flow Classifier    FC_http    @{NET1_VM_IPS}[3]    @{NET1_VM_IPS}[4]    tcp    80    source_vm_port
63
64 Create Port Pairs
65     [Documentation]    Create SFC Port Pairs
66     OpenStackOperations.Create SFC Port Pair    PP1    p1in    p1out
67     OpenStackOperations.Create SFC Port Pair    PP2    p2in    p2out
68     OpenStackOperations.Create SFC Port Pair    PP3    p3in    p3out
69
70 Create Port Pair Groups
71     [Documentation]    Create SFC Port Pair Groups
72     OpenStackOperations.Create SFC Port Pair Group With Two Pairs    PG1    PP1    PP2
73     OpenStackOperations.Create SFC Port Pair Group    PG2    PP3
74
75 Create Port Chain
76     [Documentation]    Create SFC Port Chain using two port groups an classifier created previously
77     OpenStackOperations.Create SFC Port Chain    PC1    PG1    PG2    FC_http
78
79 Start Web Server On Destination VM
80     [Documentation]    Start a simple web server on the destination VM
81     OpenStackOperations.Execute Command on VM Instance    @{NETWORKS}[0]    @{NET1_VM_IPS}[4]    while true; do echo -e "HTTP/1.0 200 OK\r\nContent-Length: 21\r\n\r\nWelcome to web-server" | sudo nc -l -p 80 ; done &
82
83 Add Static Routing On Service Function VMs
84     [Documentation]    Enable eth1 and add static routing between the ports on the SF VMs
85     : FOR    ${index}    IN RANGE    0    2
86     \    OpenStackOperations.Execute Command on VM Instance    @{NETWORKS}[0]    @{NET1_VM_IPS}[${index}]    sudo sh -c 'echo "auto eth1" >> /etc/network/interfaces'
87     \    OpenStackOperations.Execute Command on VM Instance    @{NETWORKS}[0]    @{NET1_VM_IPS}[${index}]    sudo sh -c 'echo "iface eth1 inet dhcp" >> /etc/network/interfaces'
88     \    OpenStackOperations.Execute Command on VM Instance    @{NETWORKS}[0]    @{NET1_VM_IPS}[${index}]    sudo /etc/init.d/S40network restart
89     \    OpenStackOperations.Execute Command on VM Instance    @{NETWORKS}[0]    @{NET1_VM_IPS}[${index}]    sudo sh -c 'echo 1 > /proc/sys/net/ipv4/ip_forward'
90     \    OpenStackOperations.Execute Command on VM Instance    @{NETWORKS}[0]    @{NET1_VM_IPS}[${index}]    sudo ip route add @{NET1_VM_IPS}[3] dev eth0
91     \    OpenStackOperations.Execute Command on VM Instance    @{NETWORKS}[0]    @{NET1_VM_IPS}[${index}]    sudo ip route add @{NET1_VM_IPS}[4] dev eth1
92
93 Connectivity Tests From Vm Instance1 In net_1
94     [Documentation]    Login to the source VM instance, and send a HTTP GET using curl to the destination VM instance
95     # FIXME need to somehow verify it goes through SFs (flows?)
96     ${DEST_VM_LIST}    BuiltIn.Create List    @{NET1_VM_IPS}[4]
97     OpenStackOperations.Test Operations From Vm Instance    @{NETWORKS}[0]    @{NET1_VM_IPS}[3]    ${DEST_VM_LIST}
98     OpenStackOperations.Execute Command on VM Instance    @{NETWORKS}[0]    @{NET1_VM_IPS}[3]    curl http://@{NET1_VM_IPS}[4]
99
100 Delete Configurations
101     [Documentation]    Delete all elements that were created in the test case section. These are done
102     ...    in a local keyword so this can be called as part of the Suite Teardown. When called as part
103     ...    of the Suite Teardown, all steps will be attempted. This prevents robot framework from bailing
104     ...    on the rest of a test case if one step intermittently has trouble and fails. The goal is to attempt
105     ...    to leave the test environment as clean as possible upon completion of this suite.
106     : FOR    ${vm}    IN    @{NET_1_VMS}
107     \    OpenStackOperations.Delete Vm Instance    ${vm}
108     OpenStackOperations.Delete SFC Port Chain    PC1
109     OpenStackOperations.Delete SFC Port Pair Group    PG1
110     OpenStackOperations.Delete SFC Port Pair Group    PG2
111     OpenStackOperations.Delete SFC Port Pair    PP1
112     OpenStackOperations.Delete SFC Port Pair    PP2
113     OpenStackOperations.Delete SFC Port Pair    PP3
114     OpenStackOperations.Delete SFC Flow Classifier    FC_http
115     : FOR    ${port}    IN    @{PORTS}
116     \    OpenStackOperations.Delete Port    ${port}
117     OpenStackOperations.Delete SubNet    l2_subnet_1
118     : FOR    ${network}    IN    @{NETWORKS}
119     \    OpenStackOperations.Delete Network    ${network}
120     OpenStackOperations.Delete SecurityGroup    ${SECURITY_GROUP}