From d5bc0b81b17e0751e13271e9c3907789175ffdff Mon Sep 17 00:00:00 2001 From: GuangrongFu Date: Tue, 16 Oct 2018 17:59:57 +0800 Subject: Added Health Check for Holmes Change-Id: I4bc4c1832e1fe20066f16c719631c40af0ef5788 Issue-ID: HOLMES-176 Signed-off-by: GuangrongFu --- robot/resources/holmes_interface.robot | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 robot/resources/holmes_interface.robot (limited to 'robot/resources/holmes_interface.robot') diff --git a/robot/resources/holmes_interface.robot b/robot/resources/holmes_interface.robot new file mode 100644 index 00000000..6d30aa04 --- /dev/null +++ b/robot/resources/holmes_interface.robot @@ -0,0 +1,28 @@ +*** Settings *** +Library RequestsLibrary +Resource global_properties.robot + +*** Variables *** +${MSB_ENDPOINT} ${GLOBAL_MSB_SERVER_PROTOCOL}://${GLOBAL_INJECTED_MSB_IP_ADDR}:${GLOBAL_MSB_SERVER_PORT} +${HOLMES_RULE_HEALTH_CHECK} /api/holmes-rule-mgmt/v1/healthcheck +${HOLMES_ENGINE_HEALTH_CHECK} /api/holmes-engine-mgmt/v1/healthcheck + +*** Keywords *** +Run Holmes Rule Mgmt Healthcheck + [Documentation] Run Holmes Rule Management Health Check + ${resp}= Run Holmes Get Request ${HOLMES_RULE_HEALTH_CHECK} + Should Be Equal As Integers ${resp.status_code} 200 + +Run Holmes Engine Mgmt Healthcheck + [Documentation] Run Holmes Engine Management Health Check + ${resp}= Run Holmes Get Request ${HOLMES_ENGINE_HEALTH_CHECK} + Should Be Equal As Integers ${resp.status_code} 200 + +Run Holmes Get Request + [Arguments] ${data_path} + [Documentation] Runs Holmes Get request + ${session}= Create Session holmes ${MSB_ENDPOINT} + ${resp}= Get Request holmes ${data_path} + Should Be Equal As Integers ${resp.status_code} 200 + Log Received response from server ${resp.text} + [Return] ${resp} -- cgit 1.2.3-korg