blob: a5322efb4814272c2e09d31fe816c6fcc51476e7 [file] [log] [blame]
DR695Hccff30b2017-02-17 18:44:24 -05001*** Settings ***
2Documentation Testing openstack.
3Library OperatingSystem
4Library SSHLibrary
5Library RequestsLibrary
6Library JSONUtils
7Library OpenstackLibrary
8Library HEATUtils
9Library Collections
10Resource ../../resources/openstack/keystone_interface.robot
11Resource ../../resources/openstack/nova_interface.robot
12Resource ../../resources/openstack/heat_interface.robot
13Resource ../../resources/ssh/files.robot
14Resource ../../resources/ssh/processes.robot
15Resource ../appc_interface.robot
16Resource packet_generator_interface.robot
17Resource validate_common.robot
18
19
20*** Variables ***
21${ASSETS} ${EXECDIR}/robot/assets/
22
23*** Keywords ***
24Validate Firewall Stack
jf986099c63292017-03-09 15:28:42 -050025 [Documentation] Identifies and validates the firewall servers in the VFW Stack
jf98603b22a2d2017-03-01 19:43:28 -050026 [Arguments] ${STACK_NAME}
DR695Hccff30b2017-02-17 18:44:24 -050027 Run Openstack Auth Request auth
28 ${stack_info}= Wait for Stack to Be Deployed auth ${STACK_NAME}
29 ${stack_id}= Get From Dictionary ${stack_info} id
jf98603b22a2d2017-03-01 19:43:28 -050030 ${server_list}= Get Openstack Servers auth
DR695Hccff30b2017-02-17 18:44:24 -050031
32 ${vpg_unprotected_ip}= Get From Dictionary ${stack_info} vpg_private_ip_0
33 ${vsn_protected_ip}= Get From Dictionary ${stack_info} vsn_private_ip_0
34 ${vpg_name_0}= Get From Dictionary ${stack_info} vpg_name_0
jf98603b22a2d2017-03-01 19:43:28 -050035 ${vfw_public_ip}= Get Server Ip ${server_list} ${stack_info} vfw_name_0 network_name=public
36 ${vpg_public_ip}= Get Server Ip ${server_list} ${stack_info} vpg_name_0 network_name=public
37 ${vsn_public_ip}= Get Server Ip ${server_list} ${stack_info} vsn_name_0 network_name=public
38
DR695Hccff30b2017-02-17 18:44:24 -050039 Wait For Server ${vfw_public_ip}
40 Wait For Server ${vpg_public_ip}
41 Wait For Server ${vsn_public_ip}
42 Log Accessed all servers
jf98603b22a2d2017-03-01 19:43:28 -050043 Wait For Firewall ${vfw_public_ip}
44 Wait For Packet Generator ${vpg_public_ip}
45 Wait For Packet Sink ${vsn_public_ip}
DR695Hccff30b2017-02-17 18:44:24 -050046 Log All server processes up
jf9860b85b1642017-03-02 11:24:11 -050047 ${vpg_oam_ip}= Get From Dictionary ${stack_info} vpg_private_ip_1
48 ${appc}= Create Mount Point In APPC ${vpg_name_0} ${vpg_oam_ip}
DR695Hccff30b2017-02-17 18:44:24 -050049 Wait For Packets ${vpg_public_ip} ${vpg_unprotected_ip} ${vsn_protected_ip} ${vsn_public_ip}
jf98603b22a2d2017-03-01 19:43:28 -050050
DR695Hccff30b2017-02-17 18:44:24 -050051Wait For Packets
52 [Documentation] Final vfw validation that packets are flowing from the pgn VM to the snk VM
jf98603b22a2d2017-03-01 19:43:28 -050053 [Arguments] ${vpg_public_ip} ${vpg_unprotected_ip} ${vsn_protected_ip} ${vsn_public_ip}
DR695Hccff30b2017-02-17 18:44:24 -050054 ${resp}= Enable Stream ${vpg_public_ip}
55 Should Be Equal As Strings ${resp.status_code} 200
jf98603b22a2d2017-03-01 19:43:28 -050056 ${syslog_message}= Catenate UDP: short packet: From ${vpg_unprotected_ip}:.* to ${vsn_protected_ip}:.*
DR695Hccff30b2017-02-17 18:44:24 -050057 Tail File on Host Until ${vsn_public_ip} UDP: /var/log/syslog ${syslog_message} timeout=120s
jf98603b22a2d2017-03-01 19:43:28 -050058 Disable All Streams ${vpg_public_ip}
DR695Hccff30b2017-02-17 18:44:24 -050059
60
61Wait For Firewall
62 [Documentation] Wait for the defined firewall processes to come up
jf98603b22a2d2017-03-01 19:43:28 -050063 [Arguments] ${ip}
64 Wait for Process on Host ./vpp_measurement_reporter ${ip}
65 Wait for Process on Host vpp -c /etc/vpp/startup.conf ${ip}
DR695Hccff30b2017-02-17 18:44:24 -050066
67Wait For Packet Generator
68 [Documentation] Wait for the defined packet generator processes to come up
jf98603b22a2d2017-03-01 19:43:28 -050069 [Arguments] ${ip}
70 Wait for Process on Host vpp -c /etc/vpp/startup.conf ${ip}
DR695Hccff30b2017-02-17 18:44:24 -050071 Wait Until Keyword Succeeds 180s 5s Tail File on Host Until ${ip} Honeycomb /var/log/honeycomb/honeycomb.log - Honeycomb initialized options=-c +0 timeout=120s
jf98603b22a2d2017-03-01 19:43:28 -050072 Run Keyword And Ignore Error Wait for Process on Host run_traffic_fw_demo.sh ${ip} timeout=60s
DR695Hccff30b2017-02-17 18:44:24 -050073 Pkill Process On Host "/bin/bash ./run_traffic_fw_demo.sh" ${ip}
jf98603b22a2d2017-03-01 19:43:28 -050074
DR695Hccff30b2017-02-17 18:44:24 -050075Wait For Packet Sink
76 [Documentation] Wait for the defined packet sink processes to come up
77 [Arguments] ${ip}
jf98603b22a2d2017-03-01 19:43:28 -050078 Log noting to check on ${ip}