*** Settings *** Documentation Test suite to check connectivity while disrupting connection between cluster nodes Library SSHLibrary Library OperatingSystem Library RequestsLibrary Library Collections Resource ../../../libraries/Utils.robot Resource ../../../libraries/OpenStackOperations.robot Resource ../../../libraries/DevstackUtils.robot Resource ../../../libraries/OVSDB.robot Resource ../../../libraries/ClusterOvsdb.robot Resource ../../../libraries/ClusterManagement.robot Resource ../../../libraries/SetupUtils.robot Resource ../../../variables/Variables.robot Suite Setup OpenStackOperations.OpenStack Suite Setup Suite Teardown Close All Connections Test Setup SetupUtils.Setup_Test_With_Logging_And_Without_Fast_Failing Test Teardown OpenStackOperations.Get Test Teardown Debugs *** Variables *** ${SECURITY_GROUP} cl3_bp_sg @{NETWORKS} cl3_bp_net_1 cl3_bp_net_2 @{SUBNETS} cl3_bp_sub_1 cl3_bp_sub_2 @{ROUTERS} cl3_bp_router_1 cl3_bp_router_2 cl3_bp_router_3 @{NET_1_VMS} cl3_bp_net_1_vm_1 cl3_bp_net_1_vm_2 cl3_bp_net_1_vm_3 @{NET_2_VMS} cl3_bp_net_2_vm_1 cl3_bp_net_2_vm_2 cl3_bp_net_2_vm_3 @{SUBNET_CIDRS} 38.0.0.0/24 39.0.0.0/24 @{GATEWAY_IPS} 38.0.0.1 39.0.0.1 *** Test Cases *** Create All Controller Sessions [Documentation] Create sessions for all three controllers. ClusterManagement.ClusterManagement Setup Create Networks [Documentation] Create Network with neutron request. FOR ${network} IN @{NETWORKS} OpenStackOperations.Create Network ${network} END Create Subnets For net_1 [Documentation] Create Sub Nets for the Networks with neutron request. OpenStackOperations.Create SubNet ${NETWORKS}[0] ${SUBNETS}[0] ${SUBNET_CIDRS}[0] Create Subnets For net_2 [Documentation] Create Sub Nets for the Networks with neutron request. OpenStackOperations.Create SubNet ${NETWORKS}[1] ${SUBNETS}[1] ${SUBNET_CIDRS}[1] Add Ssh Allow All Rule [Documentation] Allow all TCP/UDP/ICMP packets for this suite OpenStackOperations.Create Allow All SecurityGroup ${SECURITY_GROUP} Block Port On ODL1 [Documentation] Block connection on first controller ClusterManagement.Isolate_Member_From_List_Or_All ${1} protocol=tcp port=${ODL_AKKA_PORT} Create Vm Instances For net_1 [Documentation] Create Vm instances using flavor and image names for a network. OpenStackOperations.Create Vm Instance On Compute Node ... ${NETWORKS}[0] ... ${NET_1_VMS}[0] ... ${OS_CMP1_HOSTNAME} ... sg=${SECURITY_GROUP} OpenStackOperations.Create Vm Instance On Compute Node ... ${NETWORKS}[0] ... ${NET_1_VMS}[1] ... ${OS_CMP1_HOSTNAME} ... sg=${SECURITY_GROUP} OpenStackOperations.Create Vm Instance On Compute Node ... ${NETWORKS}[0] ... ${NET_1_VMS}[2] ... ${OS_CMP2_HOSTNAME} ... sg=${SECURITY_GROUP} Allow Port On ODL1 [Documentation] Allow connection on first controller ClusterManagement.Rejoin_Member_From_List_Or_All ${1} protocol=tcp port=${ODL_AKKA_PORT} Block Port On ODL2 [Documentation] Block connection on second controller ClusterManagement.Isolate_Member_From_List_Or_All ${2} protocol=tcp port=${ODL_AKKA_PORT} Create Vm Instances For net_2 [Documentation] Create Vm instances using flavor and image names for a network. OpenStackOperations.Create Vm Instance On Compute Node ... ${NETWORKS}[1] ... ${NET_2_VMS}[0] ... ${OS_CMP1_HOSTNAME} ... sg=${SECURITY_GROUP} OpenStackOperations.Create Vm Instance On Compute Node ... ${NETWORKS}[1] ... ${NET_2_VMS}[1] ... ${OS_CMP2_HOSTNAME} ... sg=${SECURITY_GROUP} OpenStackOperations.Create Vm Instance On Compute Node ... ${NETWORKS}[1] ... ${NET_2_VMS}[2] ... ${OS_CMP2_HOSTNAME} ... sg=${SECURITY_GROUP} Check Vm Instances Have Ip Address @{NET_1_L3_VM_IPS} ${NET_1_DHCP_IP} = OpenStackOperations.Get VM IPs @{NET_1_VMS} @{NET_2_L3_VM_IPS} ${NET_2_DHCP_IP} = OpenStackOperations.Get VM IPs @{NET_2_VMS} BuiltIn.Set Suite Variable @{NET_1_L3_VM_IPS} BuiltIn.Set Suite Variable @{NET_2_L3_VM_IPS} BuiltIn.Should Not Contain ${NET_1_L3_VM_IPS} None BuiltIn.Should Not Contain ${NET_2_L3_VM_IPS} None BuiltIn.Should Not Contain ${NET_1_DHCP_IP} None BuiltIn.Should Not Contain ${NET_2_DHCP_IP} None [Teardown] BuiltIn.Run Keywords OpenStackOperations.Show Debugs @{NET_1_VMS} @{NET_2_VMS} ... AND OpenStackOperations.Get Test Teardown Debugs Allow Port On ODL2 [Documentation] Allow connection on second controller ClusterManagement.Rejoin_Member_From_List_Or_All ${2} protocol=tcp port=${ODL_AKKA_PORT} Block Port On ODL3 [Documentation] Block connection on third controller ClusterManagement.Isolate_Member_From_List_Or_All ${3} protocol=tcp port=${ODL_AKKA_PORT} Create Router router_2 [Documentation] Create Router and Add Interface to the subnets. OpenStackOperations.Create Router ${ROUTERS}[1] [Teardown] Report_Failure_Due_To_Bug 6117 Create Router router_3 [Documentation] Create Router and Add Interface to the subnets. OpenStackOperations.Create Router ${ROUTERS}[2] Add Interfaces To Router [Documentation] Add Interfaces FOR ${interface} IN @{SUBNETS} OpenStackOperations.Add Router Interface ${ROUTERS}[2] ${interface} END Verify Created Routers [Documentation] Check created routers using northbound rest calls ${data} = Utils.Get Data From URI 1 ${NEUTRON_ROUTERS_API} BuiltIn.Log ${data} Should Contain ${data} ${ROUTERS}[2] Allow Port On ODL3 [Documentation] Allow connection on third controller ClusterManagement.Rejoin_Member_From_List_Or_All ${3} protocol=tcp port=${ODL_AKKA_PORT} Ping Vm Instance1 In net_2 From net_1 [Documentation] Check reachability of vm instances by pinging to them after creating routers. OpenStackOperations.Ping Vm From DHCP Namespace ${NETWORKS}[0] ${NET_2_L3_VM_IPS}[0] Ping Vm Instance2 In net_2 From net_1 [Documentation] Check reachability of vm instances by pinging to them after creating routers. OpenStackOperations.Ping Vm From DHCP Namespace ${NETWORKS}[0] ${NET_2_L3_VM_IPS}[1] Ping Vm Instance3 In net_2 From net_1 [Documentation] Check reachability of vm instances by pinging to them after creating routers. OpenStackOperations.Ping Vm From DHCP Namespace ${NETWORKS}[0] ${NET_2_L3_VM_IPS}[2] Ping Vm Instance1 In net_1 From net_2 [Documentation] Check reachability of vm instances by pinging to them after creating routers. OpenStackOperations.Ping Vm From DHCP Namespace ${NETWORKS}[1] ${NET_1_L3_VM_IPS}[0] Ping Vm Instance2 In net_1 From net_2 [Documentation] Check reachability of vm instances by pinging to them after creating routers. OpenStackOperations.Ping Vm From DHCP Namespace ${NETWORKS}[1] ${NET_1_L3_VM_IPS}[1] Ping Vm Instance3 In net_1 From net_2 [Documentation] Check reachability of vm instances by pinging to them after creating routers. OpenStackOperations.Ping Vm From DHCP Namespace ${NETWORKS}[1] ${NET_1_L3_VM_IPS}[2] Block Port On ODL1 Again [Documentation] Block connection on first controller the second time ClusterManagement.Isolate_Member_From_List_Or_All ${1} protocol=tcp port=${ODL_AKKA_PORT} [Teardown] OpenStackOperations.Get Test Teardown Debugs fail=False Block Port On ODL2 Again [Documentation] Block connection on second controller the second time ClusterManagement.Isolate_Member_From_List_Or_All ${2} protocol=tcp port=${ODL_AKKA_PORT} [Teardown] OpenStackOperations.Get Test Teardown Debugs fail=False Connectivity Tests From Vm Instance1 In net_1 [Documentation] ssh to the VM instance and test operations. ${dst_list} = BuiltIn.Create List @{NET_2_L3_VM_IPS} @{NET_1_L3_VM_IPS} OpenStackOperations.Test Operations From Vm Instance ${NETWORKS}[0] ${NET_1_L3_VM_IPS}[0] ${dst_list} [Teardown] OpenStackOperations.Get Test Teardown Debugs fail=False Connectivity Tests From Vm Instance2 In net_1 [Documentation] ssh to the VM instance and test operations. ${dst_list} = BuiltIn.Create List @{NET_2_L3_VM_IPS} @{NET_1_L3_VM_IPS} OpenStackOperations.Test Operations From Vm Instance ${NETWORKS}[0] ${NET_1_L3_VM_IPS}[1] ${dst_list} [Teardown] OpenStackOperations.Get Test Teardown Debugs fail=False Connectivity Tests From Vm Instance3 In net_1 [Documentation] ssh to the VM instance and test operations. ${dst_list} = BuiltIn.Create List @{NET_2_L3_VM_IPS} @{NET_1_L3_VM_IPS} OpenStackOperations.Test Operations From Vm Instance ${NETWORKS}[0] ${NET_1_L3_VM_IPS}[2] ${dst_list} [Teardown] OpenStackOperations.Get Test Teardown Debugs fail=False Allow Port On ODL1 Again [Documentation] Allow connection on first controller the second time BuiltIn.Run_Keyword_And_Ignore_Error ... ClusterManagement.Rejoin_Member_From_List_Or_All ... ${1} ... protocol=tcp ... port=${ODL_AKKA_PORT} Allow Port On ODL2 Again [Documentation] Allow connection on the second controller the second time ClusterManagement.Rejoin_Member_From_List_Or_All ${2} protocol=tcp port=${ODL_AKKA_PORT} Block Port On ODL2 Finally [Documentation] Block connection on second controller for the last time ClusterManagement.Isolate_Member_From_List_Or_All ${2} protocol=tcp port=${ODL_AKKA_PORT} [Teardown] OpenStackOperations.Get Test Teardown Debugs fail=False Block Port On ODL3 Again [Documentation] Block connection on the third controller for the second time ClusterManagement.Isolate_Member_From_List_Or_All ${3} protocol=tcp port=${ODL_AKKA_PORT} [Teardown] OpenStackOperations.Get Test Teardown Debugs fail=False Connectivity Tests From Vm Instance1 In net_2 [Documentation] ssh to the VM instance and test operations. ${dst_list} = BuiltIn.Create List @{NET_2_L3_VM_IPS} @{NET_1_L3_VM_IPS} OpenStackOperations.Test Operations From Vm Instance ${NETWORKS}[1] ${NET_2_L3_VM_IPS}[0] ${dst_list} [Teardown] OpenStackOperations.Get Test Teardown Debugs fail=False Connectivity Tests From Vm Instance2 In net_2 [Documentation] ssh to the VM instance and test operations. ${dst_list} = BuiltIn.Create List @{NET_2_L3_VM_IPS} @{NET_1_L3_VM_IPS} OpenStackOperations.Test Operations From Vm Instance ${NETWORKS}[1] ${NET_2_L3_VM_IPS}[1] ${dst_list} [Teardown] OpenStackOperations.Get Test Teardown Debugs fail=False Connectivity Tests From Vm Instance3 In net_2 [Documentation] ssh to the VM instance and test operations. ${dst_list} = BuiltIn.Create List @{NET_2_L3_VM_IPS} @{NET_1_L3_VM_IPS} OpenStackOperations.Test Operations From Vm Instance ${NETWORKS}[1] ${NET_2_L3_VM_IPS}[2] ${dst_list} [Teardown] OpenStackOperations.Get Test Teardown Debugs fail=False Allow Port On ODL2 Finally [Documentation] Allow connection on second controller for the last time BuiltIn.Run_Keyword_And_Ignore_Error ... ClusterManagement.Rejoin_Member_From_List_Or_All ... ${2} ... protocol=tcp ... port=${ODL_AKKA_PORT} Allow Port On ODL3 Again [Documentation] Allow connection on the third controller for the second time ClusterManagement.Rejoin_Member_From_List_Or_All ${3} protocol=tcp port=${ODL_AKKA_PORT} Delete Vm Instances In net_1 [Documentation] Delete Vm instances using instance names in net_1. FOR ${vm} IN @{NET_1_VMS} OpenStackOperations.Delete Vm Instance ${vm} END Delete Vm Instances In net_2 [Documentation] Delete Vm instances using instance names in net_2. FOR ${vm} IN @{NET_2_VMS} OpenStackOperations.Delete Vm Instance ${vm} END Delete Router Interfaces [Documentation] Remove Interface to the subnets. FOR ${interface} IN @{SUBNETS} OpenStackOperations.Remove Interface ${ROUTERS}[2] ${interface} END Delete Routers [Documentation] Delete Router and Interface to the subnets. OpenStackOperations.Delete Router ${ROUTERS}[1] OpenStackOperations.Delete Router ${ROUTERS}[2] Verify Deleted Routers [Documentation] Check deleted routers using northbound rest calls ${data} = Utils.Get Data From URI 1 ${NEUTRON_ROUTERS_API} BuiltIn.Log ${data} BuiltIn.Should Not Contain ${data} ${ROUTERS}[2] Delete Sub Network In net_1 [Documentation] Delete Sub Nets for the Networks with neutron request. OpenStackOperations.Delete SubNet ${SUBNETS}[0] Delete Sub Network In net_2 [Documentation] Delete Sub Nets for the Networks with neutron request. OpenStackOperations.Delete SubNet ${SUBNETS}[1] Delete Networks [Documentation] Delete Networks with neutron request. FOR ${network} IN @{NETWORKS} OpenStackOperations.Delete Network ${network} END Delete Security Group [Documentation] Delete security groups with neutron request OpenStackOperations.Delete SecurityGroup ${SECURITY_GROUP} Verify Flows Cleanup [Documentation] Verify that flows have been cleaned up properly after removing all neutron configurations DataModels.Verify Flows Are Cleaned Up On All OpenStack Nodes