summaryrefslogtreecommitdiffstats
path: root/csit/drools-pdp/tests/drools-pdp-test.robot
diff options
context:
space:
mode:
authorRam Krishna Verma <ram_krishna.verma@bell.ca>2021-05-13 13:10:39 +0000
committerGerrit Code Review <gerrit@onap.org>2021-05-13 13:10:39 +0000
commit3f072046056eb8a9ba0bdbc340be1ddfce45059e (patch)
tree386b2811118094bba3ceed355e6f4122f8e80a22 /csit/drools-pdp/tests/drools-pdp-test.robot
parentf1b994e85dd1075db23a4a23c7b2a3e88ac123c5 (diff)
parentb3a962f585a8cb22d4bfbe56c3189a1f66f4736f (diff)
Merge "Move remaining CSITs from to docker/csit"
Diffstat (limited to 'csit/drools-pdp/tests/drools-pdp-test.robot')
-rw-r--r--csit/drools-pdp/tests/drools-pdp-test.robot16
1 files changed, 16 insertions, 0 deletions
diff --git a/csit/drools-pdp/tests/drools-pdp-test.robot b/csit/drools-pdp/tests/drools-pdp-test.robot
new file mode 100644
index 00000000..d819a808
--- /dev/null
+++ b/csit/drools-pdp/tests/drools-pdp-test.robot
@@ -0,0 +1,16 @@
+*** Settings ***
+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 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