blob: d4a16ac9f912560f8c44fb2bcd897db3d96874ec [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
Jerry Floodd40619e2017-08-24 09:38:48 -04004Library UUID
DR695Hccff30b2017-02-17 18:44:24 -05005Library OperatingSystem
DR695H910097e2019-05-08 13:55:32 -04006Library SeleniumLibrary
DR695Hccff30b2017-02-17 18:44:24 -05007Library Collections
8Library String
9Library StringTemplater
DR695Hfcb0ee82019-05-22 17:21:38 -040010Library ONAPLibrary.ServiceMapping
11
DR695Hccff30b2017-02-17 18:44:24 -050012Resource global_properties.robot
13Resource ../resources/json_templater.robot
14Resource 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
19${PRELOAD_VNF_CONFIG_PATH} /config/VNF-API:preload-vnfs/vnf-preload-list
20${PRELOAD_VNF_TOPOLOGY_OPERATION_BODY} robot/assets/templates/sdnc/
21${SDNGC_INDEX_PATH} /restconf
22${SDNCGC_HEALTHCHECK_OPERATION_PATH} /operations/SLI-API:healthcheck
DR695Hbf5a3a32017-06-30 13:09:57 -040023${SDNGC_REST_ENDPOINT} ${GLOBAL_SDNGC_SERVER_PROTOCOL}://${GLOBAL_INJECTED_SDNC_IP_ADDR}:${GLOBAL_SDNGC_REST_PORT}
Gary Wu251aa682018-07-30 15:22:20 -070024${SDNGC_ADMIN_ENDPOINT} ${GLOBAL_SDNGC_SERVER_PROTOCOL}://${GLOBAL_INJECTED_SDNC_PORTAL_IP_ADDR}:${GLOBAL_SDNGC_ADMIN_PORT}
DR695Hccff30b2017-02-17 18:44:24 -050025${SDNGC_ADMIN_SIGNUP_URL} ${SDNGC_ADMIN_ENDPOINT}/signup
26${SDNGC_ADMIN_LOGIN_URL} ${SDNGC_ADMIN_ENDPOINT}/login
27${SDNGC_ADMIN_VNF_PROFILE_URL} ${SDNGC_ADMIN_ENDPOINT}/mobility/getVnfProfile
28
29*** Keywords ***
30Run SDNGC Health Check
31 [Documentation] Runs an SDNGC healthcheck
32 ${resp}= Run SDNGC Post Request ${SDNGC_INDEX PATH}${SDNCGC_HEALTHCHECK_OPERATION_PATH} ${None}
33 Should Be Equal As Strings ${resp.status_code} 200
Jerry Floodd40619e2017-08-24 09:38:48 -040034 Should Be Equal As Strings ${resp.json()['output']['response-code']} 200
DR695Hccff30b2017-02-17 18:44:24 -050035
36Run SDNGC Get Request
37 [Documentation] Runs an SDNGC get request
38 [Arguments] ${data_path}
39 ${auth}= Create List ${GLOBAL_SDNGC_USERNAME} ${GLOBAL_SDNGC_PASSWORD}
40 Log Creating session ${SDNGC_REST_ENDPOINT}
41 ${session}= Create Session sdngc ${SDNGC_REST_ENDPOINT} auth=${auth}
42 ${uuid}= Generate UUID
43 ${headers}= Create Dictionary Accept=application/json Content-Type=application/json X-TransactionId=${GLOBAL_APPLICATION_ID}-${uuid} X-FromAppId=${GLOBAL_APPLICATION_ID}
44 ${resp}= Get Request sdngc ${data_path} headers=${headers}
45 Log Received response from sdngc ${resp.text}
46 [Return] ${resp}
Jerry Floodd40619e2017-08-24 09:38:48 -040047
DR695Hccff30b2017-02-17 18:44:24 -050048Run SDNGC Put Request
49 [Documentation] Runs an SDNGC put request
50 [Arguments] ${data_path} ${data}
51 ${auth}= Create List ${GLOBAL_SDNGC_USERNAME} ${GLOBAL_SDNGC_PASSWORD}
52 Log Creating session ${SDNGC_REST_ENDPOINT}
53 ${session}= Create Session sdngc ${SDNGC_REST_ENDPOINT} auth=${auth}
54 ${uuid}= Generate UUID
55 ${headers}= Create Dictionary Accept=application/json Content-Type=application/json X-TransactionId=${GLOBAL_APPLICATION_ID}-${uuid} X-FromAppId=${GLOBAL_APPLICATION_ID}
56 ${resp}= Put Request sdngc ${data_path} data=${data} headers=${headers}
57 Log Received response from sdngc ${resp.text}
58 [Return] ${resp}
59
60Run SDNGC Post Request
61 [Documentation] Runs an SDNGC post request
62 [Arguments] ${data_path} ${data}
63 ${auth}= Create List ${GLOBAL_SDNGC_USERNAME} ${GLOBAL_SDNGC_PASSWORD}
64 Log Creating session ${SDNGC_REST_ENDPOINT}
65 ${session}= Create Session sdngc ${SDNGC_REST_ENDPOINT} auth=${auth}
66 ${uuid}= Generate UUID
67 ${headers}= Create Dictionary Accept=application/json Content-Type=application/json X-TransactionId=${GLOBAL_APPLICATION_ID}-${uuid} X-FromAppId=${GLOBAL_APPLICATION_ID}
68 ${resp}= Post Request sdngc ${data_path} data=${data} headers=${headers}
69 Log Received response from sdngc ${resp.text}
Jerry Floodd40619e2017-08-24 09:38:48 -040070 [Return] ${resp}
71
DR695Hccff30b2017-02-17 18:44:24 -050072Run SDNGC Delete Request
73 [Documentation] Runs an SDNGC delete request
74 [Arguments] ${data_path}
75 ${auth}= Create List ${GLOBAL_SDNGC_USERNAME} ${GLOBAL_SDNGC_PASSWORD}
76 Log Creating session ${SDNGC_REST_ENDPOINT}
77 ${session}= Create Session sdngc ${SDNGC_REST_ENDPOINT} auth=${auth}
78 ${uuid}= Generate UUID
79 ${headers}= Create Dictionary Accept=application/json Content-Type=application/json X-TransactionId=${GLOBAL_APPLICATION_ID}-${uuid} X-FromAppId=${GLOBAL_APPLICATION_ID}
80 ${resp}= Delete Request sdngc ${data_path} headers=${headers}
81 Log Received response from sdngc ${resp.text}
82 [Return] ${resp}
83
84
85Preload Vnf
86 [Arguments] ${service_type_uuid} ${generic_vnf_name} ${generic_vnf_type} ${vf_module_name} ${vf_modules} ${service} ${uuid}
Jerry Flood3a169a32017-12-01 12:39:10 -050087 ${base_vf_module_type}= Catenate
DR695Hccff30b2017-02-17 18:44:24 -050088 ${closedloop_vf_module}= Create Dictionary
DR695Hfcb0ee82019-05-22 17:21:38 -040089 Set Directory default ./demo/service_mapping
90 ${templates}= Get Service Template Mapping default ${service} ${generic_vnf_type}
DR695H910097e2019-05-08 13:55:32 -040091 :FOR ${vf_module} IN @{vf_modules}
DR695Hccff30b2017-02-17 18:44:24 -050092 \ ${vf_module_type}= Get From Dictionary ${vf_module} name
Brian Freeman12ff1842019-02-13 13:54:48 -050093 # need to pass in vnf_index if non-zero
94 \ ${dict} Run Keyword If "${generic_vnf_name}".endswith('0') Get From Mapping With Index ${templates} ${vf_module} 0
95 \ ... ELSE IF "${generic_vnf_name}".endswith('1') Get From Mapping With Index ${templates} ${vf_module} 1
96 \ ... ELSE IF "${generic_vnf_name}".endswith('2') Get From Mapping With Index ${templates} ${vf_module} 2
97 \ ... ELSE Get From Mapping ${templates} ${vf_module}
Brian Freemanea834f72019-04-22 14:34:02 -050098 # skip this iteration if no template
99 \ ${test_dict_length} = Get Length ${dict}
100 \ Continue For Loop If ${test_dict_length} == 0
DR695Hccff30b2017-02-17 18:44:24 -0500101 \ ${filename}= Get From Dictionary ${dict} template
102 \ ${base_vf_module_type}= Set Variable If '${dict['isBase']}' == 'true' ${vf_module_type} ${base_vf_module_type}
103 \ ${closedloop_vf_module}= Set Variable If '${dict['isBase']}' == 'false' ${vf_module} ${closedloop_vf_module}
Jerry Floodd40619e2017-08-24 09:38:48 -0400104 \ ${vf_name}= Update Module Name ${dict} ${vf_module_name}
Brian Freemanf38a8342019-04-18 10:50:19 -0500105 # Admin portal update no longer
106 #\ Preload Vnf Profile ${vf_module_type}
DR695Hccff30b2017-02-17 18:44:24 -0500107 \ 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 -0400108 [Return] ${base_vf_module_type} ${closedloop_vf_module}
DR695Hccff30b2017-02-17 18:44:24 -0500109
110
111Update 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 Floodd40619e2017-08-24 09:38:48 -0400115 ${name}= Replace String ${vf_module_name} Vfmodule_ ${dict['prefix']}
116 [Return] ${name}
DR695Hccff30b2017-02-17 18:44:24 -0500117
Brian Freeman12ff1842019-02-13 13:54:48 -0500118Get 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
DR695H910097e2019-05-08 13:55:32 -0400122 :FOR ${template} IN @{templates}
Brian Freeman12ff1842019-02-13 13:54:48 -0500123 \ 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 -0500124 ${result}= Create Dictionary
125 [Return] ${result}
Brian Freeman12ff1842019-02-13 13:54:48 -0500126
DR695Hccff30b2017-02-17 18:44:24 -0500127Get From Mapping
Jerry Floodd40619e2017-08-24 09:38:48 -0400128 [Documentation] Retrieve the appropriate prelad template entry for the passed vf_module
DR695Hccff30b2017-02-17 18:44:24 -0500129 [Arguments] ${templates} ${vf_module}
130 ${vf_module_name}= Get From DIctionary ${vf_module} name
DR695H910097e2019-05-08 13:55:32 -0400131 :FOR ${template} IN @{templates}
Jerry Floodd40619e2017-08-24 09:38:48 -0400132 \ Return From Keyword If '${template['name_pattern']}' in '${vf_module_name}' ${template}
Brian Freeman37daa802019-04-26 12:06:11 -0500133 ${result}= Create Dictionary
134 [Return] ${result}
Jerry Floodd40619e2017-08-24 09:38:48 -0400135
DR695Hccff30b2017-02-17 18:44:24 -0500136Preload 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}' == ''
Jerry Floodd40619e2017-08-24 09:38:48 -0400139 ${data_template}= OperatingSystem.Get File ${PRELOAD_VNF_TOPOLOGY_OPERATION_BODY}/preload.template
Bin Yang326219a2018-05-31 05:35:33 +0000140 ${parameters}= Get Template Parameters ${generic_vnf_name} ${filename} ${uuid}
Jerry Flood81d33fb2017-11-21 16:21:21 -0500141 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}
Jerry Floodd40619e2017-08-24 09:38:48 -0400142 ${data}= Fill JSON Template ${data_template} ${parameters}
DR695Hccff30b2017-02-17 18:44:24 -0500143 ${put_resp}= Run SDNGC Post Request ${SDNGC_INDEX_PATH}${PRELOAD_VNF_TOPOLOGY_OPERATION_PATH} ${data}
Jerry Floodd40619e2017-08-24 09:38:48 -0400144 Should Be Equal As Strings ${put_resp.json()['output']['response-code']} 200
DR695Hccff30b2017-02-17 18:44:24 -0500145 ${get_resp}= Run SDNGC Get Request ${SDNGC_INDEX_PATH}${PRELOAD_VNF_CONFIG_PATH}/${vf_module_name}/${vf_module_type}
146 Should Be Equal As Strings ${get_resp.status_code} 200
147
148Get Template Parameters
Bin Yang326219a2018-05-31 05:35:33 +0000149 [Arguments] ${generic_vnf_name} ${template} ${uuid}
DR695Hccff30b2017-02-17 18:44:24 -0500150 ${rest} ${suite}= Split String From Right ${SUITE NAME} . 1
151 ${uuid}= Catenate ${uuid}
152 ${hostid}= Get Substring ${uuid} -4
Jerry Flood81d33fb2017-11-21 16:21:21 -0500153 ${ecompnet}= Evaluate (${GLOBAL_BUILD_NUMBER}%128)+128
154
155
DR695Hccff30b2017-02-17 18:44:24 -0500156 # Initialize the value map with the properties generated from the Robot VM /opt/config folder
Jerry Flood81d33fb2017-11-21 16:21:21 -0500157 ${valuemap}= Copy Dictionary ${GLOBAL_INJECTED_PROPERTIES}
158
159 # These should be deprecated by the above....
Jerry Flood028e1852017-03-16 16:44:17 -0400160 Set To Dictionary ${valuemap} artifacts_version=${GLOBAL_INJECTED_ARTIFACTS_VERSION}
Jerry Floodd40619e2017-08-24 09:38:48 -0400161 Set To Dictionary ${valuemap} network=${GLOBAL_INJECTED_NETWORK}
Jerry Floodd7503152017-10-09 16:33:00 -0400162 Set To Dictionary ${valuemap} public_net_id=${GLOBAL_INJECTED_PUBLIC_NET_ID}
163 Set To Dictionary ${valuemap} cloud_env=${GLOBAL_INJECTED_CLOUD_ENV}
Jerry Flood81d33fb2017-11-21 16:21:21 -0500164 Set To Dictionary ${valuemap} install_script_version=${GLOBAL_INJECTED_SCRIPT_VERSION}
Jerry Floodd7503152017-10-09 16:33:00 -0400165 Set To Dictionary ${valuemap} vm_image_name=${GLOBAL_INJECTED_VM_IMAGE_NAME}
Jerry Flood81d33fb2017-11-21 16:21:21 -0500166 Set To Dictionary ${valuemap} vm_flavor_name=${GLOBAL_INJECTED_VM_FLAVOR}
167
168
DR695Hccff30b2017-02-17 18:44:24 -0500169 # update the value map with unique values.
Bin Yang326219a2018-05-31 05:35:33 +0000170 Set To Dictionary ${valuemap} uuid=${uuid} hostid=${hostid} ecompnet=${ecompnet} generic_vnf_name=${generic_vnf_name}
Jerry Flood81d33fb2017-11-21 16:21:21 -0500171
172 #
173 # Mash together the defaults dict with the test case dict to create the set of
174 # preload parameters
175 #
DR695Hccff30b2017-02-17 18:44:24 -0500176 ${suite_templates}= Get From Dictionary ${GLOBAL_PRELOAD_PARAMETERS} ${suite}
177 ${template}= Get From Dictionary ${suite_templates} ${template}
Jerry Flood81d33fb2017-11-21 16:21:21 -0500178 ${defaults}= Get From Dictionary ${GLOBAL_PRELOAD_PARAMETERS} defaults
179 # add all of the defaults to template...
180 @{keys}= Get Dictionary Keys ${defaults}
DR695H910097e2019-05-08 13:55:32 -0400181 :FOR ${key} IN @{keys}
Jerry Flood81d33fb2017-11-21 16:21:21 -0500182 \ ${value}= Get From Dictionary ${defaults} ${key}
183 \ Set To Dictionary ${template} ${key} ${value}
184
185 #
186 # Get the vnf_parameters to preload
187 #
188 ${vnf_parameters}= Resolve VNF Parameters Into Array ${valuemap} ${template}
Jerry Floodd40619e2017-08-24 09:38:48 -0400189 ${vnf_parameters_json}= Evaluate json.dumps(${vnf_parameters}) json
Jerry Flood81d33fb2017-11-21 16:21:21 -0500190 ${parameters}= Create Dictionary vnf_parameters=${vnf_parameters_json}
DR695Hccff30b2017-02-17 18:44:24 -0500191 [Return] ${parameters}
Jerry Floodd40619e2017-08-24 09:38:48 -0400192
193Resolve Values Into Dictionary
DR695Hccff30b2017-02-17 18:44:24 -0500194 [Arguments] ${valuemap} ${from} ${to}
195 ${keys}= Get Dictionary Keys ${from}
DR695H910097e2019-05-08 13:55:32 -0400196 :FOR ${key} IN @{keys}
DR695Hccff30b2017-02-17 18:44:24 -0500197 \ ${value}= Get From Dictionary ${from} ${key}
198 \ ${value}= Template String ${value} ${valuemap}
199 \ Set To Dictionary ${to} ${key} ${value}
Jerry Floodd40619e2017-08-24 09:38:48 -0400200
201Resolve VNF Parameters Into Array
Jerry Flood81d33fb2017-11-21 16:21:21 -0500202 [Arguments] ${valuemap} ${from}
Jerry Floodd40619e2017-08-24 09:38:48 -0400203 ${vnf_parameters}= Create List
204 ${keys}= Get Dictionary Keys ${from}
DR695H910097e2019-05-08 13:55:32 -0400205 :FOR ${key} IN @{keys}
Jerry Floodd40619e2017-08-24 09:38:48 -0400206 \ ${value}= Get From Dictionary ${from} ${key}
207 \ ${value}= Template String ${value} ${valuemap}
208 \ ${parameter}= Create Dictionary vnf-parameter-name=${key} vnf-parameter-value=${value}
209 \ Append To List ${vnf_parameters} ${parameter}
210 [Return] ${vnf_parameters}
211
DR695Hccff30b2017-02-17 18:44:24 -0500212Preload Vnf Profile
213 [Arguments] ${vnf_name}
214 Login To SDNGC Admin GUI
215 Go To ${SDNGC_ADMIN_VNF_PROFILE_URL}
216 Click Button xpath=//button[@data-target='#add_vnf_profile']
217 Input Text xpath=//input[@id='nf_vnf_type'] ${vnf_name}
218 Input Text xpath=//input[@id='nf_availability_zone_count'] 999
219 Input Text xpath=//input[@id='nf_equipment_role'] robot-ete-test
220 Click Button xpath=//button[contains(.,'Submit')]
Jerry Floodd40619e2017-08-24 09:38:48 -0400221 Page Should Contain VNF Profile
DR695Hccff30b2017-02-17 18:44:24 -0500222 Input Text xpath=//div[@id='vnf_profile_filter']//input ${vnf_name}
Jerry Floodd40619e2017-08-24 09:38:48 -0400223 Page Should Contain ${vnf_name}
DR695Hccff30b2017-02-17 18:44:24 -0500224
225Delete Vnf Profile
226 [Arguments] ${vnf_name}
227 Login To SDNGC Admin GUI
228 Go To ${SDNGC_ADMIN_VNF_PROFILE_URL}
Jerry Floodd40619e2017-08-24 09:38:48 -0400229 Page Should Contain VNF Profile
DR695Hccff30b2017-02-17 18:44:24 -0500230 Input Text xpath=//div[@id='vnf_profile_filter']//input ${vnf_name}
231 Page Should Contain ${vnf_name}
Jerry Floodd40619e2017-08-24 09:38:48 -0400232 Click Button xpath=//button[contains(@onclick, '${vnf_name}')]
DR695Hccff30b2017-02-17 18:44:24 -0500233 Page Should Contain Are you sure you want to delete VNF_PROFILE
234 Click Button xpath=//button[contains(text(), 'Yes')]
235 Page Should Not Contain ${vnf_name}
Jerry Floodd40619e2017-08-24 09:38:48 -0400236
DR695Hccff30b2017-02-17 18:44:24 -0500237Login To SDNGC Admin GUI
238 [Documentation] Login To SDNGC Admin GUI
Jerry Floodd40619e2017-08-24 09:38:48 -0400239 ## Setup Browser is now being managed by the test case
DR695Hccff30b2017-02-17 18:44:24 -0500240 ## Setup Browser
241 Go To ${SDNGC_ADMIN_SIGNUP_URL}
Jerry Flood81d33fb2017-11-21 16:21:21 -0500242 ##Maximize Browser Window
DR695Hccff30b2017-02-17 18:44:24 -0500243 Set Selenium Speed ${GLOBAL_SELENIUM_DELAY}
244 Set Browser Implicit Wait ${GLOBAL_SELENIUM_BROWSER_IMPLICIT_WAIT}
245 Log Logging in to ${SDNGC_ADMIN_LOGIN_URL}
246 Handle Proxy Warning
247 Title Should Be AdminPortal
Jerry Floodd40619e2017-08-24 09:38:48 -0400248 ${uuid}= Generate UUID
DR695Hccff30b2017-02-17 18:44:24 -0500249 ${shortened_uuid}= Evaluate str("${uuid}")[:12]
250 ${email}= Catenate ${shortened_uuid}@robotete.com
251 Input Text xpath=//input[@id='nf_email'] ${email}
252 Input Password xpath=//input[@id='nf_password'] ${shortened_uuid}
253 Click Button xpath=//button[@type='submit']
254 Wait Until Page Contains User created 20s
255 Go To ${SDNGC_ADMIN_LOGIN_URL}
256 Input Text xpath=//input[@id='email'] ${email}
257 Input Password xpath=//input[@id='password'] ${shortened_uuid}
258 Click Button xpath=//button[@type='submit']
259 Title Should Be SDN-C AdminPortal
Brian Freeman12ff1842019-02-13 13:54:48 -0500260 Log Logged in to ${SDNGC_ADMIN_LOGIN_URL}