diff options
author | yunlong ying <ying.yunlong@zte.com.cn> | 2017-09-04 11:26:33 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-09-04 11:26:33 +0000 |
commit | c15ad59413ad84334050267d23c3a79ed048c128 (patch) | |
tree | c8451b4c01de21667f5326c4e3bad2630f11654c /test/csit/tests | |
parent | b45d0709b9c21d49ecf7a815a40b89c8c4d9ad5e (diff) | |
parent | 6b8e95d5034f0c2f72adef288932dc5132fa7595 (diff) |
Merge "msb integration test script: sanity check"
Diffstat (limited to 'test/csit/tests')
-rw-r--r-- | test/csit/tests/msb/startup/__init__.robot | 2 | ||||
-rw-r--r-- | test/csit/tests/msb/startup/test1.robot | 16 |
2 files changed, 18 insertions, 0 deletions
diff --git a/test/csit/tests/msb/startup/__init__.robot b/test/csit/tests/msb/startup/__init__.robot new file mode 100644 index 000000000..2f6452622 --- /dev/null +++ b/test/csit/tests/msb/startup/__init__.robot @@ -0,0 +1,2 @@ +*** Settings *** +Documentation Microservices Service Bus - Startup 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 + |