X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=csit%2Flibraries%2FOpenStackOperations.robot;h=3e7c26f1550a717d1b25c66406f0c6011adf949a;hb=9cc2315cb721da1c5b0eaf8ce9600a9419379782;hp=c5f329577a5e653814e7fae0b4def7c20dc2bad2;hpb=89625d28eb23e54211d76ce6d687a6cec6f13e74;p=integration%2Ftest.git diff --git a/csit/libraries/OpenStackOperations.robot b/csit/libraries/OpenStackOperations.robot index c5f329577a..3e7c26f155 100644 --- a/csit/libraries/OpenStackOperations.robot +++ b/csit/libraries/OpenStackOperations.robot @@ -1,8 +1,9 @@ *** Settings *** Documentation Openstack library. This library is useful for tests to create network, subnet, router and vm instances Library SSHLibrary +Resource Netvirt.robot Resource Utils.robot -Variables ../variables/Variables.py +Resource ../variables/Variables.robot *** Keywords *** Source Password @@ -74,11 +75,11 @@ Create SubNet Should Contain ${output} Created a new subnet Create Port - [Arguments] ${network_name} ${port_name} ${sg}=default + [Arguments] ${network_name} ${port_name} ${sg}=default ${additional_args}=${EMPTY} [Documentation] Create Port with neutron request. ${devstack_conn_id}= Get ControlNode Connection Switch Connection ${devstack_conn_id} - ${output}= Write Commands Until Prompt neutron -v port-create ${network_name} --name ${port_name} --security-group ${sg} 30s + ${output}= Write Commands Until Prompt neutron -v port-create ${network_name} --name ${port_name} --security-group ${sg} ${additional_args} 30s Close Connection Log ${output} Should Contain ${output} Created a new port @@ -186,6 +187,17 @@ Get Net Id Log ${net_id} [Return] ${net_id} +Get Subnet Id + [Arguments] ${subnet_name} ${devstack_conn_id} + [Documentation] Retrieve the subnet id for the given subnet name + Switch Connection ${devstack_conn_id} + ${output}= Write Commands Until Prompt neutron subnet-list | grep "${subnet_name}" | awk '{print $2}' 30s + Log ${output} + ${splitted_output}= Split String ${output} ${EMPTY} + ${subnet_id}= Get from List ${splitted_output} 0 + Log ${subnet_id} + [Return] ${subnet_id} + Get Port Id [Arguments] ${port_name} ${devstack_conn_id} [Documentation] Retrieve the port id for the given port name to attach specific vm instance to a particular port @@ -199,7 +211,7 @@ Get Port Id Get Router Id [Arguments] ${router1} ${devstack_conn_id} - [Documentation] Retrieve the net id for the given network name to create specific vm instance + [Documentation] Retrieve the router id for the given router name Switch Connection ${devstack_conn_id} ${output}= Write Commands Until Prompt neutron router-list | grep "${router1}" | awk '{print $2}' 30s Log ${output} @@ -227,7 +239,6 @@ Create Vm Instance With Port On Compute Node ${hostname_compute_node}= Run Command On Remote System ${compute_node} hostname ${output}= Write Commands Until Prompt nova boot --image ${image} --flavor ${flavor} --nic port-id=${port_id} ${vm_instance_name} --security-groups ${sg} --availability-zone nova:${hostname_compute_node} 30s Log ${output} - Wait Until Keyword Succeeds 25s 5s Verify VM Is ACTIVE ${vm_instance_name} Verify VM Is ACTIVE [Arguments] ${vm_name} @@ -251,13 +262,15 @@ Verify VMs Received DHCP Lease : FOR ${vm} IN @{vm_list} \ ${vm_ip_line}= Write Commands Until Prompt nova console-log ${vm} | grep -i "obtained" 30s \ Log ${vm_ip_line} - \ @{vm_ip} Get Regexp Matches ${vm_ip_line} [0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3} + \ @{vm_ip} Get Regexp Matches ${vm_ip_line} [0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3} \ ${vm_ip_length} Get Length ${vm_ip} \ Run Keyword If ${vm_ip_length}>0 Append To List ${ip_list} @{vm_ip}[0] \ ... ELSE Append To List ${ip_list} None \ ${dhcp_ip_line}= Write Commands Until Prompt nova console-log ${vm} | grep "^nameserver" 30s \ Log ${dhcp_ip_line} - \ @{dhcp_ip} Get Regexp Matches ${dhcp_ip_line} [0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3} + \ @{dhcp_ip} Get Regexp Matches ${dhcp_ip_line} [0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3} + \ ${dhcp_ip_length} Get Length ${dhcp_ip} + \ Run Keyword If ${dhcp_ip_length}<=0 Append To List ${dhcp_ip} None \ Log ${dhcp_ip} ${dhcp_length} Get Length ${dhcp_ip} Return From Keyword If ${dhcp_length}==0 ${ip_list} ${EMPTY} @@ -337,7 +350,6 @@ Exit From Vm Console [Documentation] Check if the session has been able to login to the VM instance and exit the instance ${rcode}= Run Keyword And Return Status Check If Console Is VmInstance cirros Run Keyword If ${rcode} Write Commands Until Prompt exit - Get OvsDebugInfo Check Ping [Arguments] ${ip_address} @@ -357,7 +369,7 @@ Execute Command on VM Instance Switch Connection ${devstack_conn_id} ${net_id} = Get Net Id ${net_name} ${devstack_conn_id} Log ${vm_ip} - ${output} = Write Commands Until Expected Prompt sudo ip netns exec qdhcp-${net_id} ssh ${user}@${vm_ip} -o ConnectTimeout=10 -o StrictHostKeyChecking=no d: + ${output} = Write Commands Until Expected Prompt sudo ip netns exec qdhcp-${net_id} ssh ${user}@${vm_ip} -o ConnectTimeout=10 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null d: Log ${output} ${output} = Write Commands Until Expected Prompt ${password} ${OS_SYSTEM_PROMPT} Log ${output} @@ -373,7 +385,7 @@ Test Operations From Vm Instance Switch Connection ${devstack_conn_id} Log ${src_ip} ${net_id}= Get Net Id ${net_name} ${devstack_conn_id} - ${output}= Write Commands Until Expected Prompt sudo ip netns exec qdhcp-${net_id} ssh -o ConnectTimeout=10 -o StrictHostKeyChecking=no ${user}@${src_ip} d: + ${output}= Write Commands Until Expected Prompt sudo ip netns exec qdhcp-${net_id} ssh -o ConnectTimeout=10 -o StrictHostKeyChecking=no ${user}@${src_ip} -o UserKnownHostsFile=/dev/null d: Log ${output} ${output}= Write Commands Until Expected Prompt ${password} ${OS_SYSTEM_PROMPT} Log ${output} @@ -389,6 +401,35 @@ Test Operations From Vm Instance Run Keyword If ${rcode} Check Metadata Access [Teardown] Exit From Vm Console +Install Netcat On Controller + [Documentation] Installs Netcat on the controller - this probably shouldn't be here + ${devstack_conn_id}= Get ControlNode Connection + Switch Connection ${devstack_conn_id} + ${output}= Write Commands Until Prompt sudo yum install -y nc + Log ${output} + Close Connection + +Test Netcat Operations From Vm Instance + [Arguments] ${net_name} ${vm_ip} ${dest_ip} ${additional_args}=${EMPTY} ${port}=12345 ${user}=cirros + ... ${password}=cubswin:) + [Documentation] Use Netcat to test TCP/UDP connections to the controller + ${client_data} Set Variable Test Client Data + ${server_data} Set Variable Test Server Data + ${devstack_conn_id}= Get ControlNode Connection + Switch Connection ${devstack_conn_id} + Log ${vm_ip} + ${output}= Write Commands Until Prompt ( ( echo "${server_data}" | sudo timeout 60 nc -l ${additional_args} ${port} ) & ) + Log ${output} + ${output}= Write Commands Until Prompt sudo netstat -nlap | grep ${port} + Log ${output} + ${nc_output}= Execute Command on VM Instance ${net_name} ${vm_ip} sudo echo "${client_data}" | nc -v -w 5 ${additional_args} ${dest_ip} ${port} + Log ${nc_output} + ${output}= Execute Command on VM Instance ${net_name} ${vm_ip} sudo route -n + Log ${output} + ${output}= Execute Command on VM Instance ${net_name} ${vm_ip} sudo arp -an + Log ${output} + Should Match Regexp ${nc_output} ${server_data} + Ping Other Instances [Arguments] ${list_of_external_dst_ips} [Documentation] Check reachability with other network's instances. @@ -406,6 +447,15 @@ Create Router Close Connection Should Contain ${output} Created a new router +List Router + [Documentation] List Router and return output with neutron client. + ${devstack_conn_id}= Get ControlNode Connection + Switch Connection ${devstack_conn_id} + ${output}= Write Commands Until Prompt neutron router-list 30s + Close Connection + Log ${output} + [Return] ${output} + Add Router Interface [Arguments] ${router_name} ${interface_name} ${devstack_conn_id}= Get ControlNode Connection @@ -414,6 +464,16 @@ Add Router Interface Close Connection Should Contain ${output} Added interface +Show Router Interface + [Arguments] ${router_name} + [Documentation] List Router interface associated with given Router and return output with neutron client. + ${devstack_conn_id}= Get ControlNode Connection + Switch Connection ${devstack_conn_id} + ${output}= Write Commands Until Prompt neutron router-port-list ${router_name} -f csv 30s + Close Connection + Log ${output} + [Return] ${output} + Add Router Gateway [Arguments] ${router_name} ${network_name} ${devstack_conn_id}= Get ControlNode Connection @@ -465,23 +525,44 @@ Get DumpFlows And Ovsconfig SSHLibrary.Open Connection ${openstack_node_ip} prompt=${DEFAULT_LINUX_PROMPT} Utils.Flexible SSH Login ${OS_USER} ${DEVSTACK_SYSTEM_PASSWORD} SSHLibrary.Set Client Configuration timeout=${default_devstack_prompt_timeout} - Write Commands Until Expected Prompt ip -o link ]> - Write Commands Until Expected Prompt ip -o addr ]> - Write Commands Until Expected Prompt ip route ]> - Write Commands Until Expected Prompt arp -an ]> - ${nslist}= Write Commands Until Expected Prompt ip netns list | awk '{print $1}' ]> + Write Commands Until Expected Prompt ip -o link ${DEFAULT_LINUX_PROMPT_STRICT} + Write Commands Until Expected Prompt ip -o addr ${DEFAULT_LINUX_PROMPT_STRICT} + Write Commands Until Expected Prompt ip route ${DEFAULT_LINUX_PROMPT_STRICT} + Write Commands Until Expected Prompt arp -an ${DEFAULT_LINUX_PROMPT_STRICT} + ${nslist}= Write Commands Until Expected Prompt ip netns list | awk '{print $1}' ${DEFAULT_LINUX_PROMPT_STRICT} @{lines} Split To Lines ${nslist} : FOR ${line} IN @{lines} - \ Write Commands Until Expected Prompt sudo ip netns exec ${line} ip -o link ]> - \ Write Commands Until Expected Prompt sudo ip netns exec ${line} ip -o addr ]> - \ Write Commands Until Expected Prompt sudo ip netns exec ${line} ip route ]> - Write Commands Until Expected Prompt sudo ovs-vsctl show ]> - Write Commands Until Expected Prompt sudo ovs-vsctl list Open_vSwitch ]> - Write Commands Until Expected Prompt sudo ovs-ofctl show br-int -OOpenFlow13 ]> - Write Commands Until Expected Prompt sudo ovs-ofctl dump-ports-desc br-int -OOpenFlow13 ]> - Write Commands Until Expected Prompt sudo ovs-ofctl dump-flows br-int -OOpenFlow13 ]> - Write Commands Until Expected Prompt sudo ovs-ofctl dump-groups br-int -OOpenFlow13 ]> - Write Commands Until Expected Prompt sudo ovs-ofctl dump-group-stats br-int -OOpenFlow13 ]> + \ Write Commands Until Expected Prompt sudo ip netns exec ${line} ip -o link ${DEFAULT_LINUX_PROMPT_STRICT} + \ Write Commands Until Expected Prompt sudo ip netns exec ${line} ip -o addr ${DEFAULT_LINUX_PROMPT_STRICT} + \ Write Commands Until Expected Prompt sudo ip netns exec ${line} ip route ${DEFAULT_LINUX_PROMPT_STRICT} + Write Commands Until Expected Prompt sudo ovs-vsctl show ${DEFAULT_LINUX_PROMPT_STRICT} + Write Commands Until Expected Prompt sudo ovs-vsctl list Open_vSwitch ${DEFAULT_LINUX_PROMPT_STRICT} + Write Commands Until Expected Prompt sudo ovs-ofctl show br-int -OOpenFlow13 ${DEFAULT_LINUX_PROMPT_STRICT} + Write Commands Until Expected Prompt sudo ovs-ofctl dump-ports-desc br-int -OOpenFlow13 ${DEFAULT_LINUX_PROMPT_STRICT} + Write Commands Until Expected Prompt sudo ovs-ofctl dump-flows br-int -OOpenFlow13 ${DEFAULT_LINUX_PROMPT_STRICT} + Write Commands Until Expected Prompt sudo ovs-ofctl dump-groups br-int -OOpenFlow13 ${DEFAULT_LINUX_PROMPT_STRICT} + Write Commands Until Expected Prompt sudo ovs-ofctl dump-group-stats br-int -OOpenFlow13 ${DEFAULT_LINUX_PROMPT_STRICT} + +Get Karaf Log Type From Test Start + [Arguments] ${ip} ${test_name} ${type} ${user}=${ODL_SYSTEM_USER} ${password}=${ODL_SYSTEM_PASSWORD} ${prompt}=${ODL_SYSTEM_PROMPT} + ... ${log_file}=${WORKSPACE}/${BUNDLEFOLDER}/data/log/karaf.log + ${cmd} Set Variable sed '1,/ROBOT MESSAGE: Starting test ${test_name}/d' ${log_file} | grep '${type}' + ${output} Run Command On Controller ${ip} ${cmd} ${user} ${password} ${prompt} + Log ${output} + +Get Karaf Log Types From Test Start + [Arguments] ${ip} ${test_name} ${types} ${user}=${ODL_SYSTEM_USER} ${password}=${ODL_SYSTEM_PASSWORD} ${prompt}=${ODL_SYSTEM_PROMPT} + ... ${log_file}=${WORKSPACE}/${BUNDLEFOLDER}/data/log/karaf.log + : FOR ${type} IN @{types} + \ Get Karaf Log Type From Test Start ${ip} ${test_name} ${type} ${user} ${password} + \ ... ${prompt} ${log_file} + +Get Karaf Log Events From Test Start + [Arguments] ${test_name} ${user}=${ODL_SYSTEM_USER} ${password}=${ODL_SYSTEM_PASSWORD} ${prompt}=${ODL_SYSTEM_PROMPT} + ${log_types} = Create List ERROR WARN Exception + Run Keyword If 0 < ${NUM_ODL_SYSTEM} Get Karaf Log Types From Test Start ${ODL_SYSTEM_IP} ${test_name} ${log_types} + Run Keyword If 1 < ${NUM_ODL_SYSTEM} Get Karaf Log Types From Test Start ${ODL_SYSTEM_2_IP} ${test_name} ${log_types} + Run Keyword If 2 < ${NUM_ODL_SYSTEM} Get Karaf Log Types From Test Start ${ODL_SYSTEM_3_IP} ${test_name} ${log_types} Get ControlNode Connection ${control_conn_id}= SSHLibrary.Open Connection ${OS_CONTROL_NODE_IP} prompt=${DEFAULT_LINUX_PROMPT_STRICT} @@ -496,6 +577,16 @@ Get OvsDebugInfo Run Keyword If 1 < ${NUM_OS_SYSTEM} Get DumpFlows And Ovsconfig ${OS_COMPUTE_1_IP} Run Keyword If 2 < ${NUM_OS_SYSTEM} Get DumpFlows And Ovsconfig ${OS_COMPUTE_2_IP} +Get Test Teardown Debugs + [Arguments] ${test_name}=${TEST_NAME} + Get OvsDebugInfo + Run Keyword And Ignore Error Get Model Dump ${HA_PROXY_IP} + Get Karaf Log Events From Test Start ${test_name} + +Get Suite Teardown Debugs + Get OvsDebugInfo + Get Model Dump ${HA_PROXY_IP} + Show Debugs [Arguments] @{vm_indices} [Documentation] Run these commands for debugging, it can list state of VM instances and ip information in control node @@ -577,6 +668,16 @@ Neutron Security Group Update Close Connection [Return] ${output} +Delete SecurityGroup + [Arguments] ${sg_name} + [Documentation] Delete Security group + ${devstack_conn_id}= Get ControlNode Connection + Switch Connection ${devstack_conn_id} + ${output}= Write Commands Until Prompt neutron security-group-delete ${sg_name} 40s + Log ${output} + Should Match Regexp ${output} Deleted security_group: ${sg_name}|Deleted security_group\\(s\\): ${sg_name} + Close Connection + Neutron Security Group Rule Create [Arguments] ${Security_group_name} &{Kwargs} [Documentation] Creates neutron security rule with neutron request with or without optional params, here security group name is mandatory args, rule with optional params can be created by passing the optional args values ex: direction=${INGRESS_EGRESS}, Then these optional params are catenated with mandatory args, example of usage: "Neutron Security Group Rule Create ${SGP_SSH} direction=${RULE_PARAMS[0]} ethertype=${RULE_PARAMS[1]} ..." @@ -629,3 +730,18 @@ Create Neutron Port With Additional Params Log ${port_id} Close Connection [Return] ${OUTPUT} ${port_id} + +Get Ports MacAddr + [Arguments] ${portName_list} + [Documentation] Retrieve the port MacAddr for the given list of port name and return the MAC address list. + ${devstack_conn_id}= Get ControlNode Connection + Switch Connection ${devstack_conn_id} + ${MacAddr-list} Create List + : FOR ${portName} IN @{portName_list} + \ ${output} = Write Commands Until Prompt neutron port-list | grep "${portName}" | awk '{print $6}' 30s + \ Log ${output} + \ ${splitted_output}= Split String ${output} ${EMPTY} + \ ${macAddr}= Get from List ${splitted_output} 0 + \ Log ${macAddr} + \ Append To List ${MacAddr-list} ${macAddr} + [Return] ${MacAddr-list}