change properties to match what is in the new oom repo
[testsuite.git] / robot / resources / aaf_interface.robot
index 15de39c..3e1f3e4 100644 (file)
@@ -1,8 +1,7 @@
 *** Settings ***
 Documentation    The main interface for interacting with AAF. It handles low level stuff like managing the http request library and AAF required fields
-Library                  RequestsClientCert
 Library              RequestsLibrary
-Library                  UUID      
+Library                  ONAPLibrary.Utilities   
 
 Resource          global_properties.robot
 
@@ -19,10 +18,8 @@ Run AAF Health Check
 Run AAF Get Request
      [Documentation]    Runs AAF Get request
      [Arguments]    ${data_path}
-     ${auth}=  Create List  ${GLOBAL_AAF_USERNAME}    ${GLOBAL_AAF_PASSWORD}
-     ${session}=    Create Session     aaf     ${GLOBAL_AAF_SERVER}    auth=${auth}
-     #${session_client}=    Add Client Cert    ${session}    cert
-     ${uuid}=    Generate UUID
+     ${session}=    Create Session     aaf     ${GLOBAL_AAF_SERVER}    auth=${GLOBAL_AAF_AUTHENTICATION}
+     ${uuid}=    Generate UUID4
      ${headers}=  Create Dictionary     Accept=application/json    Content-Type=application/json    X-TransactionId=${GLOBAL_APPLICATION_ID}-${uuid}    X-FromAppId=${GLOBAL_APPLICATION_ID}
      ${resp}=  Get Request     aaf     ${data_path}     headers=${headers}
      Log    Received response from aaf ${resp.text}