From 72885bb25ecb5fac935e27a34df6b3b3860e7115 Mon Sep 17 00:00:00 2001 From: Jack Lucas Date: Sat, 6 Mar 2021 13:54:40 -0500 Subject: Add DCAE Microservice Health Check Issue-ID: DCAEGEN2-2660 Signed-off-by: Jack Lucas Change-Id: I0f7488008e7595e493176138b5f449b33ddb0f1b --- robot/resources/dcae_ms_interface.robot | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 robot/resources/dcae_ms_interface.robot (limited to 'robot/resources') diff --git a/robot/resources/dcae_ms_interface.robot b/robot/resources/dcae_ms_interface.robot new file mode 100644 index 00000000..a32bdcf8 --- /dev/null +++ b/robot/resources/dcae_ms_interface.robot @@ -0,0 +1,24 @@ +*** Settings *** +Documentation The main interface for interacting with DCAE Helm-deployed microservices. It handles low level stuff like managing the http request library and DCAE required fields +Library RequestsLibrary +Library ONAPLibrary.Utilities +Library OperatingSystem +Library Collections +Resource global_properties.robot + +*** Variables *** +${DCAE_MS_HEALTH_CHECK_PATH} /healthcheck +${DCAE_MS_HEALTH_ENDPOINT} ${GLOBAL_DCAE_MS_SERVER_PROTOCOL}://${GLOBAL_INJECTED_DCAE_MS_IP_ADDR}:${GLOBAL_DCAE_MS_HEALTH_SERVER_PORT} + +*** Keywords *** +Run DCAE Microservices Health Check + [Documentation] Runs a DCAE Microservices health check + ${auth}= Create List ${GLOBAL_DCAE_MS_USERNAME} ${GLOBAL_DCAE_MS_PASSWORD} + Log Creating session ${DCAE_MS_HEALTH_ENDPOINT} + ${session}= Create Session dcae ${DCAE_MS_HEALTH_ENDPOINT} auth=${auth} + ${uuid}= Generate UUID4 + ${headers}= Create Dictionary X-ECOMP-Client-Version=ONAP-R2 action=getTable Accept=application/json Content-Type=application/json X-TransactionId=${GLOBAL_APPLICATION_ID}-${uuid} X-FromAppId=${GLOBAL_APPLICATION_ID} + ${resp}= Get Request dcae ${DCAE_MS_HEALTH_CHECK_PATH} headers=${headers} + Log Received response code from dcae ${resp} + Log Received content from dcae ${resp.content} + Should Be Equal As Strings ${resp.status_code} 200 -- cgit 1.2.3-korg