aboutsummaryrefslogtreecommitdiffstats
path: root/test/csit/tests/msb/startup/test1.robot
diff options
context:
space:
mode:
Diffstat (limited to 'test/csit/tests/msb/startup/test1.robot')
-rw-r--r--test/csit/tests/msb/startup/test1.robot16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/csit/tests/msb/startup/test1.robot b/test/csit/tests/msb/startup/test1.robot
new file mode 100644
index 000000000..99ad603c7
--- /dev/null
+++ b/test/csit/tests/msb/startup/test1.robot
@@ -0,0 +1,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
+