[SO] SO release image for CSIT testing
[integration/csit.git] / tests / policy / drools-pdp / drools-pdp-test.robot
1 *** Settings ***
2 Library     Collections
3 Library     RequestsLibrary
4 Library     OperatingSystem
5 Library     json
6
7 *** Test Cases ***
8 Alive
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