DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Documentation The main interface for interacting with SDN-GC. It handles low level stuff like managing the http request library and SDN-GC required fields |
| 3 | Library RequestsLibrary |
DR695H | 18872bc | 2019-06-13 16:16:52 -0400 | [diff] [blame] | 4 | Library ONAPLibrary.Utilities |
DR695H | 910097e | 2019-05-08 13:55:32 -0400 | [diff] [blame] | 5 | Library SeleniumLibrary |
DR695H | 8a61013 | 2019-07-01 16:16:02 -0400 | [diff] [blame] | 6 | Library OperatingSystem |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 7 | Library Collections |
| 8 | Library String |
DR695H | f6948fa | 2019-07-11 18:03:00 -0400 | [diff] [blame] | 9 | Library ONAPLibrary.ServiceMapping WITH NAME ServiceMapping |
| 10 | Library ONAPLibrary.PreloadData WITH NAME Preload |
DR695H | a6ce951 | 2019-07-19 14:25:43 -0400 | [diff] [blame] | 11 | Library ONAPLibrary.Templating WITH NAME Templating |
DR695H | f0ff3b8 | 2019-07-19 11:08:13 -0400 | [diff] [blame] | 12 | Library ONAPLibrary.SDNC WITH NAME SDNC |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 13 | Resource global_properties.robot |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 14 | Resource browser_setup.robot |
| 15 | |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 16 | |
| 17 | *** Variables *** |
| 18 | ${PRELOAD_VNF_TOPOLOGY_OPERATION_PATH} /operations/VNF-API:preload-vnf-topology-operation |
DR695H | 8a61013 | 2019-07-01 16:16:02 -0400 | [diff] [blame] | 19 | ${PRELOAD_NETWORK_TOPOLOGY_OPERATION_PATH} /operations/VNF-API:preload-network-topology-operation |
| 20 | ${PRELOAD_GR_TOPOLOGY_OPERATION_PATH} /operations/GENERIC-RESOURCE-API:preload-vf-module-topology-operation |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 21 | ${PRELOAD_VNF_CONFIG_PATH} /config/VNF-API:preload-vnfs/vnf-preload-list |
DR695H | 8a61013 | 2019-07-01 16:16:02 -0400 | [diff] [blame] | 22 | ${PRELOAD_TOPOLOGY_OPERATION_BODY} sdnc |
DR695H | 87b84d0 | 2019-08-02 17:18:13 -0400 | [diff] [blame] | 23 | ${SDNC_INDEX_PATH} /restconf |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 24 | ${SDNCGC_HEALTHCHECK_OPERATION_PATH} /operations/SLI-API:healthcheck |
DR695H | 87b84d0 | 2019-08-02 17:18:13 -0400 | [diff] [blame] | 25 | ${SDNC_REST_ENDPOINT} ${GLOBAL_SDNC_SERVER_PROTOCOL}://${GLOBAL_INJECTED_SDNC_IP_ADDR}:${GLOBAL_SDNC_REST_PORT} |
| 26 | ${SDNC_ADMIN_ENDPOINT} ${GLOBAL_SDNC_SERVER_PROTOCOL}://${GLOBAL_INJECTED_SDNC_PORTAL_IP_ADDR}:${GLOBAL_SDNC_ADMIN_PORT} |
| 27 | ${SDNC_ADMIN_SIGNUP_URL} ${SDNC_ADMIN_ENDPOINT}/signup |
| 28 | ${SDNC_ADMIN_LOGIN_URL} ${SDNC_ADMIN_ENDPOINT}/login |
| 29 | ${SDNC_ADMIN_VNF_PROFILE_URL} ${SDNC_ADMIN_ENDPOINT}/mobility/getVnfProfile |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 30 | |
| 31 | *** Keywords *** |
DR695H | 87b84d0 | 2019-08-02 17:18:13 -0400 | [diff] [blame] | 32 | Run SDNC Health Check |
| 33 | [Documentation] Runs an SDNC healthcheck |
| 34 | ${resp}= SDNC.Run Post Request ${SDNC_REST_ENDPOINT} ${SDNC_INDEX PATH}${SDNCGC_HEALTHCHECK_OPERATION_PATH} data=${None} auth=${GLOBAL_SDNC_AUTHENTICATION} |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 35 | Should Be Equal As Strings ${resp.status_code} 200 |
Jerry Flood | d40619e | 2017-08-24 09:38:48 -0400 | [diff] [blame] | 36 | Should Be Equal As Strings ${resp.json()['output']['response-code']} 200 |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 37 | |
DR695H | 8a61013 | 2019-07-01 16:16:02 -0400 | [diff] [blame] | 38 | Preload Vcpe Networks |
| 39 | Preload Network cpe_public 10.2.0.2 10.2.0.1 |
| 40 | Preload Network cpe_signal 10.4.0.2 10.4.0.1 |
| 41 | Preload Network brg_bng 10.3.0.2 10.3.0.1 |
| 42 | Preload Network bng_mux 10.1.0.10 10.1.0.1 |
| 43 | Preload Network mux_gw 10.5.0.10 10.5.0.1 |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 44 | |
DR695H | 8a61013 | 2019-07-01 16:16:02 -0400 | [diff] [blame] | 45 | Preload Network |
| 46 | [Arguments] ${network_role} ${subnet_start_ip} ${subnet_gateway} |
| 47 | ${name_suffix}= Generate Timestamp |
| 48 | ${network_name}= Catenate SEPARATOR=_ net ${network_role} ${name_suffix} |
| 49 | ${subnet_name}= Catenate SEPARATOR=_ net ${network_role} subnet ${name_suffix} |
| 50 | ${parameters}= Create Dictionary network_role=${network_role} service_type=vCPE network_type=Generic NeutronNet network_name=${network_name} subnet_start_ip=${subnet_start_ip} subnet_gateway=${subnet_gateway} |
DR695H | a6ce951 | 2019-07-19 14:25:43 -0400 | [diff] [blame] | 51 | Templating.Create Environment sdnc ${GLOBAL_TEMPLATE_FOLDER} |
| 52 | ${data}= Templating.Apply Template sdnc ${PRELOAD_TOPOLOGY_OPERATION_BODY}/template.network.jinja ${parameters} |
DR695H | 87b84d0 | 2019-08-02 17:18:13 -0400 | [diff] [blame] | 53 | ${post_resp}= SDNC.Run Post Request ${SDNC_REST_ENDPOINT} ${SDNC_INDEX_PATH}${PRELOAD_NETWORK_TOPOLOGY_OPERATION_PATH} data=${data} auth=${GLOBAL_SDNC_AUTHENTICATION} |
DR695H | 8a61013 | 2019-07-01 16:16:02 -0400 | [diff] [blame] | 54 | [Return] ${network_name} ${subnet_name} |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 55 | |
DR695H | 8a61013 | 2019-07-01 16:16:02 -0400 | [diff] [blame] | 56 | Preload Vcpe vGW |
| 57 | [Arguments] ${brg_mac} ${cpe_network_name} ${cpe_subnet_name} ${mux_gw_net} ${mux_gw_subnet} |
| 58 | ${name_suffix}= Generate Timestamp |
DR695H | 97fec22 | 2019-07-15 13:32:20 -0400 | [diff] [blame] | 59 | ${parameters}= Create Dictionary pub_key=${GLOBAL_INJECTED_PUBLIC_KEY} brg_mac=${brg_mac} cpe_public_net=${cpe_network_name} cpe_public_subnet=${cpe_subnet_name} mux_gw_net=${mux_gw_net} mux_gw_subnet=${mux_gw_subnet} suffix=${name_suffix} oam_onap_net=oam_network_2No2 oam_onap_subnet=oam_network_2No2 public_net_id=${GLOBAL_INJECTED_PUBLIC_NET_ID} |
DR695H | a6ce951 | 2019-07-19 14:25:43 -0400 | [diff] [blame] | 60 | Templating.Create Environment sdnc ${GLOBAL_TEMPLATE_FOLDER} |
| 61 | ${data}= Templating.Apply Template sdnc ${PRELOAD_TOPOLOGY_OPERATION_BODY}/template.vcpe_vgw_vfmodule.jinja ${parameters} |
DR695H | 87b84d0 | 2019-08-02 17:18:13 -0400 | [diff] [blame] | 62 | ${post_resp}= SDNC.Run Post Request ${SDNC_REST_ENDPOINT} ${SDNC_INDEX_PATH}${PRELOAD_VNF_TOPOLOGY_OPERATION_PATH} data=${data} auth=${GLOBAL_SDNC_AUTHENTICATION} |
DR695H | 8a61013 | 2019-07-01 16:16:02 -0400 | [diff] [blame] | 63 | |
| 64 | Preload Vcpe vGW Gra |
| 65 | [Arguments] ${brg_mac} ${cpe_public_network_name} ${cpe_public_subnet_name} ${mux_gw_net} ${mux_gw_subnet} |
| 66 | ${name_suffix}= Generate Timestamp |
DR695H | 97fec22 | 2019-07-15 13:32:20 -0400 | [diff] [blame] | 67 | ${parameters}= Create Dictionary pub_key=${GLOBAL_INJECTED_PUBLIC_KEY} brg_mac=${brg_mac} cpe_public_net=${cpe_public_network_name} cpe_public_subnet=${cpe_public_subnet_name} mux_gw_net=${mux_gw_net} mux_gw_subnet=${mux_gw_subnet} suffix=${name_suffix} oam_onap_net=oam_network_2No2 oam_onap_subnet=oam_network_2No2 public_net_id=${GLOBAL_INJECTED_PUBLIC_NET_ID} |
DR695H | a6ce951 | 2019-07-19 14:25:43 -0400 | [diff] [blame] | 68 | Templating.Create Environment sdnc ${GLOBAL_TEMPLATE_FOLDER} |
| 69 | ${data}= Templating.Apply Template sdnc ${PRELOAD_TOPOLOGY_OPERATION_BODY}/template.vcpe_gwgra_vfmodule.jinja ${parameters} |
DR695H | 87b84d0 | 2019-08-02 17:18:13 -0400 | [diff] [blame] | 70 | ${post_resp}= SDNC.Run Post Request ${SDNC_REST_ENDPOINT} ${SDNC_INDEX_PATH}${PRELOAD_GR_TOPOLOGY_OPERATION_PATH} data=${data} auth=${GLOBAL_SDNC_AUTHENTICATION} |
DR695H | 8a61013 | 2019-07-01 16:16:02 -0400 | [diff] [blame] | 71 | |
| 72 | Preload Generic VfModule |
| 73 | [Arguments] ${service_instance_id} ${vnf_model} ${model_customization_name} ${short_model_customization_name} ${cpe_public_network_name}=None ${cpe_public_subnet_name}=None ${cpe_signal_network_name}=None ${cpe_signal_subnet_name}=None |
| 74 | ${name_suffix}= Generate Timestamp |
DR695H | 8a61013 | 2019-07-01 16:16:02 -0400 | [diff] [blame] | 75 | ${vfmodule_name}= Catenate SEPARATOR=_ vf ${short_model_customization_name} ${name_suffix} |
| 76 | #TODO this became a mess, need to fix |
DR695H | 97fec22 | 2019-07-15 13:32:20 -0400 | [diff] [blame] | 77 | ${parameters}= Create Dictionary pub_key=${GLOBAL_INJECTED_PUBLIC_KEY} suffix=${name_suffix} mr_ip_addr=${GLOBAL_INJECTED_MR_IP_ADDR} mr_ip_port=${GLOBAL_MR_SERVER_PORT} |
DR695H | 8a61013 | 2019-07-01 16:16:02 -0400 | [diff] [blame] | 78 | Set To Dictionary ${parameters} oam_onap_net=oam_network_2No2 oam_onap_subnet=oam_network_2No2 cpe_public_net=${cpe_public_network_name} cpe_public_subnet=${cpe_public_subnet_name} |
| 79 | Set To Dictionary ${parameters} cpe_signal_subnet=${cpe_signal_subnet_name} cpe_signal_net=${cpe_signal_network_name} public_net_id=${GLOBAL_INJECTED_PUBLIC_NET_ID} |
| 80 | # vnf_type and generic_vnf_type are identical |
| 81 | Set To Dictionary ${parameters} vnf_type=${model_customization_name} generic_vnf_type=${model_customization_name} generic_vnf_name=${model_customization_name} vnf_name=${vfmodule_name} |
| 82 | Set To Dictionary ${parameters} service_type=${service_instance_id} sdnc_oam_ip=${GLOBAL_INJECTED_SDNC_IP_ADDR} |
DR695H | 87b84d0 | 2019-08-02 17:18:13 -0400 | [diff] [blame] | 83 | ${post_resp}= SDNC.Preload Vfmodule ${SDNC_REST_ENDPOINT} ${SDNC_INDEX_PATH}${PRELOAD_VNF_TOPOLOGY_OPERATION_PATH} ${GLOBAL_TEMPLATE_FOLDER} ${PRELOAD_TOPOLOGY_OPERATION_BODY}/template.vcpe_infra_vfmodule.jinja ${parameters} |
DR695H | 8a61013 | 2019-07-01 16:16:02 -0400 | [diff] [blame] | 84 | [Return] ${post_resp} |
| 85 | |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 86 | Preload Vnf |
DR695H | 70861af | 2019-07-30 17:25:33 -0400 | [diff] [blame] | 87 | [Arguments] ${service_type_uuid} ${generic_vnf_name} ${generic_vnf_type} ${vf_module_name} ${vf_modules} ${vnf} ${uuid} ${service} |
Jerry Flood | 3a169a3 | 2017-12-01 12:39:10 -0500 | [diff] [blame] | 88 | ${base_vf_module_type}= Catenate |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 89 | ${closedloop_vf_module}= Create Dictionary |
DR695H | 102f320 | 2019-05-24 15:05:03 -0400 | [diff] [blame] | 90 | ServiceMapping.Set Directory default ${GLOBAL_SERVICE_MAPPING_DIRECTORY} |
DR695H | 1496bf5 | 2019-07-31 16:28:55 -0400 | [diff] [blame] | 91 | ${templates}= ServiceMapping.Get Service Template Mapping default ${service} ${vnf} |
DR695H | 910097e | 2019-05-08 13:55:32 -0400 | [diff] [blame] | 92 | :FOR ${vf_module} IN @{vf_modules} |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 93 | \ ${vf_module_type}= Get From Dictionary ${vf_module} name |
Brian Freeman | 12ff184 | 2019-02-13 13:54:48 -0500 | [diff] [blame] | 94 | # need to pass in vnf_index if non-zero |
| 95 | \ ${dict} Run Keyword If "${generic_vnf_name}".endswith('0') Get From Mapping With Index ${templates} ${vf_module} 0 |
DR695H | 67afaca | 2019-07-23 17:13:23 -0400 | [diff] [blame] | 96 | ... ELSE IF "${generic_vnf_name}".endswith('1') Get From Mapping With Index ${templates} ${vf_module} 1 |
| 97 | ... ELSE IF "${generic_vnf_name}".endswith('2') Get From Mapping With Index ${templates} ${vf_module} 2 |
| 98 | ... ELSE Get From Mapping ${templates} ${vf_module} |
Brian Freeman | ea834f7 | 2019-04-22 14:34:02 -0500 | [diff] [blame] | 99 | # skip this iteration if no template |
| 100 | \ ${test_dict_length} = Get Length ${dict} |
| 101 | \ Continue For Loop If ${test_dict_length} == 0 |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 102 | \ ${filename}= Get From Dictionary ${dict} template |
| 103 | \ ${base_vf_module_type}= Set Variable If '${dict['isBase']}' == 'true' ${vf_module_type} ${base_vf_module_type} |
| 104 | \ ${closedloop_vf_module}= Set Variable If '${dict['isBase']}' == 'false' ${vf_module} ${closedloop_vf_module} |
Jerry Flood | d40619e | 2017-08-24 09:38:48 -0400 | [diff] [blame] | 105 | \ ${vf_name}= Update Module Name ${dict} ${vf_module_name} |
Brian Freeman | f38a834 | 2019-04-18 10:50:19 -0500 | [diff] [blame] | 106 | # Admin portal update no longer |
| 107 | #\ Preload Vnf Profile ${vf_module_type} |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 108 | \ Preload One Vnf Topology ${service_type_uuid} ${generic_vnf_name} ${generic_vnf_type} ${vf_name} ${vf_module_type} ${service} ${filename} ${uuid} |
Jerry Flood | d40619e | 2017-08-24 09:38:48 -0400 | [diff] [blame] | 109 | [Return] ${base_vf_module_type} ${closedloop_vf_module} |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 110 | |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 111 | Update Module Name |
| 112 | [Arguments] ${dict} ${vf_module_name} |
| 113 | Return From Keyword If 'prefix' not in ${dict} ${vf_module_name} |
| 114 | Return From Keyword If '${dict['prefix']}' == '' ${vf_module_name} |
Jerry Flood | d40619e | 2017-08-24 09:38:48 -0400 | [diff] [blame] | 115 | ${name}= Replace String ${vf_module_name} Vfmodule_ ${dict['prefix']} |
| 116 | [Return] ${name} |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 117 | |
Brian Freeman | 12ff184 | 2019-02-13 13:54:48 -0500 | [diff] [blame] | 118 | Get From Mapping With Index |
| 119 | [Documentation] Retrieve the appropriate prelad template entry for the passed vf_module |
| 120 | [Arguments] ${templates} ${vf_module} ${vnf_index}=0 |
| 121 | ${vf_module_name}= Get From DIctionary ${vf_module} name |
DR695H | 910097e | 2019-05-08 13:55:32 -0400 | [diff] [blame] | 122 | :FOR ${template} IN @{templates} |
Brian Freeman | 12ff184 | 2019-02-13 13:54:48 -0500 | [diff] [blame] | 123 | \ Return From Keyword If '${template['name_pattern']}' in '${vf_module_name}' and ('${template['vnf_index']}' == '${vnf_index}') ${template} |
Brian Freeman | 37daa80 | 2019-04-26 12:06:11 -0500 | [diff] [blame] | 124 | ${result}= Create Dictionary |
| 125 | [Return] ${result} |
Brian Freeman | 12ff184 | 2019-02-13 13:54:48 -0500 | [diff] [blame] | 126 | |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 127 | Get From Mapping |
Jerry Flood | d40619e | 2017-08-24 09:38:48 -0400 | [diff] [blame] | 128 | [Documentation] Retrieve the appropriate prelad template entry for the passed vf_module |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 129 | [Arguments] ${templates} ${vf_module} |
| 130 | ${vf_module_name}= Get From DIctionary ${vf_module} name |
DR695H | 910097e | 2019-05-08 13:55:32 -0400 | [diff] [blame] | 131 | :FOR ${template} IN @{templates} |
Jerry Flood | d40619e | 2017-08-24 09:38:48 -0400 | [diff] [blame] | 132 | \ Return From Keyword If '${template['name_pattern']}' in '${vf_module_name}' ${template} |
Brian Freeman | 37daa80 | 2019-04-26 12:06:11 -0500 | [diff] [blame] | 133 | ${result}= Create Dictionary |
| 134 | [Return] ${result} |
Jerry Flood | d40619e | 2017-08-24 09:38:48 -0400 | [diff] [blame] | 135 | |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 136 | Preload One Vnf Topology |
| 137 | [Arguments] ${service_type_uuid} ${generic_vnf_name} ${generic_vnf_type} ${vf_module_name} ${vf_module_type} ${service} ${filename} ${uuid} |
| 138 | Return From Keyword If '${filename}' == '' |
DR695H | f6948fa | 2019-07-11 18:03:00 -0400 | [diff] [blame] | 139 | ${parameters}= Get Template Parameters ${generic_vnf_name} ${filename} ${uuid} ${service} |
Jerry Flood | 81d33fb | 2017-11-21 16:21:21 -0500 | [diff] [blame] | 140 | Set To Dictionary ${parameters} generic_vnf_name=${generic_vnf_name} generic_vnf_type=${generic_vnf_type} service_type=${service_type_uuid} vf_module_name=${vf_module_name} vf_module_type=${vf_module_type} |
DR695H | a6ce951 | 2019-07-19 14:25:43 -0400 | [diff] [blame] | 141 | Templating.Create Environment sdnc ${GLOBAL_TEMPLATE_FOLDER} |
| 142 | ${data}= Templating.Apply Template sdnc ${PRELOAD_TOPOLOGY_OPERATION_BODY}/preload.jinja ${parameters} |
DR695H | 87b84d0 | 2019-08-02 17:18:13 -0400 | [diff] [blame] | 143 | ${post_resp}= SDNC.Run Post Request ${SDNC_REST_ENDPOINT} ${SDNC_INDEX_PATH}${PRELOAD_VNF_TOPOLOGY_OPERATION_PATH} data=${data} auth=${GLOBAL_SDNC_AUTHENTICATION} |
DR695H | 3148028 | 2019-07-12 18:34:15 -0400 | [diff] [blame] | 144 | Should Be Equal As Strings ${post_resp.json()['output']['response-code']} 200 |
DR695H | 87b84d0 | 2019-08-02 17:18:13 -0400 | [diff] [blame] | 145 | ${get_resp}= SDNC.Run Get Request ${SDNC_REST_ENDPOINT} ${SDNC_INDEX_PATH}${PRELOAD_VNF_CONFIG_PATH}/${vf_module_name}/${vf_module_type} auth=${GLOBAL_SDNC_AUTHENTICATION} |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 146 | |
| 147 | Get Template Parameters |
DR695H | f6948fa | 2019-07-11 18:03:00 -0400 | [diff] [blame] | 148 | [Arguments] ${generic_vnf_name} ${template} ${uuid} ${service} |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 149 | ${hostid}= Get Substring ${uuid} -4 |
Jerry Flood | 81d33fb | 2017-11-21 16:21:21 -0500 | [diff] [blame] | 150 | ${ecompnet}= Evaluate (${GLOBAL_BUILD_NUMBER}%128)+128 |
| 151 | |
DR695H | 2d8bd80 | 2019-08-02 10:56:54 -0400 | [diff] [blame] | 152 | ${valuemap}= Get Globally Injected Parameters |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 153 | # update the value map with unique values. |
Bin Yang | 326219a | 2018-05-31 05:35:33 +0000 | [diff] [blame] | 154 | Set To Dictionary ${valuemap} uuid=${uuid} hostid=${hostid} ecompnet=${ecompnet} generic_vnf_name=${generic_vnf_name} |
Jerry Flood | 81d33fb | 2017-11-21 16:21:21 -0500 | [diff] [blame] | 155 | |
| 156 | # |
| 157 | # Mash together the defaults dict with the test case dict to create the set of |
| 158 | # preload parameters |
| 159 | # |
DR695H | f6948fa | 2019-07-11 18:03:00 -0400 | [diff] [blame] | 160 | Preload.Set Directory preload ./demo/preload_data |
| 161 | ${defaults}= Get Default Preload Data preload |
| 162 | ${template}= Get Preload Data preload ${service} ${template} |
Jerry Flood | 81d33fb | 2017-11-21 16:21:21 -0500 | [diff] [blame] | 163 | # add all of the defaults to template... |
| 164 | @{keys}= Get Dictionary Keys ${defaults} |
DR695H | 910097e | 2019-05-08 13:55:32 -0400 | [diff] [blame] | 165 | :FOR ${key} IN @{keys} |
Jerry Flood | 81d33fb | 2017-11-21 16:21:21 -0500 | [diff] [blame] | 166 | \ ${value}= Get From Dictionary ${defaults} ${key} |
| 167 | \ Set To Dictionary ${template} ${key} ${value} |
| 168 | |
| 169 | # |
| 170 | # Get the vnf_parameters to preload |
| 171 | # |
| 172 | ${vnf_parameters}= Resolve VNF Parameters Into Array ${valuemap} ${template} |
Jerry Flood | d40619e | 2017-08-24 09:38:48 -0400 | [diff] [blame] | 173 | ${vnf_parameters_json}= Evaluate json.dumps(${vnf_parameters}) json |
Jerry Flood | 81d33fb | 2017-11-21 16:21:21 -0500 | [diff] [blame] | 174 | ${parameters}= Create Dictionary vnf_parameters=${vnf_parameters_json} |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 175 | [Return] ${parameters} |
Jerry Flood | d40619e | 2017-08-24 09:38:48 -0400 | [diff] [blame] | 176 | |
Jerry Flood | d40619e | 2017-08-24 09:38:48 -0400 | [diff] [blame] | 177 | Resolve VNF Parameters Into Array |
Jerry Flood | 81d33fb | 2017-11-21 16:21:21 -0500 | [diff] [blame] | 178 | [Arguments] ${valuemap} ${from} |
Jerry Flood | d40619e | 2017-08-24 09:38:48 -0400 | [diff] [blame] | 179 | ${vnf_parameters}= Create List |
| 180 | ${keys}= Get Dictionary Keys ${from} |
DR695H | 910097e | 2019-05-08 13:55:32 -0400 | [diff] [blame] | 181 | :FOR ${key} IN @{keys} |
Jerry Flood | d40619e | 2017-08-24 09:38:48 -0400 | [diff] [blame] | 182 | \ ${value}= Get From Dictionary ${from} ${key} |
DR695H | a6ce951 | 2019-07-19 14:25:43 -0400 | [diff] [blame] | 183 | \ ${value}= Templating.Template String ${value} ${valuemap} |
Jerry Flood | d40619e | 2017-08-24 09:38:48 -0400 | [diff] [blame] | 184 | \ ${parameter}= Create Dictionary vnf-parameter-name=${key} vnf-parameter-value=${value} |
| 185 | \ Append To List ${vnf_parameters} ${parameter} |
| 186 | [Return] ${vnf_parameters} |
| 187 | |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 188 | Preload Vnf Profile |
| 189 | [Arguments] ${vnf_name} |
DR695H | 87b84d0 | 2019-08-02 17:18:13 -0400 | [diff] [blame] | 190 | Login To SDNC Admin GUI |
| 191 | Go To ${SDNC_ADMIN_VNF_PROFILE_URL} |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 192 | Click Button xpath=//button[@data-target='#add_vnf_profile'] |
| 193 | Input Text xpath=//input[@id='nf_vnf_type'] ${vnf_name} |
| 194 | Input Text xpath=//input[@id='nf_availability_zone_count'] 999 |
| 195 | Input Text xpath=//input[@id='nf_equipment_role'] robot-ete-test |
| 196 | Click Button xpath=//button[contains(.,'Submit')] |
Jerry Flood | d40619e | 2017-08-24 09:38:48 -0400 | [diff] [blame] | 197 | Page Should Contain VNF Profile |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 198 | Input Text xpath=//div[@id='vnf_profile_filter']//input ${vnf_name} |
Jerry Flood | d40619e | 2017-08-24 09:38:48 -0400 | [diff] [blame] | 199 | Page Should Contain ${vnf_name} |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 200 | |
| 201 | Delete Vnf Profile |
| 202 | [Arguments] ${vnf_name} |
DR695H | 87b84d0 | 2019-08-02 17:18:13 -0400 | [diff] [blame] | 203 | Login To SDNC Admin GUI |
| 204 | Go To ${SDNC_ADMIN_VNF_PROFILE_URL} |
Jerry Flood | d40619e | 2017-08-24 09:38:48 -0400 | [diff] [blame] | 205 | Page Should Contain VNF Profile |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 206 | Input Text xpath=//div[@id='vnf_profile_filter']//input ${vnf_name} |
| 207 | Page Should Contain ${vnf_name} |
Jerry Flood | d40619e | 2017-08-24 09:38:48 -0400 | [diff] [blame] | 208 | Click Button xpath=//button[contains(@onclick, '${vnf_name}')] |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 209 | Page Should Contain Are you sure you want to delete VNF_PROFILE |
| 210 | Click Button xpath=//button[contains(text(), 'Yes')] |
| 211 | Page Should Not Contain ${vnf_name} |
Jerry Flood | d40619e | 2017-08-24 09:38:48 -0400 | [diff] [blame] | 212 | |
DR695H | 87b84d0 | 2019-08-02 17:18:13 -0400 | [diff] [blame] | 213 | Login To SDNC Admin GUI |
| 214 | [Documentation] Login To SDNC Admin GUI |
Jerry Flood | d40619e | 2017-08-24 09:38:48 -0400 | [diff] [blame] | 215 | ## Setup Browser is now being managed by the test case |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 216 | ## Setup Browser |
DR695H | 87b84d0 | 2019-08-02 17:18:13 -0400 | [diff] [blame] | 217 | Go To ${SDNC_ADMIN_SIGNUP_URL} |
Jerry Flood | 81d33fb | 2017-11-21 16:21:21 -0500 | [diff] [blame] | 218 | ##Maximize Browser Window |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 219 | Set Selenium Speed ${GLOBAL_SELENIUM_DELAY} |
| 220 | Set Browser Implicit Wait ${GLOBAL_SELENIUM_BROWSER_IMPLICIT_WAIT} |
DR695H | 87b84d0 | 2019-08-02 17:18:13 -0400 | [diff] [blame] | 221 | Log Logging in to ${SDNC_ADMIN_LOGIN_URL} |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 222 | Handle Proxy Warning |
| 223 | Title Should Be AdminPortal |
DR695H | 18872bc | 2019-06-13 16:16:52 -0400 | [diff] [blame] | 224 | ${uuid}= Generate UUID4 |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 225 | ${shortened_uuid}= Evaluate str("${uuid}")[:12] |
| 226 | ${email}= Catenate ${shortened_uuid}@robotete.com |
| 227 | Input Text xpath=//input[@id='nf_email'] ${email} |
| 228 | Input Password xpath=//input[@id='nf_password'] ${shortened_uuid} |
| 229 | Click Button xpath=//button[@type='submit'] |
| 230 | Wait Until Page Contains User created 20s |
DR695H | 87b84d0 | 2019-08-02 17:18:13 -0400 | [diff] [blame] | 231 | Go To ${SDNC_ADMIN_LOGIN_URL} |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 232 | Input Text xpath=//input[@id='email'] ${email} |
| 233 | Input Password xpath=//input[@id='password'] ${shortened_uuid} |
| 234 | Click Button xpath=//button[@type='submit'] |
| 235 | Title Should Be SDN-C AdminPortal |
DR695H | 87b84d0 | 2019-08-02 17:18:13 -0400 | [diff] [blame] | 236 | Log Logged in to ${SDNC_ADMIN_LOGIN_URL} |
stark, steven | ea4af0c | 2019-08-28 16:11:53 -0700 | [diff] [blame^] | 237 | |
| 238 | Create Preload From JSON |
| 239 | [Documentation] Fill vf-module parameters in an already created preload json file. |
| 240 | [Arguments] ${preload_file} ${api_type} ${vf_module_name} ${vf_module_type} ${vnf_name} ${generic_vnf_type} |
| 241 | Log To Console Uploading ${preload_file} to SDNC |
| 242 | |
| 243 | ${preload_vnf}= Run keyword if "${api_type}"=="gr_api" |
| 244 | ... Preload GR API ${vf_module_name} ${vf_module_type} ${vnf_name} ${generic_vnf_type} ${preload_file} |
| 245 | ... ELSE |
| 246 | ... Preload VNF API ${vf_module_name} ${vf_module_type} ${vnf_name} ${generic_vnf_type} ${preload_file} |
| 247 | |
| 248 | ${uri}= Set Variable If "${api_type}"=="gr_api" ${SDNC_INDEX_PATH}${PRELOAD_GR_TOPOLOGY_OPERATION_PATH} ${SDNC_INDEX_PATH}${PRELOAD_VNF_TOPOLOGY_OPERATION_PATH} |
| 249 | |
| 250 | ${post_resp}= SDNC.Run Post Request ${SDNC_REST_ENDPOINT} ${uri} data=${preload_vnf} auth=${GLOBAL_SDNC_AUTHENTICATION} |
| 251 | Should Be Equal As Strings ${post_resp.json()['output']['response-code']} 200 |
| 252 | [Return] ${post_resp} |
| 253 | |
| 254 | Preload GR API |
| 255 | [Documentation] Retrieves a preload JSON file and fills in service instance values. |
| 256 | [Arguments] ${vnf_name} ${vnf_type} ${generic_vnf_name} ${generic_vnf_type} ${preload_path} |
| 257 | |
| 258 | ${json}= OperatingSystem.Get File ${preload_path} |
| 259 | ${object}= Evaluate json.loads('''${json}''') json |
| 260 | ${req_dict} Create Dictionary vnf-name=${generic_vnf_name} vnf-type=${generic_vnf_type} |
| 261 | set to dictionary ${object["input"]["preload-vf-module-topology-information"]} vnf-topology-identifier-structure=${req_dict} |
| 262 | ${req_dict_new} Create Dictionary vf-module-name=${vnf_name} |
| 263 | set to dictionary ${object["input"]["preload-vf-module-topology-information"]["vf-module-topology"]} vf-module-topology-identifier=${req_dict_new} |
| 264 | ${req_json} Evaluate json.dumps(${object}) json |
| 265 | [Return] ${req_json} |
| 266 | |
| 267 | Preload VNF API |
| 268 | [Documentation] Retrieves a preload JSON file and fills in service instance values. |
| 269 | [Arguments] ${vnf_name} ${vnf_type} ${generic_vnf_name} ${generic_vnf_type} ${preload_path} |
| 270 | |
| 271 | ${json}= OperatingSystem.Get File ${preload_path} |
| 272 | ${object}= Evaluate json.loads('''${json}''') json |
| 273 | ${req_dict} Create Dictionary vnf-name=${vnf_name} vnf-type=${vnf_type} generic-vnf-type=${generic_vnf_type} generic-vnf-name=${generic_vnf_name} |
| 274 | set to dictionary ${object["input"]["vnf-topology-information"]} vnf-topology-identifier=${req_dict} |
| 275 | |
| 276 | ${req_json} Evaluate json.dumps(${object}) json |
| 277 | [Return] ${req_json} |