blob: 114cd4c4e27a4c3cf2dc28f91cafe22b1cad7a64 [file] [log] [blame]
DR695Hccff30b2017-02-17 18:44:24 -05001*** Settings ***
2Documentation The main interface for interacting with SDN-GC. It handles low level stuff like managing the http request library and SDN-GC required fields
3Library RequestsLibrary
DR695H18872bc2019-06-13 16:16:52 -04004Library ONAPLibrary.Utilities
DR695H910097e2019-05-08 13:55:32 -04005Library SeleniumLibrary
DR695H8a610132019-07-01 16:16:02 -04006Library OperatingSystem
DR695Hccff30b2017-02-17 18:44:24 -05007Library Collections
8Library String
DR695Hf6948fa2019-07-11 18:03:00 -04009Library ONAPLibrary.ServiceMapping WITH NAME ServiceMapping
10Library ONAPLibrary.PreloadData WITH NAME Preload
DR695H3bb6cf42019-06-20 15:04:04 -040011Library ONAPLibrary.Templating
DR695Hf0ff3b82019-07-19 11:08:13 -040012Library ONAPLibrary.SDNC WITH NAME SDNC
DR695Hccff30b2017-02-17 18:44:24 -050013Resource global_properties.robot
DR695Hccff30b2017-02-17 18:44:24 -050014Resource browser_setup.robot
15
DR695Hccff30b2017-02-17 18:44:24 -050016
17*** Variables ***
18${PRELOAD_VNF_TOPOLOGY_OPERATION_PATH} /operations/VNF-API:preload-vnf-topology-operation
DR695H8a610132019-07-01 16:16:02 -040019${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
DR695Hccff30b2017-02-17 18:44:24 -050021${PRELOAD_VNF_CONFIG_PATH} /config/VNF-API:preload-vnfs/vnf-preload-list
DR695H8a610132019-07-01 16:16:02 -040022${PRELOAD_TOPOLOGY_OPERATION_BODY} sdnc
DR695Hccff30b2017-02-17 18:44:24 -050023${SDNGC_INDEX_PATH} /restconf
24${SDNCGC_HEALTHCHECK_OPERATION_PATH} /operations/SLI-API:healthcheck
DR695Hbf5a3a32017-06-30 13:09:57 -040025${SDNGC_REST_ENDPOINT} ${GLOBAL_SDNGC_SERVER_PROTOCOL}://${GLOBAL_INJECTED_SDNC_IP_ADDR}:${GLOBAL_SDNGC_REST_PORT}
Gary Wu251aa682018-07-30 15:22:20 -070026${SDNGC_ADMIN_ENDPOINT} ${GLOBAL_SDNGC_SERVER_PROTOCOL}://${GLOBAL_INJECTED_SDNC_PORTAL_IP_ADDR}:${GLOBAL_SDNGC_ADMIN_PORT}
DR695Hccff30b2017-02-17 18:44:24 -050027${SDNGC_ADMIN_SIGNUP_URL} ${SDNGC_ADMIN_ENDPOINT}/signup
28${SDNGC_ADMIN_LOGIN_URL} ${SDNGC_ADMIN_ENDPOINT}/login
29${SDNGC_ADMIN_VNF_PROFILE_URL} ${SDNGC_ADMIN_ENDPOINT}/mobility/getVnfProfile
30
31*** Keywords ***
32Run SDNGC Health Check
33 [Documentation] Runs an SDNGC healthcheck
DR695H31480282019-07-12 18:34:15 -040034 ${auth}= Create List ${GLOBAL_SDNGC_USERNAME} ${GLOBAL_SDNGC_PASSWORD}
DR695Hf0ff3b82019-07-19 11:08:13 -040035 ${resp}= SDNC.Run Post Request ${SDNGC_REST_ENDPOINT} ${SDNGC_INDEX PATH}${SDNCGC_HEALTHCHECK_OPERATION_PATH} data=${None} auth=${auth}
DR695Hccff30b2017-02-17 18:44:24 -050036 Should Be Equal As Strings ${resp.status_code} 200
Jerry Floodd40619e2017-08-24 09:38:48 -040037 Should Be Equal As Strings ${resp.json()['output']['response-code']} 200
DR695Hccff30b2017-02-17 18:44:24 -050038
DR695H8a610132019-07-01 16:16:02 -040039Preload Vcpe Networks
40 Preload Network cpe_public 10.2.0.2 10.2.0.1
41 Preload Network cpe_signal 10.4.0.2 10.4.0.1
42 Preload Network brg_bng 10.3.0.2 10.3.0.1
43 Preload Network bng_mux 10.1.0.10 10.1.0.1
44 Preload Network mux_gw 10.5.0.10 10.5.0.1
DR695Hccff30b2017-02-17 18:44:24 -050045
DR695H8a610132019-07-01 16:16:02 -040046Preload Network
47 [Arguments] ${network_role} ${subnet_start_ip} ${subnet_gateway}
48 ${name_suffix}= Generate Timestamp
49 ${network_name}= Catenate SEPARATOR=_ net ${network_role} ${name_suffix}
50 ${subnet_name}= Catenate SEPARATOR=_ net ${network_role} subnet ${name_suffix}
51 ${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}
52 Create Environment sdnc ${GLOBAL_TEMPLATE_FOLDER}
53 ${data}= Apply Template sdnc ${PRELOAD_TOPOLOGY_OPERATION_BODY}/template.network.jinja ${parameters}
DR695H31480282019-07-12 18:34:15 -040054 ${auth}= Create List ${GLOBAL_SDNGC_USERNAME} ${GLOBAL_SDNGC_PASSWORD}
DR695Hf0ff3b82019-07-19 11:08:13 -040055 ${post_resp}= SDNC.Run Post Request ${SDNGC_REST_ENDPOINT} ${SDNGC_INDEX_PATH}${PRELOAD_NETWORK_TOPOLOGY_OPERATION_PATH} data=${data} auth=${auth}
DR695H8a610132019-07-01 16:16:02 -040056 [Return] ${network_name} ${subnet_name}
DR695Hccff30b2017-02-17 18:44:24 -050057
DR695H8a610132019-07-01 16:16:02 -040058Preload Vcpe vGW
59 [Arguments] ${brg_mac} ${cpe_network_name} ${cpe_subnet_name} ${mux_gw_net} ${mux_gw_subnet}
60 ${name_suffix}= Generate Timestamp
DR695H97fec222019-07-15 13:32:20 -040061 ${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}
DR695H8a610132019-07-01 16:16:02 -040062 Create Environment sdnc ${GLOBAL_TEMPLATE_FOLDER}
63 ${data}= Apply Template sdnc ${PRELOAD_TOPOLOGY_OPERATION_BODY}/template.vcpe_vgw_vfmodule.jinja ${parameters}
DR695H31480282019-07-12 18:34:15 -040064 ${auth}= Create List ${GLOBAL_SDNGC_USERNAME} ${GLOBAL_SDNGC_PASSWORD}
DR695Hf0ff3b82019-07-19 11:08:13 -040065 ${post_resp}= SDNC.Run Post Request ${SDNGC_REST_ENDPOINT} ${SDNGC_INDEX_PATH}${PRELOAD_VNF_TOPOLOGY_OPERATION_PATH} data=${data} auth=${auth}
DR695H8a610132019-07-01 16:16:02 -040066
67Preload Vcpe vGW Gra
68 [Arguments] ${brg_mac} ${cpe_public_network_name} ${cpe_public_subnet_name} ${mux_gw_net} ${mux_gw_subnet}
69 ${name_suffix}= Generate Timestamp
DR695H97fec222019-07-15 13:32:20 -040070 ${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}
DR695H8a610132019-07-01 16:16:02 -040071 Create Environment sdnc ${GLOBAL_TEMPLATE_FOLDER}
72 ${data}= Apply Template sdnc ${PRELOAD_TOPOLOGY_OPERATION_BODY}/template.vcpe_gwgra_vfmodule.jinja ${parameters}
DR695H31480282019-07-12 18:34:15 -040073 ${auth}= Create List ${GLOBAL_SDNGC_USERNAME} ${GLOBAL_SDNGC_PASSWORD}
DR695Hf0ff3b82019-07-19 11:08:13 -040074 ${post_resp}= SDNC.Run Post Request ${SDNGC_REST_ENDPOINT} ${SDNGC_INDEX_PATH}${PRELOAD_GR_TOPOLOGY_OPERATION_PATH} data=${data} auth=${auth}
DR695H8a610132019-07-01 16:16:02 -040075
76Preload Generic VfModule
77 [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
78 ${name_suffix}= Generate Timestamp
DR695H8a610132019-07-01 16:16:02 -040079 ${vfmodule_name}= Catenate SEPARATOR=_ vf ${short_model_customization_name} ${name_suffix}
80 #TODO this became a mess, need to fix
DR695H97fec222019-07-15 13:32:20 -040081 ${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}
DR695H8a610132019-07-01 16:16:02 -040082 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}
83 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}
84 # vnf_type and generic_vnf_type are identical
85 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}
86 Set To Dictionary ${parameters} service_type=${service_instance_id} sdnc_oam_ip=${GLOBAL_INJECTED_SDNC_IP_ADDR}
DR695Hf0ff3b82019-07-19 11:08:13 -040087 ${post_resp}= SDNC.Preload Vfmodule ${SDNGC_REST_ENDPOINT} ${SDNGC_INDEX_PATH}${PRELOAD_VNF_TOPOLOGY_OPERATION_PATH} ${GLOBAL_TEMPLATE_FOLDER} ${PRELOAD_TOPOLOGY_OPERATION_BODY}/template.vcpe_infra_vfmodule.jinja ${parameters}
DR695H8a610132019-07-01 16:16:02 -040088 [Return] ${post_resp}
89
DR695Hccff30b2017-02-17 18:44:24 -050090Preload Vnf
91 [Arguments] ${service_type_uuid} ${generic_vnf_name} ${generic_vnf_type} ${vf_module_name} ${vf_modules} ${service} ${uuid}
Jerry Flood3a169a32017-12-01 12:39:10 -050092 ${base_vf_module_type}= Catenate
DR695Hccff30b2017-02-17 18:44:24 -050093 ${closedloop_vf_module}= Create Dictionary
DR695Hf6948fa2019-07-11 18:03:00 -040094 ServiceMapping.Set Directory default ./demo/service_mapping
DR695Hfcb0ee82019-05-22 17:21:38 -040095 ${templates}= Get Service Template Mapping default ${service} ${generic_vnf_type}
DR695H910097e2019-05-08 13:55:32 -040096 :FOR ${vf_module} IN @{vf_modules}
DR695Hccff30b2017-02-17 18:44:24 -050097 \ ${vf_module_type}= Get From Dictionary ${vf_module} name
Brian Freeman12ff1842019-02-13 13:54:48 -050098 # need to pass in vnf_index if non-zero
99 \ ${dict} Run Keyword If "${generic_vnf_name}".endswith('0') Get From Mapping With Index ${templates} ${vf_module} 0
100 \ ... ELSE IF "${generic_vnf_name}".endswith('1') Get From Mapping With Index ${templates} ${vf_module} 1
101 \ ... ELSE IF "${generic_vnf_name}".endswith('2') Get From Mapping With Index ${templates} ${vf_module} 2
102 \ ... ELSE Get From Mapping ${templates} ${vf_module}
Brian Freemanea834f72019-04-22 14:34:02 -0500103 # skip this iteration if no template
104 \ ${test_dict_length} = Get Length ${dict}
105 \ Continue For Loop If ${test_dict_length} == 0
DR695Hccff30b2017-02-17 18:44:24 -0500106 \ ${filename}= Get From Dictionary ${dict} template
107 \ ${base_vf_module_type}= Set Variable If '${dict['isBase']}' == 'true' ${vf_module_type} ${base_vf_module_type}
108 \ ${closedloop_vf_module}= Set Variable If '${dict['isBase']}' == 'false' ${vf_module} ${closedloop_vf_module}
Jerry Floodd40619e2017-08-24 09:38:48 -0400109 \ ${vf_name}= Update Module Name ${dict} ${vf_module_name}
Brian Freemanf38a8342019-04-18 10:50:19 -0500110 # Admin portal update no longer
111 #\ Preload Vnf Profile ${vf_module_type}
DR695Hccff30b2017-02-17 18:44:24 -0500112 \ Preload One Vnf Topology ${service_type_uuid} ${generic_vnf_name} ${generic_vnf_type} ${vf_name} ${vf_module_type} ${service} ${filename} ${uuid}
Jerry Floodd40619e2017-08-24 09:38:48 -0400113 [Return] ${base_vf_module_type} ${closedloop_vf_module}
DR695Hccff30b2017-02-17 18:44:24 -0500114
DR695Hccff30b2017-02-17 18:44:24 -0500115Update Module Name
116 [Arguments] ${dict} ${vf_module_name}
117 Return From Keyword If 'prefix' not in ${dict} ${vf_module_name}
118 Return From Keyword If '${dict['prefix']}' == '' ${vf_module_name}
Jerry Floodd40619e2017-08-24 09:38:48 -0400119 ${name}= Replace String ${vf_module_name} Vfmodule_ ${dict['prefix']}
120 [Return] ${name}
DR695Hccff30b2017-02-17 18:44:24 -0500121
Brian Freeman12ff1842019-02-13 13:54:48 -0500122Get From Mapping With Index
123 [Documentation] Retrieve the appropriate prelad template entry for the passed vf_module
124 [Arguments] ${templates} ${vf_module} ${vnf_index}=0
125 ${vf_module_name}= Get From DIctionary ${vf_module} name
DR695H910097e2019-05-08 13:55:32 -0400126 :FOR ${template} IN @{templates}
Brian Freeman12ff1842019-02-13 13:54:48 -0500127 \ Return From Keyword If '${template['name_pattern']}' in '${vf_module_name}' and ('${template['vnf_index']}' == '${vnf_index}') ${template}
Brian Freeman37daa802019-04-26 12:06:11 -0500128 ${result}= Create Dictionary
129 [Return] ${result}
Brian Freeman12ff1842019-02-13 13:54:48 -0500130
DR695Hccff30b2017-02-17 18:44:24 -0500131Get From Mapping
Jerry Floodd40619e2017-08-24 09:38:48 -0400132 [Documentation] Retrieve the appropriate prelad template entry for the passed vf_module
DR695Hccff30b2017-02-17 18:44:24 -0500133 [Arguments] ${templates} ${vf_module}
134 ${vf_module_name}= Get From DIctionary ${vf_module} name
DR695H910097e2019-05-08 13:55:32 -0400135 :FOR ${template} IN @{templates}
Jerry Floodd40619e2017-08-24 09:38:48 -0400136 \ Return From Keyword If '${template['name_pattern']}' in '${vf_module_name}' ${template}
Brian Freeman37daa802019-04-26 12:06:11 -0500137 ${result}= Create Dictionary
138 [Return] ${result}
Jerry Floodd40619e2017-08-24 09:38:48 -0400139
DR695Hccff30b2017-02-17 18:44:24 -0500140Preload One Vnf Topology
141 [Arguments] ${service_type_uuid} ${generic_vnf_name} ${generic_vnf_type} ${vf_module_name} ${vf_module_type} ${service} ${filename} ${uuid}
142 Return From Keyword If '${filename}' == ''
DR695Hf6948fa2019-07-11 18:03:00 -0400143 ${parameters}= Get Template Parameters ${generic_vnf_name} ${filename} ${uuid} ${service}
Jerry Flood81d33fb2017-11-21 16:21:21 -0500144 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}
DR695H3bb6cf42019-06-20 15:04:04 -0400145 Create Environment sdnc ${GLOBAL_TEMPLATE_FOLDER}
DR695H8a610132019-07-01 16:16:02 -0400146 ${data}= Apply Template sdnc ${PRELOAD_TOPOLOGY_OPERATION_BODY}/preload.jinja ${parameters}
DR695H31480282019-07-12 18:34:15 -0400147 ${auth}= Create List ${GLOBAL_SDNGC_USERNAME} ${GLOBAL_SDNGC_PASSWORD}
DR695Hf0ff3b82019-07-19 11:08:13 -0400148 ${post_resp}= SDNC.Run Post Request ${SDNGC_REST_ENDPOINT} ${SDNGC_INDEX_PATH}${PRELOAD_VNF_TOPOLOGY_OPERATION_PATH} data=${data} auth=${auth}
DR695H31480282019-07-12 18:34:15 -0400149 Should Be Equal As Strings ${post_resp.json()['output']['response-code']} 200
150 ${auth}= Create List ${GLOBAL_SDNGC_USERNAME} ${GLOBAL_SDNGC_PASSWORD}
DR695Hf0ff3b82019-07-19 11:08:13 -0400151 ${get_resp}= SDNC.Run Get Request ${SDNGC_REST_ENDPOINT} ${SDNGC_INDEX_PATH}${PRELOAD_VNF_CONFIG_PATH}/${vf_module_name}/${vf_module_type} auth=${auth}
DR695Hccff30b2017-02-17 18:44:24 -0500152
153Get Template Parameters
DR695Hf6948fa2019-07-11 18:03:00 -0400154 [Arguments] ${generic_vnf_name} ${template} ${uuid} ${service}
DR695Hccff30b2017-02-17 18:44:24 -0500155 ${uuid}= Catenate ${uuid}
156 ${hostid}= Get Substring ${uuid} -4
Jerry Flood81d33fb2017-11-21 16:21:21 -0500157 ${ecompnet}= Evaluate (${GLOBAL_BUILD_NUMBER}%128)+128
158
159
DR695Hccff30b2017-02-17 18:44:24 -0500160 # Initialize the value map with the properties generated from the Robot VM /opt/config folder
Jerry Flood81d33fb2017-11-21 16:21:21 -0500161 ${valuemap}= Copy Dictionary ${GLOBAL_INJECTED_PROPERTIES}
162
163 # These should be deprecated by the above....
Jerry Flood028e1852017-03-16 16:44:17 -0400164 Set To Dictionary ${valuemap} artifacts_version=${GLOBAL_INJECTED_ARTIFACTS_VERSION}
Jerry Floodd40619e2017-08-24 09:38:48 -0400165 Set To Dictionary ${valuemap} network=${GLOBAL_INJECTED_NETWORK}
Jerry Floodd7503152017-10-09 16:33:00 -0400166 Set To Dictionary ${valuemap} public_net_id=${GLOBAL_INJECTED_PUBLIC_NET_ID}
167 Set To Dictionary ${valuemap} cloud_env=${GLOBAL_INJECTED_CLOUD_ENV}
Jerry Flood81d33fb2017-11-21 16:21:21 -0500168 Set To Dictionary ${valuemap} install_script_version=${GLOBAL_INJECTED_SCRIPT_VERSION}
Jerry Floodd7503152017-10-09 16:33:00 -0400169 Set To Dictionary ${valuemap} vm_image_name=${GLOBAL_INJECTED_VM_IMAGE_NAME}
Jerry Flood81d33fb2017-11-21 16:21:21 -0500170 Set To Dictionary ${valuemap} vm_flavor_name=${GLOBAL_INJECTED_VM_FLAVOR}
171
172
DR695Hccff30b2017-02-17 18:44:24 -0500173 # update the value map with unique values.
Bin Yang326219a2018-05-31 05:35:33 +0000174 Set To Dictionary ${valuemap} uuid=${uuid} hostid=${hostid} ecompnet=${ecompnet} generic_vnf_name=${generic_vnf_name}
Jerry Flood81d33fb2017-11-21 16:21:21 -0500175
176 #
177 # Mash together the defaults dict with the test case dict to create the set of
178 # preload parameters
179 #
DR695Hf6948fa2019-07-11 18:03:00 -0400180 Preload.Set Directory preload ./demo/preload_data
181 ${defaults}= Get Default Preload Data preload
182 ${template}= Get Preload Data preload ${service} ${template}
Jerry Flood81d33fb2017-11-21 16:21:21 -0500183 # add all of the defaults to template...
184 @{keys}= Get Dictionary Keys ${defaults}
DR695H910097e2019-05-08 13:55:32 -0400185 :FOR ${key} IN @{keys}
Jerry Flood81d33fb2017-11-21 16:21:21 -0500186 \ ${value}= Get From Dictionary ${defaults} ${key}
187 \ Set To Dictionary ${template} ${key} ${value}
188
189 #
190 # Get the vnf_parameters to preload
191 #
192 ${vnf_parameters}= Resolve VNF Parameters Into Array ${valuemap} ${template}
Jerry Floodd40619e2017-08-24 09:38:48 -0400193 ${vnf_parameters_json}= Evaluate json.dumps(${vnf_parameters}) json
Jerry Flood81d33fb2017-11-21 16:21:21 -0500194 ${parameters}= Create Dictionary vnf_parameters=${vnf_parameters_json}
DR695Hccff30b2017-02-17 18:44:24 -0500195 [Return] ${parameters}
Jerry Floodd40619e2017-08-24 09:38:48 -0400196
Jerry Floodd40619e2017-08-24 09:38:48 -0400197Resolve VNF Parameters Into Array
Jerry Flood81d33fb2017-11-21 16:21:21 -0500198 [Arguments] ${valuemap} ${from}
Jerry Floodd40619e2017-08-24 09:38:48 -0400199 ${vnf_parameters}= Create List
200 ${keys}= Get Dictionary Keys ${from}
DR695H910097e2019-05-08 13:55:32 -0400201 :FOR ${key} IN @{keys}
Jerry Floodd40619e2017-08-24 09:38:48 -0400202 \ ${value}= Get From Dictionary ${from} ${key}
203 \ ${value}= Template String ${value} ${valuemap}
204 \ ${parameter}= Create Dictionary vnf-parameter-name=${key} vnf-parameter-value=${value}
205 \ Append To List ${vnf_parameters} ${parameter}
206 [Return] ${vnf_parameters}
207
DR695Hccff30b2017-02-17 18:44:24 -0500208Preload Vnf Profile
209 [Arguments] ${vnf_name}
210 Login To SDNGC Admin GUI
211 Go To ${SDNGC_ADMIN_VNF_PROFILE_URL}
212 Click Button xpath=//button[@data-target='#add_vnf_profile']
213 Input Text xpath=//input[@id='nf_vnf_type'] ${vnf_name}
214 Input Text xpath=//input[@id='nf_availability_zone_count'] 999
215 Input Text xpath=//input[@id='nf_equipment_role'] robot-ete-test
216 Click Button xpath=//button[contains(.,'Submit')]
Jerry Floodd40619e2017-08-24 09:38:48 -0400217 Page Should Contain VNF Profile
DR695Hccff30b2017-02-17 18:44:24 -0500218 Input Text xpath=//div[@id='vnf_profile_filter']//input ${vnf_name}
Jerry Floodd40619e2017-08-24 09:38:48 -0400219 Page Should Contain ${vnf_name}
DR695Hccff30b2017-02-17 18:44:24 -0500220
221Delete Vnf Profile
222 [Arguments] ${vnf_name}
223 Login To SDNGC Admin GUI
224 Go To ${SDNGC_ADMIN_VNF_PROFILE_URL}
Jerry Floodd40619e2017-08-24 09:38:48 -0400225 Page Should Contain VNF Profile
DR695Hccff30b2017-02-17 18:44:24 -0500226 Input Text xpath=//div[@id='vnf_profile_filter']//input ${vnf_name}
227 Page Should Contain ${vnf_name}
Jerry Floodd40619e2017-08-24 09:38:48 -0400228 Click Button xpath=//button[contains(@onclick, '${vnf_name}')]
DR695Hccff30b2017-02-17 18:44:24 -0500229 Page Should Contain Are you sure you want to delete VNF_PROFILE
230 Click Button xpath=//button[contains(text(), 'Yes')]
231 Page Should Not Contain ${vnf_name}
Jerry Floodd40619e2017-08-24 09:38:48 -0400232
DR695Hccff30b2017-02-17 18:44:24 -0500233Login To SDNGC Admin GUI
234 [Documentation] Login To SDNGC Admin GUI
Jerry Floodd40619e2017-08-24 09:38:48 -0400235 ## Setup Browser is now being managed by the test case
DR695Hccff30b2017-02-17 18:44:24 -0500236 ## Setup Browser
237 Go To ${SDNGC_ADMIN_SIGNUP_URL}
Jerry Flood81d33fb2017-11-21 16:21:21 -0500238 ##Maximize Browser Window
DR695Hccff30b2017-02-17 18:44:24 -0500239 Set Selenium Speed ${GLOBAL_SELENIUM_DELAY}
240 Set Browser Implicit Wait ${GLOBAL_SELENIUM_BROWSER_IMPLICIT_WAIT}
241 Log Logging in to ${SDNGC_ADMIN_LOGIN_URL}
242 Handle Proxy Warning
243 Title Should Be AdminPortal
DR695H18872bc2019-06-13 16:16:52 -0400244 ${uuid}= Generate UUID4
DR695Hccff30b2017-02-17 18:44:24 -0500245 ${shortened_uuid}= Evaluate str("${uuid}")[:12]
246 ${email}= Catenate ${shortened_uuid}@robotete.com
247 Input Text xpath=//input[@id='nf_email'] ${email}
248 Input Password xpath=//input[@id='nf_password'] ${shortened_uuid}
249 Click Button xpath=//button[@type='submit']
250 Wait Until Page Contains User created 20s
251 Go To ${SDNGC_ADMIN_LOGIN_URL}
252 Input Text xpath=//input[@id='email'] ${email}
253 Input Password xpath=//input[@id='password'] ${shortened_uuid}
254 Click Button xpath=//button[@type='submit']
255 Title Should Be SDN-C AdminPortal
Brian Freeman12ff1842019-02-13 13:54:48 -0500256 Log Logged in to ${SDNGC_ADMIN_LOGIN_URL}