aboutsummaryrefslogtreecommitdiffstats
path: root/test/csit/tests/aai/esr-server/startup/test1.robot
blob: 53afeed27d05249821340b3164930b1090b00be8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
*** Settings ***
Library       RequestsLibrary

*** Test Cases ***
Liveness Test
    [Documentation]        Check various endpoints for basic liveness check
    Create Session         esr-server              http://${ESRSERVER_IP}:9518
    CheckUrl               esr-server              /api/aai-esr-server/v1/test

*** Keywords ***
CheckUrl
    [Arguments]                   ${session}  ${path}
    ${resp}=                      Get Request          ${session}  ${path}
    Should Be Equal As Integers   ${resp.status_code}  200