netvirt-csit: Show neutron debugs only once
[integration/test.git] / csit / suites / openstack / connectivity / 01_l2_tests.robot
1 *** Settings ***
2 Documentation     Test suite to verify packet flows between vm instances.
3 Suite Setup       BuiltIn.Run Keywords    SetupUtils.Setup_Utils_For_Setup_And_Teardown
4 ...               AND    DevstackUtils.Devstack Suite Setup
5 Suite Teardown    Close All Connections
6 Test Setup        SetupUtils.Setup_Test_With_Logging_And_Without_Fast_Failing
7 Test Teardown     Get OvsDebugInfo
8 Library           SSHLibrary
9 Library           OperatingSystem
10 Library           RequestsLibrary
11 Resource          ../../../libraries/Utils.robot
12 Resource          ../../../libraries/OpenStackOperations.robot
13 Resource          ../../../libraries/DevstackUtils.robot
14 Resource          ../../../libraries/SetupUtils.robot
15
16 *** Variables ***
17 @{NETWORKS_NAME}    l2_network_1    l2_network_2
18 @{SUBNETS_NAME}    l2_subnet_1    l2_subnet_2
19 @{NET_1_VM_INSTANCES}    MyFirstInstance_1    MySecondInstance_1    MyThirdInstance_1
20 @{NET_2_VM_INSTANCES}    MyFirstInstance_2    MySecondInstance_2    MyThirdInstance_2
21 @{SUBNETS_RANGE}    30.0.0.0/24    40.0.0.0/24
22
23 *** Test Cases ***
24 Create Networks
25     [Documentation]    Create Network with neutron request.
26     : FOR    ${NetworkElement}    IN    @{NETWORKS_NAME}
27     \    Create Network    ${NetworkElement}
28
29 Create Subnets For l2_network_1
30     [Documentation]    Create Sub Nets for the Networks with neutron request.
31     Create SubNet    l2_network_1    l2_subnet_1    @{SUBNETS_RANGE}[0]
32
33 Create Subnets For l2_network_2
34     [Documentation]    Create Sub Nets for the Networks with neutron request.
35     Create SubNet    l2_network_2    l2_subnet_2    @{SUBNETS_RANGE}[1]
36
37 Add Ssh Allow Rule
38     [Documentation]    Allow all TCP/UDP/ICMP packets for this suite
39     Neutron Security Group Create    csit
40     Neutron Security Group Rule Create    csit    direction=ingress    port_range_max=65535    port_range_min=1    protocol=tcp    remote_ip_prefix=0.0.0.0/0
41     Neutron Security Group Rule Create    csit    direction=egress    port_range_max=65535    port_range_min=1    protocol=tcp    remote_ip_prefix=0.0.0.0/0
42     Neutron Security Group Rule Create    csit    direction=ingress    protocol=icmp    remote_ip_prefix=0.0.0.0/0
43     Neutron Security Group Rule Create    csit    direction=egress    protocol=icmp    remote_ip_prefix=0.0.0.0/0
44     Neutron Security Group Rule Create    csit    direction=ingress    port_range_max=65535    port_range_min=1    protocol=udp    remote_ip_prefix=0.0.0.0/0
45     Neutron Security Group Rule Create    csit    direction=egress    port_range_max=65535    port_range_min=1    protocol=udp    remote_ip_prefix=0.0.0.0/0
46
47 Create Vm Instances For l2_network_1
48     [Documentation]    Create Four Vm instances using flavor and image names for a network.
49     Create Vm Instances    l2_network_1    ${NET_1_VM_INSTANCES}    sg=csit
50
51 Create Vm Instances For l2_network_2
52     [Documentation]    Create Four Vm instances using flavor and image names for a network.
53     Create Vm Instances    l2_network_2    ${NET_2_VM_INSTANCES}    sg=csit
54
55 Check Vm Instances Have Ip Address
56     [Documentation]    Test case to verify that all created VMs are ready and have received their ip addresses.
57     ...    We are polling first and longest on the last VM created assuming that if it's received it's address
58     ...    already the other instances should have theirs already or at least shortly thereafter.
59     # first, ensure all VMs are in ACTIVE state.    if not, we can just fail the test case and not waste time polling
60     # for dhcp addresses
61     : FOR    ${vm}    IN    @{NET_1_VM_INSTANCES}    @{NET_2_VM_INSTANCES}
62     \    Wait Until Keyword Succeeds    15s    5s    Verify VM Is ACTIVE    ${vm}
63     ${NET1_VM_IPS}    ${NET1_DHCP_IP}    Wait Until Keyword Succeeds    180s    10s    Verify VMs Received DHCP Lease    @{NET_1_VM_INSTANCES}
64     ${NET2_VM_IPS}    ${NET2_DHCP_IP}    Wait Until Keyword Succeeds    180s    10s    Verify VMs Received DHCP Lease    @{NET_2_VM_INSTANCES}
65     Append To List    ${NET1_VM_IPS}    ${NET1_DHCP_IP}
66     Set Suite Variable    ${NET1_VM_IPS}
67     Append To List    ${NET2_VM_IPS}    ${NET2_DHCP_IP}
68     Set Suite Variable    ${NET2_VM_IPS}
69     [Teardown]    Run Keywords    Show Debugs    @{NET_1_VM_INSTANCES}    @{NET_2_VM_INSTANCES}
70     ...    AND    Get OvsDebugInfo
71
72 Ping Vm Instance1 In l2_network_1
73     [Documentation]    Check reachability of vm instances by pinging to them.
74     Ping Vm From DHCP Namespace    l2_network_1    @{NET1_VM_IPS}[0]
75
76 Ping Vm Instance2 In l2_network_1
77     [Documentation]    Check reachability of vm instances by pinging to them.
78     Ping Vm From DHCP Namespace    l2_network_1    @{NET1_VM_IPS}[1]
79
80 Ping Vm Instance3 In l2_network_1
81     [Documentation]    Check reachability of vm instances by pinging to them.
82     Ping Vm From DHCP Namespace    l2_network_1    @{NET1_VM_IPS}[2]
83
84 Ping Vm Instance1 In l2_network_2
85     [Documentation]    Check reachability of vm instances by pinging to them.
86     Ping Vm From DHCP Namespace    l2_network_2    @{NET2_VM_IPS}[0]
87
88 Ping Vm Instance2 In l2_network_2
89     [Documentation]    Check reachability of vm instances by pinging to them.
90     Ping Vm From DHCP Namespace    l2_network_2    @{NET2_VM_IPS}[1]
91
92 Ping Vm Instance3 In l2_network_2
93     [Documentation]    Check reachability of vm instances by pinging to them.
94     Ping Vm From DHCP Namespace    l2_network_2    @{NET2_VM_IPS}[2]
95
96 Connectivity Tests From Vm Instance1 In l2_network_1
97     [Documentation]    Login to the vm instance and test some operations
98     Test Operations From Vm Instance    l2_network_1    @{NET1_VM_IPS}[0]    ${NET1_VM_IPS}
99
100 Connectivity Tests From Vm Instance2 In l2_network_1
101     [Documentation]    Login to the vm instance and test operations
102     Test Operations From Vm Instance    l2_network_1    @{NET1_VM_IPS}[1]    ${NET1_VM_IPS}
103
104 Connectivity Tests From Vm Instance3 In l2_network_1
105     [Documentation]    Login to the vm instance and test operations
106     Test Operations From Vm Instance    l2_network_1    @{NET1_VM_IPS}[2]    ${NET1_VM_IPS}
107
108 Connectivity Tests From Vm Instance1 In l2_network_2
109     [Documentation]    Login to the vm instance and test operations
110     Test Operations From Vm Instance    l2_network_2    @{NET2_VM_IPS}[0]    ${NET2_VM_IPS}
111
112 Connectivity Tests From Vm Instance2 In l2_network_2
113     [Documentation]    Logging to the vm instance using generated key pair.
114     Test Operations From Vm Instance    l2_network_2    @{NET2_VM_IPS}[1]    ${NET2_VM_IPS}
115
116 Connectivity Tests From Vm Instance3 In l2_network_2
117     [Documentation]    Login to the vm instance using generated key pair.
118     Test Operations From Vm Instance    l2_network_2    @{NET2_VM_IPS}[2]    ${NET2_VM_IPS}
119
120 Delete A Vm Instance
121     [Documentation]    Delete Vm instances using instance names.
122     Delete Vm Instance    MyFirstInstance_1
123
124 No Ping For Deleted Vm
125     [Documentation]    Check non reachability of deleted vm instances by pinging to them.
126     ${output}=    Ping From DHCP Should Not Succeed    l2_network_1    @{NET_1_VM_IPS}[0]
127
128 Delete Vm Instances In l2_network_1
129     [Documentation]    Delete Vm instances using instance names in l2_network_1.
130     : FOR    ${VmElement}    IN    @{NET_1_VM_INSTANCES}
131     \    Delete Vm Instance    ${VmElement}
132
133 Delete Vm Instances In l2_network_2
134     [Documentation]    Delete Vm instances using instance names in l2_network_2.
135     : FOR    ${VmElement}    IN    @{NET_2_VM_INSTANCES}
136     \    Delete Vm Instance    ${VmElement}
137     [Teardown]    Run Keywords    Show Debugs    @{NET_1_VM_INSTANCES}    @{NET_2_VM_INSTANCES}
138     ...    AND    Get OvsDebugInfo
139
140 Delete Sub Networks In l2_network_1
141     [Documentation]    Delete Sub Nets for the Networks with neutron request.
142     Delete SubNet    l2_subnet_1
143
144 Delete Sub Networks In l2_network_2
145     [Documentation]    Delete Sub Nets for the Networks with neutron request.
146     Delete SubNet    l2_subnet_2
147
148 Delete Networks
149     [Documentation]    Delete Networks with neutron request.
150     : FOR    ${NetworkElement}    IN    @{NETWORKS_NAME}
151     \    Delete Network    ${NetworkElement}