Fix asdc/sdngc interface robot
[oom.git] / kubernetes / config / docker / init / src / config / robot / 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           UUID      
5 Library    OperatingSystem
6 Library             ExtendedSelenium2Library
7 Library         Collections
8 Library      String
9 Library      StringTemplater
10 Resource          global_properties.robot
11 Resource          ../resources/json_templater.robot
12 Resource        browser_setup.robot
13
14 Variables    ../assets/service_mappings.py
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 UUID
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 UUID
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 UUID
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 UUID
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     ${templates}=    Get From Dictionary    ${GLOBAL_SERVICE_TEMPLATE_MAPPING}    ${service}
89     :for    ${vf_module}    in      @{vf_modules}
90     \       ${vf_module_type}=    Get From Dictionary    ${vf_module}    name
91     \       ${dict}   Get From Mapping    ${templates}    ${vf_module}
92     \       ${filename}=    Get From Dictionary    ${dict}    template
93     \       ${base_vf_module_type}=   Set Variable If    '${dict['isBase']}' == 'true'     ${vf_module_type}    ${base_vf_module_type}
94     \       ${closedloop_vf_module}=   Set Variable If    '${dict['isBase']}' == 'false'     ${vf_module}    ${closedloop_vf_module}
95     \       ${vf_name}=     Update Module Name    ${dict}    ${vf_module_name}  
96     \       Preload Vnf Profile    ${vf_module_type}     
97     \       Preload One Vnf Topology    ${service_type_uuid}    ${generic_vnf_name}    ${generic_vnf_type}     ${vf_name}    ${vf_module_type}    ${service}    ${filename}   ${uuid}
98     [Return]    ${base_vf_module_type}   ${closedloop_vf_module}    
99
100
101 Update Module Name
102     [Arguments]    ${dict}    ${vf_module_name}
103     Return From Keyword If    'prefix' not in ${dict}    ${vf_module_name}
104     Return From Keyword If    '${dict['prefix']}' == ''    ${vf_module_name}
105     ${name}=    Replace String   ${vf_module_name}   Vfmodule_    ${dict['prefix']} 
106     [Return]    ${name}           
107
108 Get From Mapping
109     [Documentation]    Retrieve the appropriate prelad template entry for the passed vf_module    
110     [Arguments]    ${templates}    ${vf_module}
111     ${vf_module_name}=    Get From DIctionary    ${vf_module}    name
112     :for    ${template}   in   @{templates} 
113     \    Return From Keyword If    '${template['name_pattern']}' in '${vf_module_name}'     ${template}    
114     [Return]    None  
115            
116 Preload One Vnf Topology
117     [Arguments]    ${service_type_uuid}    ${generic_vnf_name}    ${generic_vnf_type}       ${vf_module_name}    ${vf_module_type}    ${service}    ${filename}   ${uuid}
118     Return From Keyword If    '${filename}' == ''
119     ${data_template}=    OperatingSystem.Get File    ${PRELOAD_VNF_TOPOLOGY_OPERATION_BODY}/preload.template
120     ${parameters}=    Get Template Parameters    ${filename}   ${uuid}
121     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}    uuid=${uuid}
122     ${data}=    Fill JSON Template    ${data_template}    ${parameters}        
123         ${put_resp}=    Run SDNGC Post Request     ${SDNGC_INDEX_PATH}${PRELOAD_VNF_TOPOLOGY_OPERATION_PATH}     ${data}
124     Should Be Equal As Strings  ${put_resp.json()['output']['response-code']}   200   
125     ${get_resp}=  Run SDNGC Get Request  ${SDNGC_INDEX_PATH}${PRELOAD_VNF_CONFIG_PATH}/${vf_module_name}/${vf_module_type}
126     Should Be Equal As Strings  ${get_resp.status_code}         200
127
128 Get Template Parameters
129     [Arguments]    ${template}    ${uuid}
130     ${rest}   ${suite}=    Split String From Right    ${SUITE NAME}   .   1
131     ${uuid}=    Catenate    ${uuid}
132     ${hostid}=    Get Substring    ${uuid}    -4
133     ${ecompnet}=    Evaluate    ${GLOBAL_BUILD_NUMBER}%255
134     # Initialize the value map with the properties generated from the Robot VM /opt/config folder
135     ${valuemap}=   Create Dictionary
136     Set To Dictionary   ${valuemap}   artifacts_version=${GLOBAL_INJECTED_ARTIFACTS_VERSION}
137     Set To Dictionary   ${valuemap}   network=${GLOBAL_INJECTED_NETWORK} 
138     Set To Dictionary   ${valuemap}   public_net_id=${GLOBAL_INJECTED_PUBLIC_NET_ID}
139     Set To Dictionary   ${valuemap}   cloud_env=${GLOBAL_INJECTED_CLOUD_ENV}
140     Set To Dictionary   ${valuemap}   install_script_version=${GLOBAL_INJECTED_SCRIPT_VERSION}
141     Set To Dictionary   ${valuemap}   vm_image_name=${GLOBAL_INJECTED_VM_IMAGE_NAME}
142     Set To Dictionary   ${valuemap}   vm_flavor_name=${GLOBAL_INJECTED_VM_FLAVOR}
143     # update the value map with unique values.
144     Set To Dictionary   ${valuemap}   uuid=${uuid}   hostid=${hostid}    ecompnet=${ecompnet}
145     ${parameters}=    Create Dictionary
146     ${defaults}=    Get From Dictionary    ${GLOBAL_PRELOAD_PARAMETERS}    defaults
147     Resolve Values Into Dictionary   ${valuemap}   ${defaults}    ${parameters}
148     ${suite_templates}=    Get From Dictionary    ${GLOBAL_PRELOAD_PARAMETERS}    ${suite}
149     ${template}=    Get From Dictionary    ${suite_templates}    ${template}
150     ${vnf_parameters}=   Resolve VNF Parameters Into Array   ${valuemap}   ${template}    ${parameters}
151     ${vnf_parameters_json}=   Evaluate    json.dumps(${vnf_parameters})    json
152     Set To Dictionary   ${parameters}   vnf_parameters=${vnf_parameters_json}
153     [Return]    ${parameters}
154    
155 Resolve Values Into Dictionary    
156     [Arguments]   ${valuemap}    ${from}    ${to}
157     ${keys}=    Get Dictionary Keys    ${from}
158     :for   ${key}   in  @{keys}
159     \    ${value}=    Get From Dictionary    ${from}   ${key}
160     \    ${value}=    Template String    ${value}    ${valuemap}
161     \    Set To Dictionary    ${to}    ${key}    ${value}
162
163 Resolve VNF Parameters Into Array
164     [Arguments]   ${valuemap}    ${from}    ${to}
165     ${vnf_parameters}=   Create List
166     ${keys}=    Get Dictionary Keys    ${from}
167     :for   ${key}   in  @{keys}
168     \    ${value}=    Get From Dictionary    ${from}   ${key}
169     \    ${value}=    Template String    ${value}    ${valuemap}
170     \    ${parameter}=   Create Dictionary   vnf-parameter-name=${key}    vnf-parameter-value=${value}
171     \    Append To List    ${vnf_parameters}   ${parameter}
172     [Return]   ${vnf_parameters}
173      
174 Preload Vnf Profile
175     [Arguments]    ${vnf_name}
176     Login To SDNGC Admin GUI
177     Go To    ${SDNGC_ADMIN_VNF_PROFILE_URL}
178     Click Button    xpath=//button[@data-target='#add_vnf_profile']
179     Input Text    xpath=//input[@id='nf_vnf_type']    ${vnf_name}
180     Input Text    xpath=//input[@id='nf_availability_zone_count']    999
181     Input Text    xpath=//input[@id='nf_equipment_role']    robot-ete-test
182     Click Button    xpath=//button[contains(.,'Submit')]
183     Page Should Contain  VNF Profile 
184     Input Text    xpath=//div[@id='vnf_profile_filter']//input    ${vnf_name}
185     Page Should Contain  ${vnf_name}  
186
187 Delete Vnf Profile
188     [Arguments]    ${vnf_name}
189     Login To SDNGC Admin GUI
190     Go To    ${SDNGC_ADMIN_VNF_PROFILE_URL}
191     Page Should Contain  VNF Profile 
192     Input Text    xpath=//div[@id='vnf_profile_filter']//input    ${vnf_name}
193     Page Should Contain  ${vnf_name}
194     Click Button    xpath=//button[contains(@onclick, '${vnf_name}')]    
195     Page Should Contain    Are you sure you want to delete VNF_PROFILE
196     Click Button    xpath=//button[contains(text(), 'Yes')]
197     Page Should Not Contain  ${vnf_name}
198         
199 Login To SDNGC Admin GUI
200     [Documentation]   Login To SDNGC Admin GUI
201     ## Setup Browser is now being managed by the test case 
202     ## Setup Browser
203     Go To    ${SDNGC_ADMIN_SIGNUP_URL}
204     ##Maximize Browser Window
205     Set Selenium Speed    ${GLOBAL_SELENIUM_DELAY}
206     Set Browser Implicit Wait    ${GLOBAL_SELENIUM_BROWSER_IMPLICIT_WAIT}
207     Log    Logging in to ${SDNGC_ADMIN_LOGIN_URL}
208     Handle Proxy Warning
209     Title Should Be    AdminPortal
210     ${uuid}=    Generate UUID  
211     ${shortened_uuid}=     Evaluate    str("${uuid}")[:12]
212     ${email}=        Catenate    ${shortened_uuid}@robotete.com
213     Input Text    xpath=//input[@id='nf_email']    ${email}
214     Input Password    xpath=//input[@id='nf_password']    ${shortened_uuid}
215     Click Button    xpath=//button[@type='submit']
216     Wait Until Page Contains    User created   20s
217     Go To    ${SDNGC_ADMIN_LOGIN_URL}
218     Input Text    xpath=//input[@id='email']    ${email}
219     Input Password    xpath=//input[@id='password']    ${shortened_uuid}
220     Click Button    xpath=//button[@type='submit']
221     Title Should Be    SDN-C AdminPortal
222     Log    Logged in to ${SDNGC_ADMIN_LOGIN_URL}