| *** 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 |
| |
| Usecases |
| [Documentation] Checks usecases 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/usecases/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()['usecases']} 0 |
| |