Move CSIT to integration/csit repo
[integration/csit.git] / tests / msb / startup / test1.robot
1 *** Settings ***
2 Library       RequestsLibrary
3
4 *** Test Cases ***
5 Liveness Test
6     [Documentation]        Check various endpoints for basic liveness check
7     Create Session         msb              http://${MSB_IAG_IP}:80
8     CheckUrl               msb              /msb
9     CheckUrl               msb              /iui/microservices/default.html
10
11 *** Keywords ***
12 CheckUrl
13     [Arguments]                   ${session}  ${path}
14     ${resp}=                      Get Request          ${session}  ${path}
15     Should Be Equal As Integers   ${resp.status_code}  200
16