summaryrefslogtreecommitdiffstats
path: root/robot/resources/mso_interface.robot
diff options
context:
space:
mode:
authorBrian Freeman <bf1936@att.com>2018-08-11 15:20:58 -0500
committerBrian Freeman <bf1936@att.com>2018-08-11 15:21:21 -0500
commit391680ad4e62b725e9e40e1bdcdaf48b4875fd28 (patch)
tree2bef38b9478453e08dc0104947d11c27e5443e5e /robot/resources/mso_interface.robot
parenta150c9e26fce6cf29a504ed42329d97a7857c2dd (diff)
Updates for SO Containers and change mso to so
Issue-ID: INT-621 Change-Id: Iad1ae6f08e91c46482d49b6cf1e3e41ebf0cd271 Signed-off-by: Brian Freeman <bf1936@att.com>
Diffstat (limited to 'robot/resources/mso_interface.robot')
-rw-r--r--robot/resources/mso_interface.robot93
1 files changed, 0 insertions, 93 deletions
diff --git a/robot/resources/mso_interface.robot b/robot/resources/mso_interface.robot
deleted file mode 100644
index bded5282..00000000
--- a/robot/resources/mso_interface.robot
+++ /dev/null
@@ -1,93 +0,0 @@
-*** 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 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_SO_IP_ADDR}:${GLOBAL_MSO_SERVER_PORT}
-
-*** Keywords ***
-Run MSO Health Check
- [Documentation] Runs an MSO global health check
- ${auth}= Create List ${GLOBAL_MSO_USERNAME} ${GLOBAL_MSO_PASSWORD}
- ${session}= Create Session mso ${MSO_ENDPOINT}
- ${uuid}= Generate UUID
- ${headers}= Create Dictionary Accept=text/html Content-Type=text/html X-TransactionId=${GLOBAL_APPLICATION_ID}-${uuid} X-FromAppId=${GLOBAL_APPLICATION_ID}
- ${resp}= Get Request mso ${MSO_HEALTH_CHECK_PATH} headers=${headers}
- Should Be Equal As Strings ${resp.status_code} 200
-
-Run MSO Get ModelInvariantId
- [Documentation] Runs an MSO Get ModelInvariantID for ClosedLoop Polieis
- [Arguments] ${service_model_name} ${vf_module_label}=NULL
- ${param_dict}= Create Dictionary serviceModelName ${service_model_name}
- ${param}= Evaluate urllib.urlencode(${param_dict}) urllib
- ${data_path}= Catenate SEPARATOR= /ecomp/mso/catalog/v2/serviceVnfs? ${param}
- ${resp}= Run MSO Get Request ${data_path}
- Log ${resp.json()}
- # ${resp.json()['serviceVnfs'][0]['vfModules'][0]['vfModuleLabel'] should be 'base_vpkg'
- ${model_invariant_id}= Set Variable NULL
- @{ITEMS}= Copy List ${resp.json()['serviceVnfs']}
- :FOR ${ELEMENT} IN @{ITEMS}
- \ Log ${ELEMENT['vfModules']}
- \ ${model_invariant_id} Set Variable If ('${vf_module_label}' in '${ELEMENT['vfModules'][0]['vfModuleLabel']}') ${ELEMENT['modelInfo']['modelInvariantUuid']} NULL
- \ Exit For Loop If '${model_invariant_id}' != 'NULL'
- [Return] ${model_invariant_id}
-
-Run MSO Get Request
- [Documentation] Runs an MSO get request
- [Arguments] ${data_path} ${accept}=application/json
- ${auth}= Create List ${GLOBAL_MSO_USERNAME} ${GLOBAL_MSO_PASSWORD}
- Log Creating session ${MSO_ENDPOINT}
- ${session}= Create Session mso ${MSO_ENDPOINT} auth=${auth}
- ${uuid}= Generate UUID
- ${headers}= Create Dictionary Accept=${accept} Content-Type=application/json X-TransactionId=${GLOBAL_APPLICATION_ID}-${uuid} X-FromAppId=${GLOBAL_APPLICATION_ID}
- ${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}
- ${auth}= Create List ${GLOBAL_MSO_USERNAME} ${GLOBAL_MSO_PASSWORD}
- Log Creating session ${MSO_ENDPOINT}
- ${session}= Create Session mso ${MSO_ENDPOINT} auth=${auth}
- ${uuid}= Generate UUID
- ${headers}= Create Dictionary Accept=application/json Content-Type=application/json X-TransactionId=${GLOBAL_APPLICATION_ID}-${uuid} X-FromAppId=${GLOBAL_APPLICATION_ID}
- #do this until it is done
- :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']}
- \ ${exit_loop}= Evaluate "${resp.json()['request']['requestStatus']['requestState']}" == "${status}"
- \ Exit For Loop If ${exit_loop}
- \ Sleep 15s
- Log Received response from mso ${resp.text}
- [Return] ${resp}
-
-Run MSO Post request
- [Documentation] Runs an MSO post request
- [Arguments] ${data_path} ${data}
- ${auth}= Create List ${GLOBAL_MSO_USERNAME} ${GLOBAL_MSO_PASSWORD}
- Log Creating session ${MSO_ENDPOINT}
- ${session}= Create Session mso ${MSO_ENDPOINT} auth=${auth}
- ${uuid}= Generate UUID
- ${headers}= Create Dictionary Accept=application/json Content-Type=application/json X-TransactionId=${GLOBAL_APPLICATION_ID}-${uuid} X-FromAppId=${GLOBAL_APPLICATION_ID}
- ${resp}= Post Request mso ${data_path} data=${data} headers=${headers}
- Log Received response from mso ${resp.text}
- [Return] ${resp}
-
-Run MSO Delete request
- [Documentation] Runs an MSO Delete request
- [Arguments] ${data_path} ${data}
- ${auth}= Create List ${GLOBAL_MSO_USERNAME} ${GLOBAL_MSO_PASSWORD}
- Log Creating session ${MSO_ENDPOINT}
- ${session}= Create Session mso ${MSO_ENDPOINT} auth=${auth}
- ${uuid}= Generate UUID
- ${headers}= Create Dictionary Accept=application/json Content-Type=application/json X-TransactionId=${GLOBAL_APPLICATION_ID}-${uuid} X-FromAppId=${GLOBAL_APPLICATION_ID}
- ${resp}= Delete Request mso ${data_path} ${data} headers=${headers}
- Log Received response from mso ${resp.text}
- [Return] ${resp}