summaryrefslogtreecommitdiffstats
path: root/csit
diff options
context:
space:
mode:
authorRam Krishna Verma <ram_krishna.verma@bell.ca>2021-05-07 17:08:12 -0400
committerRam Krishna Verma <ram_krishna.verma@bell.ca>2021-05-10 19:34:21 +0000
commit44d641870790bf84c2c8b450874d651275ebcee1 (patch)
treecef59cc41f635a7a76e6ec3d65e85b6e34daced3 /csit
parent7bdca907bbc37e14ce20f58d973cefb3630c2c7e (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> (cherry picked from commit 8b5cef8b669aa8cc19fca12896e7d8435c45ed34)
Diffstat (limited to 'csit')
-rw-r--r--csit/tests/drools-pdp-test.robot25
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