diff options
author | Dominic Lunanuova <dgl@research.att.com> | 2018-04-17 20:59:12 +0000 |
---|---|---|
committer | Dominic Lunanuova <dgl@research.att.com> | 2018-04-18 15:10:57 +0000 |
commit | 5a2d8971ce96590ab3d76d313a6f571a37768552 (patch) | |
tree | 5b6112c3e08619df2a5e5019302857428b2c0d99 /test/csit/tests/dmaap-buscontroller | |
parent | e03890faa26329ea7c1f8bc1aad0a8f1cda73e63 (diff) |
Script for integration with MR
Change-Id: I52a54b441992aad9dd7012a45556c2b84e121ba1
Signed-off-by: Dominic Lunanuova <dgl@research.att.com>
Issue-ID: DMAAP-320
Signed-off-by: Dominic Lunanuova <dgl@research.att.com>
Diffstat (limited to 'test/csit/tests/dmaap-buscontroller')
-rw-r--r-- | test/csit/tests/dmaap-buscontroller/single-mr-suite/__init__.robot | 3 | ||||
-rw-r--r-- | test/csit/tests/dmaap-buscontroller/single-mr-suite/test1.robot | 45 |
2 files changed, 48 insertions, 0 deletions
diff --git a/test/csit/tests/dmaap-buscontroller/single-mr-suite/__init__.robot b/test/csit/tests/dmaap-buscontroller/single-mr-suite/__init__.robot new file mode 100644 index 000000000..41c7a0037 --- /dev/null +++ b/test/csit/tests/dmaap-buscontroller/single-mr-suite/__init__.robot @@ -0,0 +1,3 @@ +*** Settings *** +Documentation dmaap-buscontroller - Suite 1 + diff --git a/test/csit/tests/dmaap-buscontroller/single-mr-suite/test1.robot b/test/csit/tests/dmaap-buscontroller/single-mr-suite/test1.robot new file mode 100644 index 000000000..f69538dc6 --- /dev/null +++ b/test/csit/tests/dmaap-buscontroller/single-mr-suite/test1.robot @@ -0,0 +1,45 @@ +*** Settings *** +Resource ../../common.robot +Library Collections +Library json +Library OperatingSystem +Library RequestsLibrary + + + +*** Variables *** +${MESSAGE} Hello, world! +${DBC_URI} webapi +${TOPIC1} singleMRtopic1 +${TOPIC1_DATA} { "topicName":"singleMRtopic1", "topicDescription":"generated for CSIT", "owner":"dgl"} + + + +*** Test Cases *** +Url Test + [Documentation] Check if www.onap.org can be reached + Create Session sanity http://onap.readthedocs.io + ${resp}= Get Request sanity / + Should Be Equal As Integers ${resp.status_code} 200 + +Create Topic Test + [Documentation] Check POST ${DBC_URI}/topics endpoint + ${resp}= PostCall http://${DMAAPBC_IP}:8080/${DBC_URI}/topics ${TOPIC1_DATA} + Should Be Equal As Integers ${resp.status_code} 201 + +*** 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} + +PostCall + [Arguments] ${url} ${data} + ${headers}= Create Dictionary Accept=application/json Content-Type=application/json + ${resp}= Evaluate requests.post('${url}',data='${data}', headers=${headers},verify=False) requests + [Return] ${resp} + |