aboutsummaryrefslogtreecommitdiffstats
path: root/tests/dmaap-buscontroller/suite1
diff options
context:
space:
mode:
authorGary Wu <gary.i.wu@huawei.com>2018-09-27 10:38:50 -0700
committerGary Wu <gary.i.wu@huawei.com>2018-09-27 10:39:43 -0700
commit9abb61ca2cea1907cab2cec312d6dca6e53a93cd (patch)
treec8ff0718b6626832efd3ff3acc48590dbd6cb64c /tests/dmaap-buscontroller/suite1
parenta328a3e2e531240ea4a9ed2ce4a284af1be5e225 (diff)
Move CSIT to integration/csit repo
To facilite branching of CSIT tests, all CSIT test code and scripts are relocated to the integration/csit repo. Change-Id: I1e4c0eff44691f73f8098b3c52764107f6b8b8df Issue-ID: INT-671 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'tests/dmaap-buscontroller/suite1')
-rw-r--r--tests/dmaap-buscontroller/suite1/__init__.robot3
-rw-r--r--tests/dmaap-buscontroller/suite1/test1.robot42
2 files changed, 45 insertions, 0 deletions
diff --git a/tests/dmaap-buscontroller/suite1/__init__.robot b/tests/dmaap-buscontroller/suite1/__init__.robot
new file mode 100644
index 00000000..41c7a003
--- /dev/null
+++ b/tests/dmaap-buscontroller/suite1/__init__.robot
@@ -0,0 +1,3 @@
+*** Settings ***
+Documentation dmaap-buscontroller - Suite 1
+
diff --git a/tests/dmaap-buscontroller/suite1/test1.robot b/tests/dmaap-buscontroller/suite1/test1.robot
new file mode 100644
index 00000000..be4e8cc6
--- /dev/null
+++ b/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}
+