diff options
author | Jerry Flood <jf9860@att.com> | 2017-07-29 07:31:50 -0400 |
---|---|---|
committer | Jerry Flood <jf9860@att.com> | 2017-07-29 07:32:00 -0400 |
commit | 8fd592bc23b14a0875942e2f865479ff330c6b10 (patch) | |
tree | 16c2d16b642c31523a1f2e48679edf8acee8335a /robot | |
parent | 8d6913f1a512f6185b7dd00ca688f71cafebefff (diff) |
Updated the message router URL to reference the
port number
Issue: TEST-45
Change-Id: Ib254dc17dd701b3422cb6d35580907ab2ae619ca
Signed-off-by: Jerry Flood <jf9860@att.com>
Diffstat (limited to 'robot')
-rw-r--r-- | robot/resources/mr_interface.robot | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/robot/resources/mr_interface.robot b/robot/resources/mr_interface.robot index 717fc7c8..1a858f24 100644 --- a/robot/resources/mr_interface.robot +++ b/robot/resources/mr_interface.robot @@ -2,22 +2,22 @@ Documentation The main interface for interacting with Message router. It handles low level stuff like managing the http request library and message router required fields Library RequestsClientCert Library RequestsLibrary -Library UUID +Library UUID Resource global_properties.robot *** Variables *** ${MR_HEALTH_CHECK_PATH} /topics -${MR_ENDPOINT} ${GLOBAL_MR_SERVER_PROTOCOL}://${GLOBAL_INJECTED_MR_IP_ADDR}:${GLOBAL_MR_SERVER_PROTOCOL} +${MR_ENDPOINT} ${GLOBAL_MR_SERVER_PROTOCOL}://${GLOBAL_INJECTED_MR_IP_ADDR}:${GLOBAL_MR_SERVER_PORT} *** Keywords *** Run MR Health Check [Documentation] Runs MR Health check - ${resp}= Run MR Get Request ${MR_HEALTH_CHECK_PATH} + ${resp}= Run MR Get Request ${MR_HEALTH_CHECK_PATH} Should Be Equal As Strings ${resp.status_code} 200 Should Contain ${resp.json()} topics - + Run MR Get Request [Documentation] Runs MR Get request [Arguments] ${data_path} |