blob: 99ad603c7a87de9415fe014c4441760d54844f80 [file] [log] [blame]
Gary Wu9abb61c2018-09-27 10:38:50 -07001*** Settings ***
2Library RequestsLibrary
3
4*** Test Cases ***
5Liveness 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 ***
12CheckUrl
13 [Arguments] ${session} ${path}
14 ${resp}= Get Request ${session} ${path}
15 Should Be Equal As Integers ${resp.status_code} 200
16