*** Settings *** Library RequestsLibrary Library Collections Library json Library String Library OperatingSystem Variables ../../../variables/Variables.py Suite Setup Create Session session http://${CONTROLLER}:${RESTCONFPORT} auth=${AUTH} headers=${HEADERS} Suite Teardown Delete All Sessions *** Variables *** ${SET_SUBSCRIBEUSER_JSON} ${CURDIR}/../../../variables/centinel/set_subscribeUser.json *** Test Cases *** Set SubscribeUser ${body} OperatingSystem.Get File ${SET_SUBSCRIBEUSER_JSON} ${resp} RequestsLibrary.Post Request session ${SET_SUBSCRIBEUSER} ${body} Should Be Equal As Strings ${resp.status_code} 200 Get Subscription ${resp} RequestsLibrary.Get Request session ${SUBSCRIPTION} Should Be Equal As Strings ${resp.status_code} 200 Delete Subscription ${delresp} RequestsLibrary.Delete Request session ${SUBSCRIPTION} Should Be Equal As Strings ${delresp.status_code} 200