summaryrefslogtreecommitdiffstats
path: root/robot/resources/dcae_interface.robot
diff options
context:
space:
mode:
authorMariusz Wagner <mariusz.wagner@nokia.com>2018-09-25 12:35:22 +0200
committerMariusz Wagner <mariusz.wagner@nokia.com>2018-09-25 12:35:22 +0200
commit3a6ff9be81f284d23b0170231de9aa9591f7e59b (patch)
treeb217e34b5d201c16de144543832e9ce099a02e1a /robot/resources/dcae_interface.robot
parentc437d7f86df29d409ab3251309895e1c89df772c (diff)
Healthcheck for PRH and HV-VES
It cover healthcheck requirments for issue INT-650 and INT-651 Issue-ID: INT-651 Change-Id: I19b90161c193a68e5e5d3f13d3cf2600bb8d8961 Signed-off-by: Mariusz Wagner <mariusz.wagner@nokia.com>
Diffstat (limited to 'robot/resources/dcae_interface.robot')
-rw-r--r--robot/resources/dcae_interface.robot13
1 files changed, 13 insertions, 0 deletions
diff --git a/robot/resources/dcae_interface.robot b/robot/resources/dcae_interface.robot
index dd804503..9b447ded 100644
--- a/robot/resources/dcae_interface.robot
+++ b/robot/resources/dcae_interface.robot
@@ -8,7 +8,10 @@ Resource global_properties.robot
*** Variables ***
${DCAE_HEALTH_CHECK_PATH} /healthcheck
+${VES_HV_HEALTH_CHECK_PATH} /health/ready
${DCAE_HEALTH_ENDPOINT} ${GLOBAL_DCAE_SERVER_PROTOCOL}://${GLOBAL_INJECTED_DCAE_IP_ADDR}:${GLOBAL_DCAE_HEALTH_SERVER_PORT}
+${VES_HV_HEALTH_ENDPOINT} ${GLOBAL_DCAE_SERVER_PROTOCOL}://${GLOBAL_DNS_VES_NAME}:${GLOBAL_HV_VES_HEALTH_SERVER_PORT}
+
*** Keywords ***
Run DCAE Health Check
@@ -22,3 +25,13 @@ Run DCAE Health Check
Log Received response code from dcae ${resp}
Log Received content from dcae ${resp.content}
Should Be Equal As Strings ${resp.status_code} 200
+
+Run VES-HV Health Check
+ [Documentation] Runs a VES-HV health check
+ Log Creating session ${VES_HV_HEALTH_ENDPOINT}
+ ${session}= Create Session hv-ves ${VES_HV_HEALTH_ENDPOINT}
+ ${uuid}= Generate UUID
+ ${resp}= Get Request hv-ves ${VES_HV_HEALTH_CHECK_PATH}
+ Log Received response code from hv-ves ${resp}
+ Log Received content from hv-ves ${resp.content}
+ Should Be Equal As Strings ${resp.status_code} 200