db5444827571d550de8374ff375fc0dbf20cf0e7
[testsuite.git] / robot / resources / sdngc_interface.robot
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
4 Library           ONAPLibrary.Utilities
5 Library             SeleniumLibrary
6 Library         Collections
7 Library      String
8 Library      StringTemplater
9 Library           ONAPLibrary.ServiceMapping
10
11 Resource          global_properties.robot
12 Resource          ../resources/json_templater.robot
13 Resource        browser_setup.robot
14
15
16 *** Variables ***
17 ${PRELOAD_VNF_TOPOLOGY_OPERATION_PATH}  /operations/VNF-API:preload-vnf-topology-operation
18 ${PRELOAD_VNF_CONFIG_PATH}  /config/VNF-API:preload-vnfs/vnf-preload-list
19 ${PRELOAD_VNF_TOPOLOGY_OPERATION_BODY}  robot/assets/templates/sdnc/
20 ${SDNGC_INDEX_PATH}    /restconf
21 ${SDNCGC_HEALTHCHECK_OPERATION_PATH}  /operations/SLI-API:healthcheck
22 ${SDNGC_REST_ENDPOINT}    ${GLOBAL_SDNGC_SERVER_PROTOCOL}://${GLOBAL_INJECTED_SDNC_IP_ADDR}:${GLOBAL_SDNGC_REST_PORT}
23 ${SDNGC_ADMIN_ENDPOINT}    ${GLOBAL_SDNGC_SERVER_PROTOCOL}://${GLOBAL_INJECTED_SDNC_PORTAL_IP_ADDR}:${GLOBAL_SDNGC_ADMIN_PORT}
24 ${SDNGC_ADMIN_SIGNUP_URL}    ${SDNGC_ADMIN_ENDPOINT}/signup
25 ${SDNGC_ADMIN_LOGIN_URL}    ${SDNGC_ADMIN_ENDPOINT}/login
26 ${SDNGC_ADMIN_VNF_PROFILE_URL}    ${SDNGC_ADMIN_ENDPOINT}/mobility/getVnfProfile
27
28 *** Keywords ***
29 Run SDNGC Health Check
30     [Documentation]    Runs an SDNGC healthcheck
31         ${resp}=    Run SDNGC Post Request     ${SDNGC_INDEX PATH}${SDNCGC_HEALTHCHECK_OPERATION_PATH}     ${None}
32     Should Be Equal As Strings  ${resp.status_code}     200
33     Should Be Equal As Strings  ${resp.json()['output']['response-code']}       200
34
35 Run SDNGC Get Request
36     [Documentation]    Runs an SDNGC get request
37     [Arguments]    ${data_path}
38     ${auth}=  Create List  ${GLOBAL_SDNGC_USERNAME}    ${GLOBAL_SDNGC_PASSWORD}
39     Log    Creating session ${SDNGC_REST_ENDPOINT}
40     ${session}=    Create Session       sdngc   ${SDNGC_REST_ENDPOINT}    auth=${auth}
41     ${uuid}=    Generate UUID4
42     ${headers}=  Create Dictionary     Accept=application/json    Content-Type=application/json    X-TransactionId=${GLOBAL_APPLICATION_ID}-${uuid}    X-FromAppId=${GLOBAL_APPLICATION_ID}
43     ${resp}=    Get Request     sdngc   ${data_path}     headers=${headers}
44     Log    Received response from sdngc ${resp.text}
45     [Return]    ${resp}
46
47 Run SDNGC Put Request
48     [Documentation]    Runs an SDNGC put request
49     [Arguments]    ${data_path}    ${data}
50     ${auth}=  Create List  ${GLOBAL_SDNGC_USERNAME}    ${GLOBAL_SDNGC_PASSWORD}
51     Log    Creating session ${SDNGC_REST_ENDPOINT}
52     ${session}=    Create Session       sdngc   ${SDNGC_REST_ENDPOINT}    auth=${auth}
53     ${uuid}=    Generate UUID4
54     ${headers}=  Create Dictionary     Accept=application/json    Content-Type=application/json    X-TransactionId=${GLOBAL_APPLICATION_ID}-${uuid}    X-FromAppId=${GLOBAL_APPLICATION_ID}
55     ${resp}=    Put Request     sdngc   ${data_path}     data=${data}    headers=${headers}
56     Log    Received response from sdngc ${resp.text}
57     [Return]    ${resp}
58
59 Run SDNGC Post Request
60     [Documentation]    Runs an SDNGC post request
61     [Arguments]    ${data_path}    ${data}
62     ${auth}=  Create List  ${GLOBAL_SDNGC_USERNAME}    ${GLOBAL_SDNGC_PASSWORD}
63     Log    Creating session ${SDNGC_REST_ENDPOINT}
64     ${session}=    Create Session       sdngc   ${SDNGC_REST_ENDPOINT}    auth=${auth}
65     ${uuid}=    Generate UUID4
66     ${headers}=  Create Dictionary     Accept=application/json    Content-Type=application/json    X-TransactionId=${GLOBAL_APPLICATION_ID}-${uuid}    X-FromAppId=${GLOBAL_APPLICATION_ID}
67     ${resp}=    Post Request    sdngc   ${data_path}     data=${data}    headers=${headers}
68     Log    Received response from sdngc ${resp.text}
69     [Return]    ${resp}
70
71 Run SDNGC Delete Request
72     [Documentation]    Runs an SDNGC delete request
73     [Arguments]    ${data_path}
74     ${auth}=  Create List  ${GLOBAL_SDNGC_USERNAME}    ${GLOBAL_SDNGC_PASSWORD}
75     Log    Creating session ${SDNGC_REST_ENDPOINT}
76     ${session}=    Create Session       sdngc   ${SDNGC_REST_ENDPOINT}    auth=${auth}
77     ${uuid}=    Generate UUID4
78     ${headers}=  Create Dictionary     Accept=application/json    Content-Type=application/json    X-TransactionId=${GLOBAL_APPLICATION_ID}-${uuid}    X-FromAppId=${GLOBAL_APPLICATION_ID}
79     ${resp}=    Delete Request  sdngc   ${data_path}        headers=${headers}
80     Log    Received response from sdngc ${resp.text}
81     [Return]    ${resp}
82
83
84 Preload Vnf
85     [Arguments]    ${service_type_uuid}    ${generic_vnf_name}    ${generic_vnf_type}     ${vf_module_name}    ${vf_modules}    ${service}   ${uuid}
86     ${base_vf_module_type}=    Catenate
87     ${closedloop_vf_module}=    Create Dictionary
88     Set Directory    default    ./demo/service_mapping
89     ${templates}=    Get Service Template Mapping    default    ${service}    ${generic_vnf_type}
90     :FOR    ${vf_module}    IN      @{vf_modules}
91     \       ${vf_module_type}=    Get From Dictionary    ${vf_module}    name
92     #     need to pass in vnf_index if non-zero
93     \       ${dict}   Run Keyword If    "${generic_vnf_name}".endswith('0')      Get From Mapping With Index    ${templates}    ${vf_module}   0
94     \       ...    ELSE IF  "${generic_vnf_name}".endswith('1')      Get From Mapping With Index    ${templates}    ${vf_module}   1
95     \       ...    ELSE IF  "${generic_vnf_name}".endswith('2')      Get From Mapping With Index    ${templates}    ${vf_module}   2
96     \       ...    ELSE   Get From Mapping    ${templates}    ${vf_module}
97     #     skip this iteration if no template 
98     \       ${test_dict_length} =  Get Length  ${dict}
99     \       Continue For Loop If   ${test_dict_length} == 0
100     \       ${filename}=    Get From Dictionary    ${dict}    template
101     \       ${base_vf_module_type}=   Set Variable If    '${dict['isBase']}' == 'true'     ${vf_module_type}    ${base_vf_module_type}
102     \       ${closedloop_vf_module}=   Set Variable If    '${dict['isBase']}' == 'false'     ${vf_module}    ${closedloop_vf_module}
103     \       ${vf_name}=     Update Module Name    ${dict}    ${vf_module_name}
104     #    Admin portal update no longer 
105     #\       Preload Vnf Profile    ${vf_module_type}
106     \       Preload One Vnf Topology    ${service_type_uuid}    ${generic_vnf_name}    ${generic_vnf_type}     ${vf_name}    ${vf_module_type}    ${service}    ${filename}   ${uuid}
107     [Return]    ${base_vf_module_type}   ${closedloop_vf_module}
108
109
110 Update Module Name
111     [Arguments]    ${dict}    ${vf_module_name}
112     Return From Keyword If    'prefix' not in ${dict}    ${vf_module_name}
113     Return From Keyword If    '${dict['prefix']}' == ''    ${vf_module_name}
114     ${name}=    Replace String   ${vf_module_name}   Vfmodule_    ${dict['prefix']}
115     [Return]    ${name}
116
117 Get From Mapping With Index
118     [Documentation]    Retrieve the appropriate prelad template entry for the passed vf_module
119     [Arguments]    ${templates}    ${vf_module}   ${vnf_index}=0
120     ${vf_module_name}=    Get From DIctionary    ${vf_module}    name
121     :FOR    ${template}   IN   @{templates}
122     \    Return From Keyword If    '${template['name_pattern']}' in '${vf_module_name}' and ('${template['vnf_index']}' == '${vnf_index}')     ${template}
123     ${result}=    Create Dictionary
124     [Return]    ${result}
125
126 Get From Mapping
127     [Documentation]    Retrieve the appropriate prelad template entry for the passed vf_module
128     [Arguments]    ${templates}    ${vf_module}
129     ${vf_module_name}=    Get From DIctionary    ${vf_module}    name
130     :FOR    ${template}   IN   @{templates}
131     \    Return From Keyword If    '${template['name_pattern']}' in '${vf_module_name}'     ${template}
132     ${result}=    Create Dictionary
133     [Return]    ${result}
134
135 Preload One Vnf Topology
136     [Arguments]    ${service_type_uuid}    ${generic_vnf_name}    ${generic_vnf_type}       ${vf_module_name}    ${vf_module_type}    ${service}    ${filename}   ${uuid}
137     Return From Keyword If    '${filename}' == ''
138     ${parameters}=    Get Template Parameters    ${generic_vnf_name}    ${filename}   ${uuid}
139     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}
140     ${data}=    Fill JSON Template File    ${PRELOAD_VNF_TOPOLOGY_OPERATION_BODY}/preload.template    ${parameters}
141         ${put_resp}=    Run SDNGC Post Request     ${SDNGC_INDEX_PATH}${PRELOAD_VNF_TOPOLOGY_OPERATION_PATH}     ${data}
142     Should Be Equal As Strings  ${put_resp.json()['output']['response-code']}   200
143     ${get_resp}=  Run SDNGC Get Request  ${SDNGC_INDEX_PATH}${PRELOAD_VNF_CONFIG_PATH}/${vf_module_name}/${vf_module_type}
144     Should Be Equal As Strings  ${get_resp.status_code}         200
145
146 Get Template Parameters
147     [Arguments]   ${generic_vnf_name}    ${template}    ${uuid}
148     ${rest}   ${suite}=    Split String From Right    ${SUITE NAME}   .   1
149     ${uuid}=    Catenate    ${uuid}
150     ${hostid}=    Get Substring    ${uuid}    -4
151     ${ecompnet}=    Evaluate    (${GLOBAL_BUILD_NUMBER}%128)+128
152
153
154     # Initialize the value map with the properties generated from the Robot VM /opt/config folder
155     ${valuemap}=   Copy Dictionary    ${GLOBAL_INJECTED_PROPERTIES}
156
157     # These should be deprecated by the above....
158     Set To Dictionary   ${valuemap}   artifacts_version=${GLOBAL_INJECTED_ARTIFACTS_VERSION}
159     Set To Dictionary   ${valuemap}   network=${GLOBAL_INJECTED_NETWORK}
160     Set To Dictionary   ${valuemap}   public_net_id=${GLOBAL_INJECTED_PUBLIC_NET_ID}
161     Set To Dictionary   ${valuemap}   cloud_env=${GLOBAL_INJECTED_CLOUD_ENV}
162     Set To Dictionary   ${valuemap}   install_script_version=${GLOBAL_INJECTED_SCRIPT_VERSION}
163     Set To Dictionary   ${valuemap}   vm_image_name=${GLOBAL_INJECTED_VM_IMAGE_NAME}
164     Set To Dictionary   ${valuemap}   vm_flavor_name=${GLOBAL_INJECTED_VM_FLAVOR}
165
166
167     # update the value map with unique values.
168     Set To Dictionary   ${valuemap}   uuid=${uuid}   hostid=${hostid}    ecompnet=${ecompnet}    generic_vnf_name=${generic_vnf_name}
169
170     #
171     # Mash together the defaults dict with the test case dict to create the set of
172     # preload parameters
173     #
174     ${suite_templates}=    Get From Dictionary    ${GLOBAL_PRELOAD_PARAMETERS}    ${suite}
175     ${template}=    Get From Dictionary    ${suite_templates}    ${template}
176     ${defaults}=    Get From Dictionary    ${GLOBAL_PRELOAD_PARAMETERS}    defaults
177     # add all of the defaults to template...
178     @{keys}=    Get Dictionary Keys    ${defaults}
179     :FOR   ${key}   IN   @{keys}
180     \    ${value}=   Get From Dictionary    ${defaults}    ${key}
181     \    Set To Dictionary    ${template}  ${key}    ${value}
182
183     #
184     # Get the vnf_parameters to preload
185     #
186     ${vnf_parameters}=   Resolve VNF Parameters Into Array   ${valuemap}   ${template}
187     ${vnf_parameters_json}=   Evaluate    json.dumps(${vnf_parameters})    json
188     ${parameters}=   Create Dictionary   vnf_parameters=${vnf_parameters_json}
189     [Return]    ${parameters}
190
191 Resolve Values Into Dictionary
192     [Arguments]   ${valuemap}    ${from}    ${to}
193     ${keys}=    Get Dictionary Keys    ${from}
194     :FOR   ${key}   IN  @{keys}
195     \    ${value}=    Get From Dictionary    ${from}   ${key}
196     \    ${value}=    Template String    ${value}    ${valuemap}
197     \    Set To Dictionary    ${to}    ${key}    ${value}
198
199 Resolve VNF Parameters Into Array
200     [Arguments]   ${valuemap}    ${from}
201     ${vnf_parameters}=   Create List
202     ${keys}=    Get Dictionary Keys    ${from}
203     :FOR   ${key}   IN  @{keys}
204     \    ${value}=    Get From Dictionary    ${from}   ${key}
205     \    ${value}=    Template String    ${value}    ${valuemap}
206     \    ${parameter}=   Create Dictionary   vnf-parameter-name=${key}    vnf-parameter-value=${value}
207     \    Append To List    ${vnf_parameters}   ${parameter}
208     [Return]   ${vnf_parameters}
209
210 Preload Vnf Profile
211     [Arguments]    ${vnf_name}
212     Login To SDNGC Admin GUI
213     Go To    ${SDNGC_ADMIN_VNF_PROFILE_URL}
214     Click Button    xpath=//button[@data-target='#add_vnf_profile']
215     Input Text    xpath=//input[@id='nf_vnf_type']    ${vnf_name}
216     Input Text    xpath=//input[@id='nf_availability_zone_count']    999
217     Input Text    xpath=//input[@id='nf_equipment_role']    robot-ete-test
218     Click Button    xpath=//button[contains(.,'Submit')]
219     Page Should Contain  VNF Profile
220     Input Text    xpath=//div[@id='vnf_profile_filter']//input    ${vnf_name}
221     Page Should Contain  ${vnf_name}
222
223 Delete Vnf Profile
224     [Arguments]    ${vnf_name}
225     Login To SDNGC Admin GUI
226     Go To    ${SDNGC_ADMIN_VNF_PROFILE_URL}
227     Page Should Contain  VNF Profile
228     Input Text    xpath=//div[@id='vnf_profile_filter']//input    ${vnf_name}
229     Page Should Contain  ${vnf_name}
230     Click Button    xpath=//button[contains(@onclick, '${vnf_name}')]
231     Page Should Contain    Are you sure you want to delete VNF_PROFILE
232     Click Button    xpath=//button[contains(text(), 'Yes')]
233     Page Should Not Contain  ${vnf_name}
234
235 Login To SDNGC Admin GUI
236     [Documentation]   Login To SDNGC Admin GUI
237     ## Setup Browser is now being managed by the test case
238     ## Setup Browser
239     Go To    ${SDNGC_ADMIN_SIGNUP_URL}
240     ##Maximize Browser Window
241     Set Selenium Speed    ${GLOBAL_SELENIUM_DELAY}
242     Set Browser Implicit Wait    ${GLOBAL_SELENIUM_BROWSER_IMPLICIT_WAIT}
243     Log    Logging in to ${SDNGC_ADMIN_LOGIN_URL}
244     Handle Proxy Warning
245     Title Should Be    AdminPortal
246     ${uuid}=    Generate UUID4
247     ${shortened_uuid}=     Evaluate    str("${uuid}")[:12]
248     ${email}=        Catenate    ${shortened_uuid}@robotete.com
249     Input Text    xpath=//input[@id='nf_email']    ${email}
250     Input Password    xpath=//input[@id='nf_password']    ${shortened_uuid}
251     Click Button    xpath=//button[@type='submit']
252     Wait Until Page Contains    User created   20s
253     Go To    ${SDNGC_ADMIN_LOGIN_URL}
254     Input Text    xpath=//input[@id='email']    ${email}
255     Input Password    xpath=//input[@id='password']    ${shortened_uuid}
256     Click Button    xpath=//button[@type='submit']
257     Title Should Be    SDN-C AdminPortal
258     Log    Logged in to ${SDNGC_ADMIN_LOGIN_URL}