summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJerry Flood <jf9860@att.com>2017-10-02 10:38:30 -0400
committerJerry Flood <jf9860@att.com>2017-10-02 11:57:14 -0400
commit176d1da82606601252cfaa78358b84ad4e9c42d1 (patch)
tree0933137e561a7efeb814c0a453ad7c5ab8f4d48d
parente4cc6a80261f08b2273379e224b71a89a75de648 (diff)
Update to reference SO IP adderess rather than MSO
Issue: TEST-59 Change-Id: I25c5f83458f0608dbeca49fc498385e0a111895a Signed-off-by: Jerry Flood <jf9860@att.com>
-rw-r--r--robot/resources/mso_interface.robot8
1 files changed, 4 insertions, 4 deletions
diff --git a/robot/resources/mso_interface.robot b/robot/resources/mso_interface.robot
index cff5936b..6bc62296 100644
--- a/robot/resources/mso_interface.robot
+++ b/robot/resources/mso_interface.robot
@@ -1,14 +1,14 @@
*** Settings ***
Documentation The main interface for interacting with MSO. It handles low level stuff like managing the http request library and MSO required fields
Library RequestsLibrary
-Library UUID
+Library UUID
Library OperatingSystem
Library Collections
Resource global_properties.robot
Resource ../resources/json_templater.robot
*** Variables ***
${MSO_HEALTH_CHECK_PATH} /ecomp/mso/infra/globalhealthcheck
-${MSO_ENDPOINT} ${GLOBAL_MSO_SERVER_PROTOCOL}://${GLOBAL_INJECTED_MSO_IP_ADDR}:${GLOBAL_MSO_SERVER_PORT}
+${MSO_ENDPOINT} ${GLOBAL_MSO_SERVER_PROTOCOL}://${GLOBAL_INJECTED_SO_IP_ADDR}:${GLOBAL_MSO_SERVER_PORT}
*** Keywords ***
Run MSO Health Check
@@ -31,7 +31,7 @@ Run MSO Get Request
${resp}= Get Request mso ${data_path} headers=${headers}
Log Received response from mso ${resp.text}
[Return] ${resp}
-
+
Poll MSO Get Request
[Documentation] Runs an MSO get request until a certain status is received. valid values are COMPLETE
[Arguments] ${data_path} ${status}
@@ -44,7 +44,7 @@ Poll MSO Get Request
:FOR ${i} IN RANGE 20
\ ${resp}= Get Request mso ${data_path} headers=${headers}
\ Should Not Contain ${resp.text} FAILED
- \ Log ${resp.json()['request']['requestStatus']['requestState']}
+ \ Log ${resp.json()['request']['requestStatus']['requestState']}
\ ${exit_loop}= Evaluate "${resp.json()['request']['requestStatus']['requestState']}" == "${status}"
\ Exit For Loop If ${exit_loop}
\ Sleep 15s