diff options
author | rajendrajaiswal <rajendra.jaiswal@ericsson.com> | 2019-11-25 12:18:51 +0000 |
---|---|---|
committer | Daniel Rose <dr695h@att.com> | 2020-01-17 20:01:39 +0000 |
commit | 9b723a87afa7081cb4f03e2c5c45f4848486d365 (patch) | |
tree | d5d23285164b2d90a1f84d1a808bf53d43fe9f32 /robot/resources/usecases | |
parent | 4429aa33f676ffd494ef8621326e13050aa7be2a (diff) |
Add Bulk PM "Data Plane" Usecase Testcase Robot Automation
Change-Id: If7ec8c953f0ad61c427d6533f235b3cf61b9fffc
Issue-ID: INT-1375
Signed-off-by: rajendrajaiswal <rajendra.jaiswal@ericsson.com>
Diffstat (limited to 'robot/resources/usecases')
-rw-r--r-- | robot/resources/usecases/5gbulkpm_interface.robot | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/robot/resources/usecases/5gbulkpm_interface.robot b/robot/resources/usecases/5gbulkpm_interface.robot new file mode 100644 index 00000000..b87f17f4 --- /dev/null +++ b/robot/resources/usecases/5gbulkpm_interface.robot @@ -0,0 +1,40 @@ +*** Settings *** +Documentation The main interface for interacting with 5G Bulkpm. +Library RequestsLibrary +Library OperatingSystem +Library String + +*** Variables *** +${INVENTORY_SERVER} ${GLOBAL_INVENTORY_SERVER_PROTOCOL}://${GLOBAL_INVENTORY_SERVER_NAME}:${GLOBAL_INVENTORY_SERVER_PORT} +${DEPLOYMENT_SERVER} ${GLOBAL_DEPLOYMENT_HANDLER_SERVER_PROTOCOL}://${GLOBAL_DEPLOYMENT_HANDLER_SERVER_NAME}:${GLOBAL_DEPLOYMENT_HANDLER_SERVER_PORT} +${DR_ENDPOINT} ${GLOBAL_DMAAP_DR_PROV_SERVER_PROTOCOL}://${GLOBAL_INJECTED_DMAAP_DR_PROV_IP_ADDR}:${GLOBAL_DMAAP_DR_PROV_SERVER_PORT} +${MR_ENDPOINT} ${GLOBAL_MR_SERVER_PROTOCOL}://${GLOBAL_DMAAP_MESSAGE_ROUTER_SERVER_NAME}:${GLOBAL_DMAAP_MESSAGE_ROUTER_SERVER_PORT} +${DMAAP_BC_SERVER} ${GLOBAL_BC_SERVER_PROTOCOL}://${GLOBAL_INJECTED_BC_IP_ADDR}:${GLOBAL_BC_HTTPS_SERVER_PORT} +${VES_HEALTH_CHECK_PATH} ${GLOBAL_DCAE_VES_PROTOCOL}://${GLOBAL_INJECTED_DCAE_VES_HOST}:${GLOBAL_DCAE_VES_SERVER_PORT} + +*** Keywords *** +Undeploy Service + [Arguments] ${server} ${endpoint} + ${session}= Create Session deployment ${server} + ${resp}= Delete Request deployment ${endpoint} + [Return] ${resp} + +Deployment Status + [Arguments] ${server} ${endpoint} ${deployment} ${operationId} + ${session}= Create Session deployment-status ${server} + ${resp}= Get Request deployment-status /${endpoint}/${deployment}/operation/${operationId} + ${status} Set Variable ${resp.json().get('status')} + Should Be Equal As Strings ${status} succeeded + +xNF PM File Validate + [Arguments] ${value} + ${resp}= Run MR Auth Get Request ${MR_TOPIC_URL_PATH} ${GLOBAL_DCAE_USERNAME} ${GLOBAL_DCAE_PASSWORD} + Should Contain ${resp.text} ${value} + +Usecase Teardown + Undeploy Service ${DEPLOYMENT_SERVER} /${DEPLOYMENT_ENDPOINT}/pmmapper + Undeploy Service ${INVENTORY_SERVER} ${INVENTORY_ENDPOINT}/${serviceTypeId-Pmmapper} + Undeploy Service ${DEPLOYMENT_SERVER} /${DEPLOYMENT_ENDPOINT}/sftpserver + Undeploy Service ${INVENTORY_SERVER} ${INVENTORY_ENDPOINT}/${serviceTypeId-Sftp} + Undeploy Service ${DEPLOYMENT_SERVER} /${DEPLOYMENT_ENDPOINT}/datafile + Undeploy Service ${INVENTORY_SERVER} ${INVENTORY_ENDPOINT}/${serviceTypeId-Dfc}
\ No newline at end of file |