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 ++++++++++++++++++++++++ robot/testsuites/health-check.robot | 5 +++++ version.properties | 2 +- 3 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 robot/resources/dcae_ms_interface.robot 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 diff --git a/robot/testsuites/health-check.robot b/robot/testsuites/health-check.robot index 92335d62..9344e5a8 100644 --- a/robot/testsuites/health-check.robot +++ b/robot/testsuites/health-check.robot @@ -28,6 +28,7 @@ Resource ../resources/dr_interface.robot Resource ../resources/pomba_interface.robot Resource ../resources/holmes_interface.robot Resource ../resources/cds_interface.robot +Resource ../resources/dcae_ms_interface.robot *** Test Cases *** @@ -64,6 +65,10 @@ Basic DCAE Health Check [Tags] health medium health-dcaegen2 Run DCAE Health Check +Basic DCAE Microservices Health Check + [Tags] health medium health-dcaegen2-services + Run DCAE Microservices Health Check + Basic DMAAP Data Router Health Check [Tags] health datarouter health-dmaap Run DR Health Check diff --git a/version.properties b/version.properties index 6d929e5d..df4b0252 100644 --- a/version.properties +++ b/version.properties @@ -4,7 +4,7 @@ major=1 minor=7 -patch=3 +patch=4 base_version=${major}.${minor}.${patch} -- cgit 1.2.3-korg