summaryrefslogtreecommitdiffstats
path: root/src/test/java/org
diff options
context:
space:
mode:
authorsunil unnava <su622b@att.com>2019-08-08 14:54:04 +0000
committerGerrit Code Review <gerrit@onap.org>2019-08-08 14:54:04 +0000
commit79362278814e1d8ccc5703278a57a7bf20888510 (patch)
tree4a9dc14013b8c303db19256130c6d23504568741 /src/test/java/org
parent6280bb23a96e58c7d35e6b95c38bfa94b40bee36 (diff)
parentd12b53a7c46a151fda402f0c25120b26eef77ea5 (diff)
Merge changes I17a289cd,Ie0d50a2c
* changes: revert topic exist check while publishing revert topic exist topic check while publishing
Diffstat (limited to 'src/test/java/org')
-rw-r--r--src/test/java/org/onap/dmaap/dmf/mr/service/impl/EventsServiceImplTest.java11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/test/java/org/onap/dmaap/dmf/mr/service/impl/EventsServiceImplTest.java b/src/test/java/org/onap/dmaap/dmf/mr/service/impl/EventsServiceImplTest.java
index 4abbe89..f9178e1 100644
--- a/src/test/java/org/onap/dmaap/dmf/mr/service/impl/EventsServiceImplTest.java
+++ b/src/test/java/org/onap/dmaap/dmf/mr/service/impl/EventsServiceImplTest.java
@@ -402,16 +402,7 @@ public class EventsServiceImplTest {
}
- @Test
- public void pushEvents_shouldFail_whenRequestedTopicDoesNotExist() throws Exception {
- when(configurationReader.getfMetaBroker()).thenReturn(dmaapKafkaMetaBroker);
- when(dmaapKafkaMetaBroker.getTopic("testTopic")).thenReturn(null);
-
- thrown.expect(CambriaApiException.class);
- thrown.expectMessage(containsString(String.valueOf(HttpStatus.SC_NOT_FOUND)));
-
- eventsService.pushEvents(dMaapContext, "testTopic", iStream, "5", "13:00:00");
- }
+
@Test
public void pushEvents_shouldFailDmaapAuthorization_whenTopicOwnerIsSet_andUserHasNoWritePermissionToTopic()