2 Documentation Openstack library. This library is useful for tests to create network, subnet, router and vm instances
6 Resource ../variables/Variables.robot
10 [Arguments] ${force}=no ${source_pwd}=yes
11 [Documentation] Sourcing the Openstack PAsswords for neutron configurations
12 Run Keyword If '${source_pwd}' == 'yes' or '${force}' == 'yes' Write Commands Until Prompt cd ${DEVSTACK_DEPLOY_PATH}; source openrc admin admin
14 Get Tenant ID From Security Group
15 [Documentation] Returns tenant ID by reading it from existing default security-group.
16 ${devstack_conn_id}= Get ControlNode Connection
17 Switch Connection ${devstack_conn_id}
18 ${output}= Write Commands Until Prompt neutron security-group-show default | grep "| tenant_id" | awk '{print $4}'
22 Get Tenant ID From Network
23 [Arguments] ${network_uuid}
24 [Documentation] Returns tenant ID by reading it from existing network.
25 ${resp}= Get_From_Uri uri=${CONFIG_API}/neutron:neutron/networks/network/${network_uuid}/ accept=${ACCEPT_EMPTY} session=session
26 ${tenant_id}= Utils.Extract Value From Content ${resp} /network/0/tenant-id strip
30 [Arguments] ${network_name} ${additional_args}=${EMPTY} ${verbose}=TRUE
31 [Documentation] Create Network with neutron request.
32 ${devstack_conn_id}= Get ControlNode Connection
33 Switch Connection ${devstack_conn_id}
34 ${command} Set Variable If "${verbose}" == "TRUE" neutron -v net-create ${network_name} ${additional_args} neutron net-create ${network_name} ${additional_args} | grep -w id | awk '{print $4}'
35 ${output}= Write Commands Until Prompt ${command} 30s
40 [Documentation] List networks and return output with neutron client.
41 ${devstack_conn_id}= Get ControlNode Connection
42 Switch Connection ${devstack_conn_id}
43 ${output}= Write Commands Until Prompt neutron net-list 30s
49 [Documentation] List subnets and return output with neutron client.
50 ${devstack_conn_id}= Get ControlNode Connection
51 Switch Connection ${devstack_conn_id}
52 ${output}= Write Commands Until Prompt neutron subnet-list 30s
58 [Arguments] ${network_name}
59 [Documentation] Delete Network with neutron request.
60 ${devstack_conn_id}= Get ControlNode Connection
61 Switch Connection ${devstack_conn_id}
62 ${output}= Write Commands Until Prompt neutron -v net-delete ${network_name} 30s
65 Should Match Regexp ${output} Deleted network: ${network_name}|Deleted network\\(s\\): ${network_name}
68 [Arguments] ${network_name} ${subnet} ${range_ip} ${additional_args}=${EMPTY}
69 [Documentation] Create SubNet for the Network with neutron request.
70 ${devstack_conn_id}= Get ControlNode Connection
71 Switch Connection ${devstack_conn_id}
72 ${output}= Write Commands Until Prompt neutron -v subnet-create ${network_name} ${range_ip} --name ${subnet} ${additional_args} 30s
75 Should Contain ${output} Created a new subnet
78 [Arguments] ${network_name} ${port_name} ${sg}=default ${additional_args}=${EMPTY}
79 [Documentation] Create Port with neutron request.
80 ${devstack_conn_id}= Get ControlNode Connection
81 Switch Connection ${devstack_conn_id}
82 ${output}= Write Commands Until Prompt neutron -v port-create ${network_name} --name ${port_name} --security-group ${sg} ${additional_args} 30s
85 Should Contain ${output} Created a new port
88 [Arguments] ${port_name}
89 [Documentation] Delete Port with neutron request.
90 ${devstack_conn_id}= Get ControlNode Connection
91 Switch Connection ${devstack_conn_id}
92 ${output}= Write Commands Until Prompt neutron -v port-delete ${port_name} 30s
95 Should Match Regexp ${output} Deleted port: ${port_name}|Deleted port\\(s\\): ${port_name}
98 [Documentation] List ports and return output with neutron client.
99 ${devstack_conn_id}= Get ControlNode Connection
100 Switch Connection ${devstack_conn_id}
101 ${output}= Write Commands Until Prompt neutron port-list 30s
107 [Documentation] List VMs and return output with nova client.
108 ${devstack_conn_id}= Get ControlNode Connection
109 Switch Connection ${devstack_conn_id}
110 ${output}= Write Commands Until Prompt nova list 30s
115 Create And Associate Floating IPs
116 [Arguments] ${external_net} @{vm_list}
117 [Documentation] Create and associate floating IPs to VMs with nova request
118 ${devstack_conn_id}= Get ControlNode Connection
119 Switch Connection ${devstack_conn_id}
120 ${ip_list}= Create List @{EMPTY}
121 : FOR ${vm} IN @{vm_list}
122 \ ${output}= Write Commands Until Prompt neutron floatingip-create ${external_net} 30s
124 \ @{ip} Get Regexp Matches ${output} [0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}
125 \ ${ip_length} Get Length ${ip}
126 \ Run Keyword If ${ip_length}>0 Append To List ${ip_list} @{ip}[0]
127 \ ... ELSE Append To List ${ip_list} None
128 \ ${output}= Write Commands Until Prompt nova floating-ip-associate ${vm} @{ip}[0] 30s
133 [Documentation] Verifies the Gateway Ips with dump flow.
134 ${output}= Write Commands Until Prompt sudo ovs-ofctl -O OpenFlow13 dump-flows br-int
136 : FOR ${GatewayIpElement} IN @{GATEWAY_IPS}
137 \ Should Contain ${output} ${GatewayIpElement}
140 [Documentation] Verifies the Dhcp Ips with dump flow.
141 ${output}= Write Commands Until Prompt sudo ovs-ofctl -O OpenFlow13 dump-flows br-int
143 : FOR ${DhcpIpElement} IN @{DHCP_IPS}
144 \ Should Contain ${output} ${DhcpIpElement}
147 [Documentation] Verifies the Dhcp Ips with dump flow.
148 ${output}= Write Commands Until Prompt sudo ovs-ofctl -O OpenFlow13 dump-flows br-int
150 : FOR ${DhcpIpElement} IN @{DHCP_IPS}
151 \ Should Not Contain ${output} ${DhcpIpElement}
154 [Arguments] ${subnet}
155 [Documentation] Delete SubNet for the Network with neutron request.
157 ${devstack_conn_id}= Get ControlNode Connection
158 Switch Connection ${devstack_conn_id}
159 ${output}= Write Commands Until Prompt neutron -v subnet-delete ${subnet}
162 Should Match Regexp ${output} Deleted subnet: ${subnet}|Deleted subnet\\(s\\): ${subnet}
164 Verify No Gateway Ips
165 [Documentation] Verifies the Gateway Ips removed with dump flow.
166 ${output}= Write Commands Until Prompt sudo ovs-ofctl -O OpenFlow13 dump-flows br-int
168 : FOR ${GatewayIpElement} IN @{GATEWAY_IPS}
169 \ Should Not Contain ${output} ${GatewayIpElement}
172 [Arguments] ${vm_name}
173 [Documentation] Delete Vm instances using instance names.
174 ${devstack_conn_id}= Get ControlNode Connection
175 Switch Connection ${devstack_conn_id}
176 ${output}= Write Commands Until Prompt nova force-delete ${vm_name} 40s
180 [Arguments] ${network_name} ${devstack_conn_id}
181 [Documentation] Retrieve the net id for the given network name to create specific vm instance
182 Switch Connection ${devstack_conn_id}
183 ${output}= Write Commands Until Prompt neutron net-list | grep "${network_name}" | awk '{print $2}' 30s
185 ${splitted_output}= Split String ${output} ${EMPTY}
186 ${net_id}= Get from List ${splitted_output} 0
191 [Arguments] ${subnet_name} ${devstack_conn_id}
192 [Documentation] Retrieve the subnet id for the given subnet name
193 Switch Connection ${devstack_conn_id}
194 ${output}= Write Commands Until Prompt neutron subnet-list | grep "${subnet_name}" | awk '{print $2}' 30s
196 ${splitted_output}= Split String ${output} ${EMPTY}
197 ${subnet_id}= Get from List ${splitted_output} 0
199 [Return] ${subnet_id}
202 [Arguments] ${port_name} ${devstack_conn_id}
203 [Documentation] Retrieve the port id for the given port name to attach specific vm instance to a particular port
204 Switch Connection ${devstack_conn_id}
205 ${output}= Write Commands Until Prompt neutron port-list | grep "${port_name}" | awk '{print $2}' 30s
207 ${splitted_output}= Split String ${output} ${EMPTY}
208 ${port_id}= Get from List ${splitted_output} 0
213 [Arguments] ${router1} ${devstack_conn_id}
214 [Documentation] Retrieve the router id for the given router name
215 Switch Connection ${devstack_conn_id}
216 ${output}= Write Commands Until Prompt neutron router-list | grep "${router1}" | awk '{print $2}' 30s
218 ${splitted_output}= Split String ${output} ${EMPTY}
219 ${router_id}= Get from List ${splitted_output} 0
221 [Return] ${router_id}
224 [Arguments] ${net_name} ${vm_instance_names} ${image}=cirros-0.3.4-x86_64-uec ${flavor}=m1.nano ${sg}=default
225 [Documentation] Create X Vm Instance with the net id of the Netowrk.
226 ${devstack_conn_id}= Get ControlNode Connection
227 Switch Connection ${devstack_conn_id}
228 ${net_id}= Get Net Id ${net_name} ${devstack_conn_id}
229 : FOR ${VmElement} IN @{vm_instance_names}
230 \ ${output}= Write Commands Until Prompt nova boot --image ${image} --flavor ${flavor} --nic net-id=${net_id} ${VmElement} --security-groups ${sg} 30s
233 Create Vm Instance With Port On Compute Node
234 [Arguments] ${port_name} ${vm_instance_name} ${compute_node} ${image}=cirros-0.3.4-x86_64-uec ${flavor}=m1.nano ${sg}=default
235 [Documentation] Create One VM instance using given ${port_name} and for given ${compute_node}
236 ${devstack_conn_id}= Get ControlNode Connection
237 Switch Connection ${devstack_conn_id}
238 ${port_id}= Get Port Id ${port_name} ${devstack_conn_id}
239 ${hostname_compute_node}= Run Command On Remote System ${compute_node} hostname
240 ${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
244 [Arguments] ${vm_name}
245 [Documentation] Run these commands to check whether the created vm instance is active or not.
246 ${devstack_conn_id}= Get ControlNode Connection
247 Switch Connection ${devstack_conn_id}
248 ${output}= Write Commands Until Prompt nova show ${vm_name} | grep OS-EXT-STS:vm_state 30s
250 Should Contain ${output} active
252 Verify VMs Received DHCP Lease
253 [Arguments] @{vm_list}
254 [Documentation] Using nova console-log on the provided ${vm_list} to search for the string "obtained" which
255 ... correlates to the instance receiving it's IP address via DHCP. Also retrieved is the ip of the nameserver
256 ... if available in the console-log output. The keyword will also return a list of the learned ips as it
257 ... finds them in the console log output, and will have "None" for Vms that no ip was found.
258 ${devstack_conn_id}= Get ControlNode Connection
259 Switch Connection ${devstack_conn_id}
260 ${ip_list} Create List @{EMPTY}
261 ${dhcp_ip} Create List @{EMPTY}
262 : FOR ${vm} IN @{vm_list}
263 \ ${vm_ip_line}= Write Commands Until Prompt nova console-log ${vm} | grep -i "obtained" 30s
265 \ @{vm_ip} Get Regexp Matches ${vm_ip_line} [0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}
266 \ ${vm_ip_length} Get Length ${vm_ip}
267 \ Run Keyword If ${vm_ip_length}>0 Append To List ${ip_list} @{vm_ip}[0]
268 \ ... ELSE Append To List ${ip_list} None
269 \ ${dhcp_ip_line}= Write Commands Until Prompt nova console-log ${vm} | grep "^nameserver" 30s
270 \ Log ${dhcp_ip_line}
271 \ @{dhcp_ip} Get Regexp Matches ${dhcp_ip_line} [0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}
272 \ ${dhcp_ip_length} Get Length ${dhcp_ip}
273 \ Run Keyword If ${dhcp_ip_length}<=0 Append To List ${dhcp_ip} None
275 ${dhcp_length} Get Length ${dhcp_ip}
276 Return From Keyword If ${dhcp_length}==0 ${ip_list} ${EMPTY}
277 [Return] ${ip_list} @{dhcp_ip}[0]
280 [Arguments] ${vm_instance_names}
281 [Documentation] View Console log of the created vm instances using nova show.
282 : FOR ${VmElement} IN @{vm_instance_names}
283 \ ${output}= Write Commands Until Prompt nova show ${VmElement}
285 \ ${output}= Write Commands Until Prompt nova console-log ${VmElement}
288 Ping Vm From DHCP Namespace
289 [Arguments] ${net_name} ${vm_ip}
290 [Documentation] Reach all Vm Instance with the net id of the Netowrk.
292 ${devstack_conn_id}= Get ControlNode Connection
293 Switch Connection ${devstack_conn_id}
294 ${net_id}= Get Net Id ${net_name} ${devstack_conn_id}
296 ${output}= Write Commands Until Prompt sudo ip netns exec qdhcp-${net_id} ping -c 3 ${vm_ip} 20s
299 Should Contain ${output} 64 bytes
301 Ping From DHCP Should Not Succeed
302 [Arguments] ${net_name} ${vm_ip}
303 [Documentation] Should Not Reach Vm Instance with the net id of the Netowrk.
305 ${devstack_conn_id}= Get ControlNode Connection
306 Switch Connection ${devstack_conn_id}
307 ${net_id}= Get Net Id ${net_name} ${devstack_conn_id}
309 ${output}= Write Commands Until Prompt sudo ip netns exec qdhcp-${net_id} ping -c 3 ${vm_ip} 20s
312 Should Not Contain ${output} 64 bytes
314 Ping Vm From Control Node
315 [Arguments] ${vm_floating_ip}
316 [Documentation] Ping VM floating IP from control node
317 Log ${vm_floating_ip}
318 ${devstack_conn_id}= Get ControlNode Connection
319 Switch Connection ${devstack_conn_id}
320 ${output}= Write Commands Until Prompt ping -c 3 ${vm_floating_ip} 20s
323 Should Contain ${output} 64 bytes
326 [Arguments] ${dest_vm_ip}
327 [Documentation] Ping to the expected destination ip.
328 ${output}= Write Commands Until Expected Prompt ping -c 3 ${dest_vm_ip} ${OS_SYSTEM_PROMPT}
333 [Documentation] Ping to the expected destination ip.
334 ${output}= Write Commands Until Expected Prompt curl -i http://169.254.169.254 ${OS_SYSTEM_PROMPT}
335 Write Commands Until Prompt exit
336 Should Contain ${output} 200
339 [Documentation] Exit the vm instance.
340 ${output}= Write Commands Until Prompt exit
343 Check If Console Is VmInstance
344 [Arguments] ${console}=cirros
345 [Documentation] Check if the session has been able to login to the VM instance
346 ${output}= Write Commands Until Expected Prompt id ${OS_SYSTEM_PROMPT}
347 Should Contain ${output} ${console}
350 [Documentation] Check if the session has been able to login to the VM instance and exit the instance
351 ${rcode}= Run Keyword And Return Status Check If Console Is VmInstance cirros
352 Run Keyword If ${rcode} Write Commands Until Prompt exit
355 [Arguments] ${ip_address}
356 [Documentation] Run Ping command on the IP available as argument
357 ${output}= Write Commands Until Expected Prompt ping -c 3 ${ip_address} ${OS_SYSTEM_PROMPT}
358 Should Contain ${output} 64 bytes
360 Check Metadata Access
361 [Documentation] Try curl on the Metadataurl and check if it is okay
362 ${output}= Write Commands Until Expected Prompt curl -i http://169.254.169.254 ${OS_SYSTEM_PROMPT}
363 Should Contain ${output} 200
365 Execute Command on VM Instance
366 [Arguments] ${net_name} ${vm_ip} ${cmd} ${user}=cirros ${password}=cubswin:)
367 [Documentation] Login to the vm instance using ssh in the network, executes a command inside the VM and returns the ouput.
368 ${devstack_conn_id} = Get ControlNode Connection
369 Switch Connection ${devstack_conn_id}
370 ${net_id} = Get Net Id ${net_name} ${devstack_conn_id}
372 ${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:
374 ${output} = Write Commands Until Expected Prompt ${password} ${OS_SYSTEM_PROMPT}
376 ${rcode} = Run Keyword And Return Status Check If Console Is VmInstance
377 ${output} = Run Keyword If ${rcode} Write Commands Until Expected Prompt ${cmd} ${OS_SYSTEM_PROMPT}
378 [Teardown] Exit From Vm Console
381 Test Operations From Vm Instance
382 [Arguments] ${net_name} ${src_ip} ${dest_ips} ${user}=cirros ${password}=cubswin:)
383 [Documentation] Login to the vm instance using ssh in the network.
384 ${devstack_conn_id}= Get ControlNode Connection
385 Switch Connection ${devstack_conn_id}
387 ${net_id}= Get Net Id ${net_name} ${devstack_conn_id}
388 ${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:
390 ${output}= Write Commands Until Expected Prompt ${password} ${OS_SYSTEM_PROMPT}
392 ${rcode}= Run Keyword And Return Status Check If Console Is VmInstance
393 Run Keyword If ${rcode} Write Commands Until Expected Prompt ifconfig ${OS_SYSTEM_PROMPT}
394 Run Keyword If ${rcode} Write Commands Until Expected Prompt route ${OS_SYSTEM_PROMPT}
395 Run Keyword If ${rcode} Write Commands Until Expected Prompt arp -an ${OS_SYSTEM_PROMPT}
396 : FOR ${dest_ip} IN @{dest_ips}
398 \ ${string_empty}= Run Keyword And Return Status Should Be Empty ${dest_ip}
399 \ Run Keyword If ${string_empty} Continue For Loop
400 \ Run Keyword If ${rcode} Check Ping ${dest_ip}
401 Run Keyword If ${rcode} Check Metadata Access
402 [Teardown] Exit From Vm Console
404 Install Netcat On Controller
405 [Documentation] Installs Netcat on the controller - this probably shouldn't be here
406 ${devstack_conn_id}= Get ControlNode Connection
407 Switch Connection ${devstack_conn_id}
408 ${output}= Write Commands Until Prompt sudo yum install -y nc
412 Test Netcat Operations From Vm Instance
413 [Arguments] ${net_name} ${vm_ip} ${dest_ip} ${additional_args}=${EMPTY} ${port}=12345 ${user}=cirros
414 ... ${password}=cubswin:)
415 [Documentation] Use Netcat to test TCP/UDP connections to the controller
416 ${client_data} Set Variable Test Client Data
417 ${server_data} Set Variable Test Server Data
418 ${devstack_conn_id}= Get ControlNode Connection
419 Switch Connection ${devstack_conn_id}
421 ${output}= Write Commands Until Prompt ( ( echo "${server_data}" | sudo timeout 60 nc -l ${additional_args} ${port} ) & )
423 ${output}= Write Commands Until Prompt sudo netstat -nlap | grep ${port}
425 ${nc_output}= Execute Command on VM Instance ${net_name} ${vm_ip} sudo echo "${client_data}" | nc -v -w 5 ${additional_args} ${dest_ip} ${port}
427 ${output}= Execute Command on VM Instance ${net_name} ${vm_ip} sudo route -n
429 ${output}= Execute Command on VM Instance ${net_name} ${vm_ip} sudo arp -an
431 Should Match Regexp ${nc_output} ${server_data}
434 [Arguments] ${list_of_external_dst_ips}
435 [Documentation] Check reachability with other network's instances.
436 ${rcode}= Run Keyword And Return Status Check If Console Is VmInstance
437 : FOR ${dest_ip} IN @{list_of_external_dst_ips}
439 \ Check Ping ${dest_ip}
442 [Arguments] ${router_name}
443 [Documentation] Create Router and Add Interface to the subnets.
444 ${devstack_conn_id}= Get ControlNode Connection
445 Switch Connection ${devstack_conn_id}
446 ${output}= Write Commands Until Prompt neutron -v router-create ${router_name} 30s
448 Should Contain ${output} Created a new router
451 [Documentation] List Router and return output with neutron client.
452 ${devstack_conn_id}= Get ControlNode Connection
453 Switch Connection ${devstack_conn_id}
454 ${output}= Write Commands Until Prompt neutron router-list 30s
460 [Arguments] ${router_name} ${interface_name}
461 ${devstack_conn_id}= Get ControlNode Connection
462 Switch Connection ${devstack_conn_id}
463 ${output}= Write Commands Until Prompt neutron -v router-interface-add ${router_name} ${interface_name}
465 Should Contain ${output} Added interface
467 Show Router Interface
468 [Arguments] ${router_name}
469 [Documentation] List Router interface associated with given Router and return output with neutron client.
470 ${devstack_conn_id}= Get ControlNode Connection
471 Switch Connection ${devstack_conn_id}
472 ${output}= Write Commands Until Prompt neutron router-port-list ${router_name} -f csv 30s
478 [Arguments] ${router_name} ${network_name}
479 ${devstack_conn_id}= Get ControlNode Connection
480 Switch Connection ${devstack_conn_id}
481 ${output}= Write Commands Until Prompt neutron -v router-gateway-set ${router_name} ${network_name}
483 Should Contain ${output} Set gateway
486 [Arguments] ${router_name} ${interface_name}
487 [Documentation] Remove Interface to the subnets.
488 ${devstack_conn_id}= Get ControlNode Connection
489 Switch Connection ${devstack_conn_id}
490 ${output}= Write Commands Until Prompt neutron -v router-interface-delete ${router_name} ${interface_name}
492 Should Contain ${output} Removed interface from router
495 [Arguments] ${router_name} ${cmd}
496 [Documentation] Update the router with the command. Router name and command should be passed as argument.
497 ${devstack_conn_id} = Get ControlNode Connection
498 Switch Connection ${devstack_conn_id}
499 ${output} = Write Commands Until Prompt neutron router-update ${router_name} ${cmd} 30s
501 Should Contain ${output} Updated
504 [Arguments] ${router_name} ${options}
505 [Documentation] Show information of a given router. Router name and optional fields should be sent as arguments.
506 ${devstack_conn_id} = Get ControlNode Connection
507 Switch Connection ${devstack_conn_id}
508 ${output} = Write Commands Until Prompt neutron router-show ${router_name} ${options} 30s
513 [Arguments] ${router_name}
514 [Documentation] Delete Router and Interface to the subnets.
515 ${devstack_conn_id}= Get ControlNode Connection
516 Switch Connection ${devstack_conn_id}
517 ${output}= Write Commands Until Prompt neutron -v router-delete ${router_name} 60s
519 Should Match Regexp ${output} Deleted router: ${router_name}|Deleted router\\(s\\): ${router_name}
521 Get DumpFlows And Ovsconfig
522 [Arguments] ${openstack_node_ip}
523 [Documentation] Get the OvsConfig and Flow entries from OVS from the Openstack Node
524 Log ${openstack_node_ip}
525 SSHLibrary.Open Connection ${openstack_node_ip} prompt=${DEFAULT_LINUX_PROMPT}
526 Utils.Flexible SSH Login ${OS_USER} ${DEVSTACK_SYSTEM_PASSWORD}
527 SSHLibrary.Set Client Configuration timeout=${default_devstack_prompt_timeout}
528 Write Commands Until Expected Prompt ip -o link ${DEFAULT_LINUX_PROMPT_STRICT}
529 Write Commands Until Expected Prompt ip -o addr ${DEFAULT_LINUX_PROMPT_STRICT}
530 Write Commands Until Expected Prompt ip route ${DEFAULT_LINUX_PROMPT_STRICT}
531 Write Commands Until Expected Prompt arp -an ${DEFAULT_LINUX_PROMPT_STRICT}
532 ${nslist}= Write Commands Until Expected Prompt ip netns list | awk '{print $1}' ${DEFAULT_LINUX_PROMPT_STRICT}
533 @{lines} Split To Lines ${nslist}
534 : FOR ${line} IN @{lines}
535 \ Write Commands Until Expected Prompt sudo ip netns exec ${line} ip -o link ${DEFAULT_LINUX_PROMPT_STRICT}
536 \ Write Commands Until Expected Prompt sudo ip netns exec ${line} ip -o addr ${DEFAULT_LINUX_PROMPT_STRICT}
537 \ Write Commands Until Expected Prompt sudo ip netns exec ${line} ip route ${DEFAULT_LINUX_PROMPT_STRICT}
538 Write Commands Until Expected Prompt sudo ovs-vsctl show ${DEFAULT_LINUX_PROMPT_STRICT}
539 Write Commands Until Expected Prompt sudo ovs-vsctl list Open_vSwitch ${DEFAULT_LINUX_PROMPT_STRICT}
540 Write Commands Until Expected Prompt sudo ovs-ofctl show br-int -OOpenFlow13 ${DEFAULT_LINUX_PROMPT_STRICT}
541 Write Commands Until Expected Prompt sudo ovs-ofctl dump-ports-desc br-int -OOpenFlow13 ${DEFAULT_LINUX_PROMPT_STRICT}
542 Write Commands Until Expected Prompt sudo ovs-ofctl dump-flows br-int -OOpenFlow13 ${DEFAULT_LINUX_PROMPT_STRICT}
543 Write Commands Until Expected Prompt sudo ovs-ofctl dump-groups br-int -OOpenFlow13 ${DEFAULT_LINUX_PROMPT_STRICT}
544 Write Commands Until Expected Prompt sudo ovs-ofctl dump-group-stats br-int -OOpenFlow13 ${DEFAULT_LINUX_PROMPT_STRICT}
546 Get Karaf Log Type From Test Start
547 [Arguments] ${ip} ${test_name} ${type} ${user}=${ODL_SYSTEM_USER} ${password}=${ODL_SYSTEM_PASSWORD} ${prompt}=${ODL_SYSTEM_PROMPT}
548 ... ${log_file}=${WORKSPACE}/${BUNDLEFOLDER}/data/log/karaf.log
549 ${cmd} Set Variable sed '1,/ROBOT MESSAGE: Starting test ${test_name}/d' ${log_file} | grep '${type}'
550 ${output} Run Command On Controller ${ip} ${cmd} ${user} ${password} ${prompt}
553 Get Karaf Log Types From Test Start
554 [Arguments] ${ip} ${test_name} ${types} ${user}=${ODL_SYSTEM_USER} ${password}=${ODL_SYSTEM_PASSWORD} ${prompt}=${ODL_SYSTEM_PROMPT}
555 ... ${log_file}=${WORKSPACE}/${BUNDLEFOLDER}/data/log/karaf.log
556 : FOR ${type} IN @{types}
557 \ Get Karaf Log Type From Test Start ${ip} ${test_name} ${type} ${user} ${password}
558 \ ... ${prompt} ${log_file}
560 Get Karaf Log Events From Test Start
561 [Arguments] ${test_name} ${user}=${ODL_SYSTEM_USER} ${password}=${ODL_SYSTEM_PASSWORD} ${prompt}=${ODL_SYSTEM_PROMPT}
562 ${log_types} = Create List ERROR WARN Exception
563 Run Keyword If 0 < ${NUM_ODL_SYSTEM} Get Karaf Log Types From Test Start ${ODL_SYSTEM_IP} ${test_name} ${log_types}
564 Run Keyword If 1 < ${NUM_ODL_SYSTEM} Get Karaf Log Types From Test Start ${ODL_SYSTEM_2_IP} ${test_name} ${log_types}
565 Run Keyword If 2 < ${NUM_ODL_SYSTEM} Get Karaf Log Types From Test Start ${ODL_SYSTEM_3_IP} ${test_name} ${log_types}
567 Get ControlNode Connection
568 ${control_conn_id}= SSHLibrary.Open Connection ${OS_CONTROL_NODE_IP} prompt=${DEFAULT_LINUX_PROMPT_STRICT}
569 Utils.Flexible SSH Login ${OS_USER} ${DEVSTACK_SYSTEM_PASSWORD}
570 SSHLibrary.Set Client Configuration timeout=30s
571 Source Password force=yes
572 [Return] ${control_conn_id}
575 [Documentation] Get the OvsConfig and Flow entries from all Openstack nodes
576 Run Keyword If 0 < ${NUM_OS_SYSTEM} Get DumpFlows And Ovsconfig ${OS_CONTROL_NODE_IP}
577 Run Keyword If 1 < ${NUM_OS_SYSTEM} Get DumpFlows And Ovsconfig ${OS_COMPUTE_1_IP}
578 Run Keyword If 2 < ${NUM_OS_SYSTEM} Get DumpFlows And Ovsconfig ${OS_COMPUTE_2_IP}
580 Get Test Teardown Debugs
581 [Arguments] ${test_name}=${TEST_NAME}
583 Run Keyword And Ignore Error Get Model Dump ${HA_PROXY_IP}
584 Get Karaf Log Events From Test Start ${test_name}
586 Get Suite Teardown Debugs
588 Get Model Dump ${HA_PROXY_IP}
591 [Arguments] @{vm_indices}
592 [Documentation] Run these commands for debugging, it can list state of VM instances and ip information in control node
593 ${devstack_conn_id}= Get ControlNode Connection
594 Switch Connection ${devstack_conn_id}
595 ${output}= Write Commands Until Prompt sudo ip netns list
597 : FOR ${index} IN @{vm_indices}
598 \ ${output}= Write Commands Until Prompt nova show ${index} 30s
606 Create Security Group
607 [Arguments] ${sg_name} ${desc}
608 ${devstack_conn_id}= Get ControlNode Connection
609 Switch Connection ${devstack_conn_id}
610 ${output}= Write Commands Until Prompt nova secgroup-create ${sg_name} ${desc} 40s
614 [Arguments] ${direction} ${protocol} ${min_port} ${max_port} ${remote_ip} ${sg_name}
615 ${devstack_conn_id}= Get ControlNode Connection
616 Switch Connection ${devstack_conn_id}
617 ${output}= Write Commands Until Prompt neutron security-group-rule-create --direction ${direction} --protocol ${protocol} --port-range-min ${min_port} --port-range-max ${max_port} --remote-ip-prefix ${remote_ip} ${sg_name}
620 Neutron Security Group Show
621 [Arguments] ${SecurityGroupRuleName} ${additional_args}=${EMPTY}
622 [Documentation] Displays the neutron security group configurations that belongs to a given neutron security group name
623 ${devstack_conn_id}= Get ControlNode Connection
624 Switch Connection ${devstack_conn_id}
625 ${cmd}= Set Variable neutron security-group-show ${SecurityGroupRuleName} ${additional_args}
627 ${output}= Write Commands Until Prompt ${cmd} 30s
633 [Arguments] ${PortName} ${additional_args}=${EMPTY}
634 [Documentation] Display the port configuration that belong to a given neutron port
635 ${devstack_conn_id}= Get ControlNode Connection
636 Switch Connection ${devstack_conn_id}
637 ${cmd}= Set Variable neutron port-show ${PortName} ${additional_args}
639 ${output}= Write Commands Until Prompt ${cmd} 30s
644 Neutron Security Group Create
645 [Arguments] ${SecurityGroupName} ${additional_args}=${EMPTY}
646 [Documentation] Create a security group with specified name ,description & protocol value according to security group template
647 ${devstack_conn_id}= Get ControlNode Connection
648 Switch Connection ${devstack_conn_id}
649 ${cmd}= Set Variable neutron security-group-create ${SecurityGroupName} ${additional_args}
651 ${output}= Write Commands Until Prompt ${cmd} 30s
653 Should Contain ${output} Created a new security_group
654 ${sgp_id}= Should Match Regexp ${output} [0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}
657 [Return] ${output} ${sgp_id}
659 Neutron Security Group Update
660 [Arguments] ${SecurityGroupName} ${additional_args}=${EMPTY}
661 [Documentation] Updating security groups
662 ${devstack_conn_id}= Get ControlNode Connection
663 Switch Connection ${devstack_conn_id}
664 ${cmd}= Set Variable neutron security-group-update ${SecurityGroupName} ${additional_args}
666 ${output}= Write Commands Until Prompt ${cmd} 30s
672 [Arguments] ${sg_name}
673 [Documentation] Delete Security group
674 ${devstack_conn_id}= Get ControlNode Connection
675 Switch Connection ${devstack_conn_id}
676 ${output}= Write Commands Until Prompt neutron security-group-delete ${sg_name} 40s
678 Should Match Regexp ${output} Deleted security_group: ${sg_name}|Deleted security_group\\(s\\): ${sg_name}
681 Neutron Security Group Rule Create
682 [Arguments] ${Security_group_name} &{Kwargs}
683 [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]} ..."
684 ${devstack_conn_id}= Get ControlNode Connection
685 Switch Connection ${devstack_conn_id}
686 Run Keyword If ${Kwargs} Log ${Kwargs}
687 ${description} Run Keyword If ${Kwargs} Pop From Dictionary ${Kwargs} description default=${None}
688 ${direction} Run Keyword If ${Kwargs} Pop From Dictionary ${Kwargs} direction default=${None}
689 ${ethertype} Run Keyword If ${Kwargs} Pop From Dictionary ${Kwargs} ethertype default=${None}
690 ${port_range_max} Run Keyword If ${Kwargs} Pop From Dictionary ${Kwargs} port_range_max default=${None}
691 ${port_range_min} Run Keyword If ${Kwargs} Pop From Dictionary ${Kwargs} port_range_min default=${None}
692 ${protocol} Run Keyword If ${Kwargs} Pop From Dictionary ${Kwargs} protocol default=${None}
693 ${remote_group_id} Run Keyword If ${Kwargs} Pop From Dictionary ${Kwargs} remote_group_id default=${None}
694 ${remote_ip_prefix} Run Keyword If ${Kwargs} Pop From Dictionary ${Kwargs} remote_ip_prefix default=${None}
695 ${cmd}= Set Variable neutron security-group-rule-create ${Security_group_name}
696 ${cmd}= Run Keyword If '${description}'!='None' Catenate ${cmd} --description ${description}
697 ... ELSE Catenate ${cmd}
698 ${cmd}= Run Keyword If '${direction}'!='None' Catenate ${cmd} --direction ${direction}
699 ... ELSE Catenate ${cmd}
700 ${cmd}= Run Keyword If '${ethertype}'!='None' Catenate ${cmd} --ethertype ${ethertype}
701 ... ELSE Catenate ${cmd}
702 ${cmd}= Run Keyword If '${port_range_max}'!='None' Catenate ${cmd} --port_range_max ${port_range_max}
703 ... ELSE Catenate ${cmd}
704 ${cmd}= Run Keyword If '${port_range_min}'!='None' Catenate ${cmd} --port_range_min ${port_range_min}
705 ... ELSE Catenate ${cmd}
706 ${cmd}= Run Keyword If '${protocol}'!='None' Catenate ${cmd} --protocol ${protocol}
707 ... ELSE Catenate ${cmd}
708 ${cmd}= Run Keyword If '${remote_group_id}'!='None' Catenate ${cmd} --remote_group_id ${remote_group_id}
709 ... ELSE Catenate ${cmd}
710 ${cmd}= Run Keyword If '${remote_ip_prefix}'!='None' Catenate ${cmd} --remote_ip_prefix ${remote_ip_prefix}
711 ... ELSE Catenate ${cmd}
712 ${output}= Write Commands Until Prompt ${cmd} 30s
713 ${rule_id}= Should Match Regexp ${output} [0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}
715 Should Contain ${output} Created a new security_group_rule
717 [Return] ${output} ${rule_id}
719 Create Neutron Port With Additional Params
720 [Arguments] ${network_name} ${port_name} ${additional_args}=${EMPTY}
721 [Documentation] Create Port With given additional parameters
722 ${devstack_conn_id}= Get ControlNode Connection
723 Switch Connection ${devstack_conn_id}
724 ${cmd}= Set Variable neutron -v port-create ${network_name} --name ${port_name} ${additional_args}
726 ${OUTPUT}= Write Commands Until Prompt ${cmd} 30s
728 Should Contain ${output} Created a new port
729 ${port_id}= Should Match Regexp ${OUTPUT} [0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}
732 [Return] ${OUTPUT} ${port_id}
735 [Arguments] ${portName_list}
736 [Documentation] Retrieve the port MacAddr for the given list of port name and return the MAC address list.
737 ${devstack_conn_id}= Get ControlNode Connection
738 Switch Connection ${devstack_conn_id}
739 ${MacAddr-list} Create List
740 : FOR ${portName} IN @{portName_list}
741 \ ${output} = Write Commands Until Prompt neutron port-list | grep "${portName}" | awk '{print $6}' 30s
743 \ ${splitted_output}= Split String ${output} ${EMPTY}
744 \ ${macAddr}= Get from List ${splitted_output} 0
746 \ Append To List ${MacAddr-list} ${macAddr}
747 [Return] ${MacAddr-list}