diff options
author | econwar <conor.ward@ericsson.com> | 2018-08-08 17:17:18 +0000 |
---|---|---|
committer | econwar <conor.ward@ericsson.com> | 2018-08-08 19:38:52 +0000 |
commit | 6d5e8086c2647e38d817ae5040f18f6af62045be (patch) | |
tree | 7d94874fa26dfb4c6ba25d03b3db1bac8182ac52 /test/csit/tests/dmaap-datarouter/dr-suite/dr-suite.robot | |
parent | 81708b8b4db473e7dd9738fce13844ef48d7fcb7 (diff) |
Add Delete Feed Test Case
-DB container updated
Change-Id: I374032aa167e9725668f1997873fe5b52c3a87a4
Signed-off-by: Conor Ward <conor.ward@ericsson.com>
Issue-ID: DMAAP-65
Diffstat (limited to 'test/csit/tests/dmaap-datarouter/dr-suite/dr-suite.robot')
-rwxr-xr-x | test/csit/tests/dmaap-datarouter/dr-suite/dr-suite.robot | 8 |
1 files changed, 8 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 index c966c6985..b5092f86a 100755 --- a/test/csit/tests/dmaap-datarouter/dr-suite/dr-suite.robot +++ b/test/csit/tests/dmaap-datarouter/dr-suite/dr-suite.robot @@ -70,6 +70,14 @@ Run Delete Subscription Should Be Equal As Strings ${resp.status_code} 204 log 'JSON Response Code:'${resp} +Run Delete Feed + [Documentation] Delete Feed + [Timeout] 1 minute + ${resp}= DeleteCall ${TARGET_URL_FEED} rs873m + log ${resp.text} + Should Be Equal As Strings ${resp.status_code} 204 + log 'JSON Response Code:'${resp} + *** Keywords *** PostCall [Arguments] ${url} ${data} ${content_type} ${user} |