diff options
author | su622b <su622b@att.com> | 2019-08-08 08:34:53 -0400 |
---|---|---|
committer | su622b <su622b@att.com> | 2019-08-08 08:35:06 -0400 |
commit | d12b53a7c46a151fda402f0c25120b26eef77ea5 (patch) | |
tree | 25139f2ebafc8e7ecc60e47bde6ced0082b4b584 | |
parent | 0cb3bb0b0c99a70dd31995a7dc4d06b53f6e43d0 (diff) |
revert topic exist check while publishing
Issue-ID: DMAAP-1247
Change-Id: I17a289cd520d9b78a6652e05147acb7ab714cb54
Signed-off-by: su622b <su622b@att.com>
-rw-r--r-- | src/test/java/org/onap/dmaap/dmf/mr/service/impl/EventsServiceImplTest.java | 11 |
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() |