X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=kubernetes%2Fconfig%2Fdocker%2Finit%2Fsrc%2Fconfig%2Frobot%2Frobot%2Fresources%2Fportal_interface.robot;fp=kubernetes%2Fconfig%2Fdocker%2Finit%2Fsrc%2Fconfig%2Frobot%2Frobot%2Fresources%2Fportal_interface.robot;h=7d53b3780f992d90fcd9ef3727298785c801499b;hb=d6ea987caed84a9f36030a5a1516df7c6186362d;hp=0000000000000000000000000000000000000000;hpb=43d96ac929c93d0aa2a55d860e0425a39118f7b4;p=oom.git diff --git a/kubernetes/config/docker/init/src/config/robot/robot/resources/portal_interface.robot b/kubernetes/config/docker/init/src/config/robot/robot/resources/portal_interface.robot new file mode 100644 index 0000000000..7d53b3780f --- /dev/null +++ b/kubernetes/config/docker/init/src/config/robot/robot/resources/portal_interface.robot @@ -0,0 +1,28 @@ +*** Settings *** +Documentation The main interface for interacting with Portal. It handles low level stuff like managing the http request library and Portal required fields +Library RequestsClientCert +Library RequestsLibrary +Library UUID + +Resource global_properties.robot + +*** Variables *** +${PORTAL_HEALTH_CHECK_PATH} /ECOMPPORTAL/portalApi/healthCheck + +*** Keywords *** +Run Portal Health Check + [Documentation] Runs Portal Health check + ${resp}= Run Portal Get Request ${PORTAL_HEALTH_CHECK_PATH} + Should Be Equal As Strings ${resp.status_code} 200 + Should Be Equal As Strings ${resp.json()['statusCode']} 200 + +Run Portal Get Request + [Documentation] Runs Portal Get request + [Arguments] ${data_path} + ${session}= Create Session portal ${GLOBAL_PORTAL_SERVER} + ${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}= Get Request portal ${data_path} headers=${headers} + Log Received response from portal ${resp.text} + [Return] ${resp} +