diff options
author | Jerry Flood <jf9860@att.com> | 2017-03-16 16:44:17 -0400 |
---|---|---|
committer | Jerry Flood <jf9860@att.com> | 2017-03-16 16:46:23 -0400 |
commit | 028e185fb811edc50832241bbe9cda13c04c97e5 (patch) | |
tree | cad8af7915648563921c436b97d10b0f8927e69a /robot/resources | |
parent | 8877bca253caf09b72e0482a093844c71ed730b1 (diff) |
Switch from using GLOBAL_VM_PROPERTIES hash
to GLOBAL_INJECTED_<name> variables
Change-Id: Ibbb28f3eaaa1cbad9b6df64d3b2edf8876c24d51
Signed-off-by: Jerry Flood <jf9860@att.com>
Diffstat (limited to 'robot/resources')
-rw-r--r-- | robot/resources/openstack/keystone_interface.robot | 3 | ||||
-rw-r--r-- | robot/resources/openstack/openstack_common.robot | 3 | ||||
-rw-r--r-- | robot/resources/sdngc_interface.robot | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/robot/resources/openstack/keystone_interface.robot b/robot/resources/openstack/keystone_interface.robot index 6c48e120..63f72451 100644 --- a/robot/resources/openstack/keystone_interface.robot +++ b/robot/resources/openstack/keystone_interface.robot @@ -51,5 +51,4 @@ Set Openstack Credentials [Return] ${user} ${pass} Get Openstack Credentials - Dictionary Should Contain Key ${GLOBAL_VM_PROPERTIES} openstack_username - [Return] ${GLOBAL_VM_PROPERTIES['openstack_username']} ${GLOBAL_VM_PROPERTIES['openstack_password']}
\ No newline at end of file + [Return] ${GLOBAL_INJECTED_OPENSTACK_USERNAME} ${GLOBAL_INJECTED_OPENSTACK_PASSWORD}
\ No newline at end of file diff --git a/robot/resources/openstack/openstack_common.robot b/robot/resources/openstack/openstack_common.robot index ef370c66..7783060c 100644 --- a/robot/resources/openstack/openstack_common.robot +++ b/robot/resources/openstack/openstack_common.robot @@ -67,8 +67,7 @@ Get Openstack Region [Documentation] Returns the current openstack region test variable ... Defaults to the openstack region of the Robot VM Return From Keyword If len('${OPENSTACK_SERVICE_REGION}') > 0 ${OPENSTACK_SERVICE_REGION} - Dictionary Should Contain Key ${GLOBAL_VM_PROPERTIES} region - Set Test Variable ${OPENSTACK_SERVICE_REGION} ${GLOBAL_VM_PROPERTIES['region']} + Set Test Variable ${OPENSTACK_SERVICE_REGION} ${GLOBAL_INJECTED_REGION} Log Setting OPENSTACK_SERVICE_REGION=${OPENSTACK_SERVICE_REGION} [Return] ${OPENSTACK_SERVICE_REGION} diff --git a/robot/resources/sdngc_interface.robot b/robot/resources/sdngc_interface.robot index d413b6e0..ee8d09e8 100644 --- a/robot/resources/sdngc_interface.robot +++ b/robot/resources/sdngc_interface.robot @@ -133,7 +133,9 @@ Get Template Parameters ${hostid}= Get Substring ${uuid} -4 ${ecompnet}= Evaluate ${GLOBAL_BUILD_NUMBER}%255 # Initialize the value map with the properties generated from the Robot VM /opt/config folder - ${valuemap}= Copy Dictionary ${GLOBAL_VM_PROPERTIES} + ${valuemap}= Create Dictionary + Set To Dictionary ${valuemap} artifacts_version=${GLOBAL_INJECTED_ARTIFACTS_VERSION} + Set To Dictionary ${valuemap} network=${GLOBAL_INJECTED_NETWORK} # update the value map with unique values. Set To Dictionary ${valuemap} uuid=${uuid} hostid=${hostid} ecompnet=${ecompnet} ${parameters}= Create Dictionary |