diff options
author | Taka Cho <takamune.cho@att.com> | 2021-02-26 11:02:51 -0500 |
---|---|---|
committer | Taka Cho <takamune.cho@att.com> | 2021-02-26 11:05:00 -0500 |
commit | 396ec5a11f97a11a2fcb3001f68aa73954ce6cb9 (patch) | |
tree | 665a8865767d1383ee5b54184494c69e44f8ef74 /csit/tests | |
parent | 1e03436dc3002ec5c7aacaa2375e31ec90ad7a85 (diff) |
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 <takamune.cho@att.com>
Diffstat (limited to 'csit/tests')
-rw-r--r-- | csit/tests/drools-pdp-test.robot | 17 |
1 files changed, 17 insertions, 0 deletions
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 |