aboutsummaryrefslogtreecommitdiffstats
path: root/test/csit/tests/aai/esr-server/startup/test1.robot
blob: d1504a1b480dbea13ad2c3c18e4d8f6936d68087 (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              https://${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