blob: 1c9ea1d83dca9a12e11869b67fff44c137b83cad [file] [log] [blame]
pdragosh3f9a0962019-04-16 13:19:45 -04001*** Settings ***
2Library Collections
3Library RequestsLibrary
4Library OperatingSystem
5Library json
6
7*** Test Cases ***
8Alive
9 [Documentation] Runs Policy PDP Alive Check
10 ${auth}= Create List demo@people.osaaf.org demo123456!
11 Log Creating session https://${POLICY_DROOLS_IP}:9696
12 ${session}= Create Session policy https://${POLICY_DROOLS_IP}:9696 auth=${auth}
13 ${headers}= Create Dictionary Accept=application/json Content-Type=application/json
14 ${resp}= Get Request policy /policy/pdp/engine headers=${headers}
15 Log Received response from policy ${resp.text}
16 Should Be Equal As Strings ${resp.status_code} 200
17 Should Be Equal As Strings ${resp.json()['alive']} True
a.sreekumar20705742020-02-14 12:03:33 +000018
19Healthcheck
20 [Documentation] Runs Policy PDP-D Health check
21 ${auth}= Create List demo@people.osaaf.org demo123456!
22 Log Creating session https://${POLICY_DROOLS_IP}:6969/healthcheck
23 ${session}= Create Session policy https://${POLICY_DROOLS_IP}:6969 auth=${auth}
24 ${headers}= Create Dictionary Accept=application/json Content-Type=application/json
25 ${resp}= Get Request policy /healthcheck headers=${headers}
26 Log Received response from policy ${resp.text}
27 Should Be Equal As Strings ${resp.status_code} 200
28 Should Be Equal As Strings ${resp.json()['healthy']} True
29
30Usecases
31 [Documentation] Checks usecases controller is up
32 ${auth}= Create List demo@people.osaaf.org demo123456!
33 Log Creating session https://${POLICY_DROOLS_IP}:9696
34 ${session}= Create Session policy https://${POLICY_DROOLS_IP}:9696 auth=${auth}
35 ${headers}= Create Dictionary Accept=application/json Content-Type=application/json
36 ${resp}= Get Request policy /policy/pdp/engine/controllers/usecases/drools/facts headers=${headers}
37 Log Received response from policy ${resp.text}
38 Should Be Equal As Strings ${resp.status_code} 200
39 Should Be Equal As Strings ${resp.json()['usecases']} 0
40