onap on kubernetes source files
[oom.git] / kubernetes / config / docker / init / src / config / robot / robot / resources / aaf_interface.robot
1 *** Settings ***
2 Documentation     The main interface for interacting with AAF. It handles low level stuff like managing the http request library and AAF required fields
3 Library           RequestsClientCert
4 Library               RequestsLibrary
5 Library           UUID      
6
7 Resource          global_properties.robot
8
9 *** Variables ***
10 ${AAF_HEALTH_CHECK_PATH}        /authz/nss/org.openecomp
11
12 *** Keywords ***
13 Run AAF Health Check
14      [Documentation]    Runs AAF Health check
15      ${resp}=    Run AAF Get Request    ${AAF_HEALTH_CHECK_PATH}    
16      Should Be Equal As Strings         ${resp.status_code}     200
17      Should Contain    ${resp.json()}    ns
18          
19 Run AAF Get Request
20      [Documentation]    Runs AAF Get request
21      [Arguments]    ${data_path}
22      ${auth}=  Create List  ${GLOBAL_AAF_USERNAME}    ${GLOBAL_AAF_PASSWORD}
23      ${session}=    Create Session      aaf     ${GLOBAL_AAF_SERVER}    auth=${auth}
24      ${uuid}=    Generate UUID
25      ${headers}=  Create Dictionary     Accept=application/json    Content-Type=application/json    X-TransactionId=${GLOBAL_APPLICATION_ID}-${uuid}    X-FromAppId=${GLOBAL_APPLICATION_ID}
26      ${resp}=   Get Request     aaf     ${data_path}     headers=${headers}
27      Log    Received response from aaf ${resp.text}
28      [Return]    ${resp}
29