aboutsummaryrefslogtreecommitdiffstats
path: root/robot/resources
diff options
context:
space:
mode:
authorDaniel Rose <dr695h@att.com>2018-09-04 14:22:10 +0000
committerGerrit Code Review <gerrit@onap.org>2018-09-04 14:22:10 +0000
commit5b4c864a373cd4636bcff2fbe86a7eed81a24059 (patch)
treea18c0b0bea7e9f592d74c1f9a78a9b8099a42821 /robot/resources
parent7f02ef3df71c330a7efa67388764a1d3ed11f451 (diff)
parentd7400a150b94cd7a1ded43f8ce63130fa168d827 (diff)
Merge "Add healthcheck for Data-Router"
Diffstat (limited to 'robot/resources')
-rw-r--r--robot/resources/dr_interface.robot24
1 files changed, 24 insertions, 0 deletions
diff --git a/robot/resources/dr_interface.robot b/robot/resources/dr_interface.robot
new file mode 100644
index 00000000..ff57435e
--- /dev/null
+++ b/robot/resources/dr_interface.robot
@@ -0,0 +1,24 @@
+*** Settings ***
+Documentation The main interface for interacting with Data-Router.
+Library RequestsLibrary
+
+Resource global_properties.robot
+
+*** Variables ***
+${DR_HEALTH_CHECK_PATH} /internal/fetchProv
+${DR_ENDPOINT} ${GLOBAL_DMAAP_DR_NODE_SERVER_PROTOCOL}://${GLOBAL_INJECTED_DMAAP_DR_NODE_IP_ADDR}:${GLOBAL_DMAAP_DR_NODE_SERVER_PORT}
+
+
+*** Keywords ***
+Run DR Health Check
+ [Documentation] Runs DR Health check
+ ${resp}= Run DR Get Request ${DR_HEALTH_CHECK_PATH}
+ Should Be Equal As Strings ${resp.status_code} 204
+
+Run DR Get Request
+ [Documentation] Runs DR Get request
+ [Arguments] ${data_path}
+ ${session}= Create Session session ${DR_ENDPOINT}
+ ${resp}= Get Request session ${data_path}
+ Log Received response from data router ${resp.text}
+ [Return] ${resp}