diff options
author | HuabingZhao <zhao.huabing@zte.com.cn> | 2017-09-04 14:37:17 +0800 |
---|---|---|
committer | HuabingZhao <zhao.huabing@zte.com.cn> | 2017-09-04 14:44:14 +0800 |
commit | 6b8e95d5034f0c2f72adef288932dc5132fa7595 (patch) | |
tree | 069fdac23d8857c34641a07a0de4baad554a3f10 /test/csit/tests/msb/startup/test1.robot | |
parent | ab395aba7794a7f3739205e80a2cd9c3546b7534 (diff) |
msb integration test script: sanity check
Change-Id: Ibbd403a0f903fcdef192ec4b6b81ad065ce1831a
Issue-ID: MSB-61
Signed-off-by: HuabingZhao <zhao.huabing@zte.com.cn>
Diffstat (limited to 'test/csit/tests/msb/startup/test1.robot')
-rw-r--r-- | test/csit/tests/msb/startup/test1.robot | 16 |
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 + |