diff options
author | Ram Krishna Verma <ram_krishna.verma@bell.ca> | 2021-05-07 17:08:12 -0400 |
---|---|---|
committer | Ram Krishna Verma <ram_krishna.verma@bell.ca> | 2021-05-07 17:08:18 -0400 |
commit | 8b5cef8b669aa8cc19fca12896e7d8435c45ed34 (patch) | |
tree | 4260101df95e48c95e4855a026b4c1480c65e027 | |
parent | c2e25b77402244fdc9f443628ec127e03606c9f6 (diff) |
Remove deprecated method from drools-pdp csit
Issue-ID: POLICY-3257
Change-Id: I1051063677921a04ba536deac6ddedf04d360fd2
Signed-off-by: Ram Krishna Verma <ram_krishna.verma@bell.ca>
-rw-r--r-- | csit/tests/drools-pdp-test.robot | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/csit/tests/drools-pdp-test.robot b/csit/tests/drools-pdp-test.robot index cf4d3cea..d819a808 100644 --- a/csit/tests/drools-pdp-test.robot +++ b/csit/tests/drools-pdp-test.robot @@ -1,17 +1,16 @@ *** Settings *** -Library Collections -Library RequestsLibrary -Library OperatingSystem -Library json +Library Collections +Library RequestsLibrary +Library OperatingSystem +Library json *** Test Cases *** Alive - [Documentation] Runs Policy PDP Alive Check - ${auth}= Create List demo@people.osaaf.org demo123456! - Log Creating session https://${POLICY_DROOLS_IP}:9696 - ${session}= Create Session policy https://${POLICY_DROOLS_IP}:9696 auth=${auth} - ${headers}= Create Dictionary Accept=application/json Content-Type=application/json - ${resp}= Get Request policy /policy/pdp/engine headers=${headers} - Log Received response from policy ${resp.text} - Should Be Equal As Strings ${resp.status_code} 200 - Should Be Equal As Strings ${resp.json()['alive']} True + [Documentation] Runs Policy PDP Alive Check + ${auth}= Create List demo@people.osaaf.org demo123456! + Log Creating session https://${POLICY_DROOLS_IP}:9696 + ${session}= Create Session policy https://${POLICY_DROOLS_IP}:9696 auth=${auth} + ${headers}= Create Dictionary Accept=application/json Content-Type=application/json + ${resp}= GET On Session policy /policy/pdp/engine headers=${headers} expected_status=200 + Log Received response from policy ${resp.text} + Should Be Equal As Strings ${resp.json()['alive']} True |