blob: c3586cfa9d54daf6829cba3dc27bc81b56e8d24d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
*** 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
Healthcheck
[Documentation] Runs Policy PDP-D Health check
${auth}= Create List demo@people.osaaf.org demo123456!
Log Creating session https://${POLICY_DROOLS_IP}:6969/healthcheck
${session}= Create Session policy https://${POLICY_DROOLS_IP}:6969 auth=${auth}
${headers}= Create Dictionary Accept=application/json Content-Type=application/json
${resp}= Get Request policy /healthcheck 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()['healthy']} True
Frankfurt
[Documentation] Checks frankfurt controller is up
${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/controllers/frankfurt/drools/facts 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()['frankfurt']} 0
|