Remove deprecated method from drools-pdp csit 05/121205/1
authorRam Krishna Verma <ram_krishna.verma@bell.ca>
Fri, 7 May 2021 21:08:12 +0000 (17:08 -0400)
committerRam Krishna Verma <ram_krishna.verma@bell.ca>
Fri, 7 May 2021 21:08:18 +0000 (17:08 -0400)
Issue-ID: POLICY-3257
Change-Id: I1051063677921a04ba536deac6ddedf04d360fd2
Signed-off-by: Ram Krishna Verma <ram_krishna.verma@bell.ca>
csit/tests/drools-pdp-test.robot

index cf4d3ce..d819a80 100644 (file)
@@ -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