X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=csit%2Ftests%2Factuator%2Factuator.robot;h=80617a3f8c20e97e21ffa855891e1a7847249cf1;hb=refs%2Fchanges%2F20%2F126720%2F2;hp=2ee575e406f775165f27a5691e418822d6cbd90a;hpb=db1e983f40be1db7bca5acacf5a3369d74a29c95;p=cps.git diff --git a/csit/tests/actuator/actuator.robot b/csit/tests/actuator/actuator.robot index 2ee575e40..80617a3f8 100644 --- a/csit/tests/actuator/actuator.robot +++ b/csit/tests/actuator/actuator.robot @@ -29,11 +29,9 @@ Suite Setup Create Session MANAGEMENT_URL http://${CPS_CORE_HOST *** Test Cases *** -Test Liveness Probe Endpoint - ${response}= GET On Session MANAGEMENT_URL health/liveness expected_status=200 - Should Be Equal As Strings ${response.json()['status']} UP - -Test Readiness Probe Endpoint - ${response}= GET On Session MANAGEMENT_URL health/readiness expected_status=200 - Should Be Equal As Strings ${response.json()['status']} UP - +Test CPS Enhanced Healthcheck + [Documentation] Runs CPS Health Check. It will check for overall status update of CPS component like, Database and diskspace status along with liveliness and readiness check + ${response}= GET On Session MANAGEMENT_URL health expected_status=200 + ${resp_body}= Convert to string ${response.text} + Should Contain ${resp_body} UP + Should Not Contain ${resp_body} DOWN