| *** Settings *** |
| Documentation The main interface for interacting with MUSIC. It handles low level stuff like managing the http request library and MUSIC required fields |
| Library RequestsClientCert |
| Library RequestsLibrary |
| Library UUID |
| |
| Resource ../global_properties.robot |
| |
| *** Variables *** |
| ${MUSIC_HEALTH_CHECK_PATH} /MUSIC/rest/v2/version |
| ${MUSIC_ENDPOINT} ${GLOBAL_MUSIC_SERVER_PROTOCOL}://${GLOBAL_INJECTED_MUSIC_IP_ADDR}:${GLOBAL_MUSIC_SERVER_PORT} |
| |
| *** Keywords *** |
| Run MUSIC Health Check |
| [Documentation] Runs MUSIC Health check |
| ${resp}= Run MUSIC Get Request ${MUSIC_HEALTH_CHECK_PATH} |
| Should Be Equal As Strings ${resp.status_code} 200 |
| Should Be Equal As Strings ${resp.json()['status']} SUCCESS |
| |
| Run MUSIC Get Request |
| [Documentation] Runs MUSIC Get request |
| [Arguments] ${data_path} |
| ${session}= Create Session music ${MUSIC_ENDPOINT} |
| ${uuid}= Generate UUID |
| ${headers}= Create Dictionary Accept=application/json Content-Type=application/json X-TransactionId=${GLOBAL_APPLICATION_ID}-${uuid} X-FromAppId=${GLOBAL_APPLICATION_ID} |
| ${resp}= Get Request music ${data_path} headers=${headers} |
| Log Received response from music ${resp.text} |
| [Return] ${resp} |