diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-07-31 21:03:15 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-07-31 21:03:15 +0000 |
commit | 5b5a462c5168e71f2b95eeed4796aace26cd3772 (patch) | |
tree | 3614bb19cdbb984030f6d5d63cc8b92061b24cfd /test/csit/tests | |
parent | ae70ef34b51b7638115980279fc3de1ade71caa1 (diff) | |
parent | 929249771e6948ad0fc96af983e168af5117f77a (diff) |
Merge "Add CSIT test for DMaaP Data Router component"
Diffstat (limited to 'test/csit/tests')
-rwxr-xr-x | test/csit/tests/dmaap-datarouter/dr-suite/dr-suite.robot | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/test/csit/tests/dmaap-datarouter/dr-suite/dr-suite.robot b/test/csit/tests/dmaap-datarouter/dr-suite/dr-suite.robot new file mode 100755 index 000000000..d1de683ef --- /dev/null +++ b/test/csit/tests/dmaap-datarouter/dr-suite/dr-suite.robot @@ -0,0 +1,28 @@ +*** Settings *** +Library OperatingSystem +Library RequestsLibrary +Library requests +Library Collections +Library String + +*** Variables *** +${TARGETURL_FEED} https://${DR_PROV_IP}:8443 +${CREATE_FEED_DATA} {"name": "CSIT_Test", "version": "m1.0", "description": "CSIT_Test", "business_description": "CSIT_Test", "suspend": false, "deleted": false, "changeowner": true, "authorization": {"classification": "unclassified", "endpoint_addrs": ["${DR_PROV_IP}"], "endpoint_ids": [{"password": "rs873m", "id": "rs873m"}]}} + +*** Test Cases *** +Run Feed Creation + [Documentation] Feed Creation + [Timeout] 1 minute + ${resp}= PostFeed ${TARGETURL_FEED} ${CREATE_FEED_DATA} + log ${TARGETURL_FEED} + log ${resp.text} + Should Be Equal As Strings ${resp.status_code} 201 + log 'JSON Response Code:'${resp} + + +*** Keywords *** +PostFeed + [Arguments] ${url} ${data} + ${headers}= Create Dictionary X-ATT-DR-ON-BEHALF-OF=rs873m Content-Type=application/vnd.att-dr.feed + ${resp}= Evaluate requests.post('${url}',data='${data}', headers=${headers},verify=False) requests + [Return] ${resp} |