aboutsummaryrefslogtreecommitdiffstats
path: root/test/csit/tests/msb/startup/test1.robot
blob: 99ad603c7a87de9415fe014c4441760d54844f80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
*** Settings ***
Library       RequestsLibrary

*** Test Cases ***
Liveness Test
    [Documentation]        Check various endpoints for basic liveness check
    Create Session         msb              http://${MSB_IAG_IP}:80
    CheckUrl               msb              /msb
    CheckUrl               msb              /iui/microservices/default.html

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