From 396ec5a11f97a11a2fcb3001f68aa73954ce6cb9 Mon Sep 17 00:00:00 2001 From: Taka Cho Date: Fri, 26 Feb 2021 11:02:51 -0500 Subject: move drools-pdp csit to project level move tests/plans from csit repot to drools-pdp repo Issue-ID: POLICY-2895 Change-Id: I8fd43ca763d74d6db7950b1b5d3502f3da73e09e Signed-off-by: Taka Cho --- csit/tests/drools-pdp-test.robot | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 csit/tests/drools-pdp-test.robot (limited to 'csit/tests/drools-pdp-test.robot') diff --git a/csit/tests/drools-pdp-test.robot b/csit/tests/drools-pdp-test.robot new file mode 100644 index 00000000..cf4d3cea --- /dev/null +++ b/csit/tests/drools-pdp-test.robot @@ -0,0 +1,17 @@ +*** 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 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 -- cgit 1.2.3-korg