diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2017-10-23 09:51:13 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2017-10-23 09:55:52 -0700 |
commit | ba8f94de3e8a063c911b52e6bd8225cc67fc01da (patch) | |
tree | 688009b553f6b4548d7d337037be8bf26a473cbc /robot/resources/clamp_interface.robot | |
parent | 85b749bac23adde11ea1f69ced2b4cffbddd0564 (diff) |
Add health check for CLAMP
Change-Id: I8828ae271dc89a43c6d91fc3e108f07278696965
Issue-ID: INT-294
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'robot/resources/clamp_interface.robot')
-rw-r--r-- | robot/resources/clamp_interface.robot | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/robot/resources/clamp_interface.robot b/robot/resources/clamp_interface.robot new file mode 100644 index 00000000..85a8c9e9 --- /dev/null +++ b/robot/resources/clamp_interface.robot @@ -0,0 +1,25 @@ +*** Settings *** +Documentation The main interface for interacting with Microservice Bus. +Library RequestsLibrary + +Resource global_properties.robot + +*** Variables *** +${CLAMP_HEALTH_CHECK_PATH} /restservices/clds/v1/clds/healthcheck +${CLAMP_ENDPOINT} ${GLOBAL_CLAMP_SERVER_PROTOCOL}://${GLOBAL_INJECTED_CLAMP_IP_ADDR}:${GLOBAL_CLAMP_SERVER_PORT} + + +*** Keywords *** +Run CLAMP Health Check + [Documentation] Runs CLAMP Health check + ${resp}= Run CLAMP Get Request ${CLAMP_HEALTH_CHECK_PATH} + Should Be Equal As Integers ${resp.status_code} 200 + +Run CLAMP Get Request + [Documentation] Runs CLAMP Get request + [Arguments] ${data_path} + ${session}= Create Session session ${CLAMP_ENDPOINT} + ${resp}= Get Request session ${data_path} + Should Be Equal As Integers ${resp.status_code} 200 + Log Received response from CLAMP ${resp.text} + [Return] ${resp} |