diff options
author | dglFromAtt <dgl@research.att.com> | 2018-03-03 11:57:29 -0500 |
---|---|---|
committer | dglFromAtt <dgl@research.att.com> | 2018-03-03 11:58:11 -0500 |
commit | 62b8b1254aff20a874a2867fda42bbaf3bb1b193 (patch) | |
tree | 4de1e9de7723cc9b884e7ebcae3c223674be89ba /test/csit/tests/dmaap-buscontroller/suite1 | |
parent | 10d984c3606b5c6a026dea4b9df0954d74d0a8d1 (diff) |
Initial CSIT framework for dmaap/buscontroller
Change-Id: I068ccaafbeeea0d08949e83cccac56a238901aa3
Signed-off-by: dglFromAtt <dgl@research.att.com>
Issue-ID: DMAAP-318
Diffstat (limited to 'test/csit/tests/dmaap-buscontroller/suite1')
-rw-r--r-- | test/csit/tests/dmaap-buscontroller/suite1/__init__.robot | 3 | ||||
-rw-r--r-- | test/csit/tests/dmaap-buscontroller/suite1/test1.robot | 42 |
2 files changed, 45 insertions, 0 deletions
diff --git a/test/csit/tests/dmaap-buscontroller/suite1/__init__.robot b/test/csit/tests/dmaap-buscontroller/suite1/__init__.robot new file mode 100644 index 000000000..41c7a0037 --- /dev/null +++ b/test/csit/tests/dmaap-buscontroller/suite1/__init__.robot @@ -0,0 +1,3 @@ +*** Settings *** +Documentation dmaap-buscontroller - Suite 1 + diff --git a/test/csit/tests/dmaap-buscontroller/suite1/test1.robot b/test/csit/tests/dmaap-buscontroller/suite1/test1.robot new file mode 100644 index 000000000..be4e8cc6c --- /dev/null +++ b/test/csit/tests/dmaap-buscontroller/suite1/test1.robot @@ -0,0 +1,42 @@ +*** Settings *** +Library OperatingSystem +Library RequestsLibrary + +*** Variables *** +${MESSAGE} Hello, world! +${DBC_URI} /webapi + +*** Test Cases *** +String Equality Test + Should Be Equal ${MESSAGE} Hello, world! + +Dir Test + [Documentation] Check if /tmp exists + Log ${MESSAGE} + CheckDir /tmp + +Url Test + [Documentation] Check if www.onap.org can be reached + Create Session openo http://www.onap.org + CheckUrl openo / 200 + +Mock Hello Server Test + [Documentation] Check /hello endpoint + Create Session hello http://${AAF_IP}:1080 + CheckUrl hello /hello 200 + +Heartbeat Test + [Documentation] Check ${DBC_URI}/info endpoint + Create Session heartbeat http://${DMAAPBC_IP}:8080 + CheckUrl heartbeat ${DBC_URI}/info 204 + +*** Keywords *** +CheckDir + [Arguments] ${path} + Directory Should Exist ${path} + +CheckUrl + [Arguments] ${session} ${path} ${expect} + ${resp}= Get Request ${session} ${path} + Should Be Equal As Integers ${resp.status_code} ${expect} + |