From ccff30b6e325f359879595998e83bbfe6624c851 Mon Sep 17 00:00:00 2001 From: DR695H Date: Fri, 17 Feb 2017 18:44:24 -0500 Subject: Initial checkin of EopenECOMP testsuite Change-Id: I64a2b6d8cf66169829866b73b3d26a4ff59b0a42 Signed-off-by: DR695H --- .../stack_validation/validate_dns_scaling.robot | 43 ++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 robot/resources/stack_validation/validate_dns_scaling.robot (limited to 'robot/resources/stack_validation/validate_dns_scaling.robot') diff --git a/robot/resources/stack_validation/validate_dns_scaling.robot b/robot/resources/stack_validation/validate_dns_scaling.robot new file mode 100644 index 00000000..f63479ea --- /dev/null +++ b/robot/resources/stack_validation/validate_dns_scaling.robot @@ -0,0 +1,43 @@ +*** Settings *** +Documentation Testing openstack. +Library OperatingSystem +Library SSHLibrary +Library RequestsLibrary +Library JSONUtils +Library OpenstackLibrary +Library HEATUtils +Library Collections +Resource ../../resources/openstack/keystone_interface.robot +Resource ../../resources/openstack/nova_interface.robot +Resource ../../resources/openstack/heat_interface.robot +Resource ../../resources/ssh/files.robot +Resource ../../resources/ssh/processes.robot +Resource packet_generator_interface.robot +Resource validate_common.robot + + +*** Variables *** +${ASSETS} ${EXECDIR}/robot/assets/ + +*** Keywords *** +Validate Dns Scaling Stack + [Documentation] Identifies the servers in the STACK_NAME in the GLOBAL_OPENSTACK_SERVICE_REGION + [Arguments] ${STACK_NAME} + Run Openstack Auth Request auth + ${stack_info}= Wait for Stack to Be Deployed auth ${STACK_NAME} + ${stack_id}= Get From Dictionary ${stack_info} id + ${server_list}= Get Openstack Servers auth + Log ${server_list} + #${vpg_unprotected_ip}= Get From Dictionary ${stack_info} vpg_private_ip_0 + #${vsn_protected_ip}= Get From Dictionary ${stack_info} vsn_private_ip_0 + ${vdns_public_ip}= Get Server Ip ${server_list} ${stack_info} vdns_name_0 network_name=public + Wait For Server ${vdns_public_ip} + Log Accessed all servers + #Wait for vDNS ${vdns_public_ip} + Log All server processes up + +Wait For vDNS + [Documentation] Wait for the defined firewall processes to come up + [Arguments] ${ip} + Wait for Process on Host java DNSServer ${ip} + -- cgit 1.2.3-korg