From 6b8e95d5034f0c2f72adef288932dc5132fa7595 Mon Sep 17 00:00:00 2001 From: HuabingZhao Date: Mon, 4 Sep 2017 14:37:17 +0800 Subject: msb integration test script: sanity check Change-Id: Ibbd403a0f903fcdef192ec4b6b81ad065ce1831a Issue-ID: MSB-61 Signed-off-by: HuabingZhao --- test/csit/tests/msb/startup/test1.robot | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 test/csit/tests/msb/startup/test1.robot (limited to 'test/csit/tests/msb/startup/test1.robot') 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 + -- cgit 1.2.3-korg