summaryrefslogtreecommitdiffstats
path: root/src/test/java/com/att/nsa/cambria/beans/DMaaPKafkaMetaBrokerTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/com/att/nsa/cambria/beans/DMaaPKafkaMetaBrokerTest.java')
-rw-r--r--src/test/java/com/att/nsa/cambria/beans/DMaaPKafkaMetaBrokerTest.java247
1 files changed, 247 insertions, 0 deletions
diff --git a/src/test/java/com/att/nsa/cambria/beans/DMaaPKafkaMetaBrokerTest.java b/src/test/java/com/att/nsa/cambria/beans/DMaaPKafkaMetaBrokerTest.java
new file mode 100644
index 0000000..eb28f67
--- /dev/null
+++ b/src/test/java/com/att/nsa/cambria/beans/DMaaPKafkaMetaBrokerTest.java
@@ -0,0 +1,247 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP Policy Engine
+ * ================================================================================
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ */
+package com.att.nsa.cambria.beans;
+
+import static org.junit.Assert.assertTrue;
+
+import org.I0Itec.zkclient.ZkClient;
+import org.I0Itec.zkclient.exception.ZkNoNodeException;
+import org.junit.Before;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.mockito.InjectMocks;
+import org.mockito.Mock;
+import org.mockito.MockitoAnnotations;
+import org.powermock.api.mockito.PowerMockito;
+import org.powermock.core.classloader.annotations.PrepareForTest;
+import org.powermock.modules.junit4.PowerMockRunner;
+
+import com.att.nsa.cambria.CambriaApiException;
+import com.att.nsa.cambria.metabroker.Broker.TopicExistsException;
+import com.att.nsa.configs.ConfigDb;
+import com.att.nsa.configs.ConfigDbException;
+import com.att.nsa.configs.ConfigPath;
+
+import kafka.admin.AdminUtils;
+
+@RunWith(PowerMockRunner.class)
+@PrepareForTest({ AdminUtils.class, ZkClientFactory.class })
+public class DMaaPKafkaMetaBrokerTest {
+
+ @InjectMocks
+ private DMaaPKafkaMetaBroker dMaaPKafkaMetaBroker;
+
+ @Mock
+ private ZkClient zk;
+ @Mock
+ private ConfigDb configDb;
+ @Mock
+ ConfigPath fBaseTopicData;
+ @Mock
+ private ZkClient zkClient;
+
+ @Before
+ public void setUp() {
+ MockitoAnnotations.initMocks(this);
+ PowerMockito.mockStatic(AdminUtils.class);
+ PowerMockito.mockStatic(ZkClientFactory.class);
+ PowerMockito.when(configDb.parse("/topics")).thenReturn(fBaseTopicData);
+
+ }
+
+ @Test
+ public void testGetAlltopics() {
+ try {
+ dMaaPKafkaMetaBroker.getAllTopics();
+ } catch (ConfigDbException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ }
+
+ }
+
+ @Test
+ public void testcreateTopic() {
+ try {
+ PowerMockito.when(ZkClientFactory.createZkClient()).thenReturn(zkClient);
+ dMaaPKafkaMetaBroker.createTopic("testtopic", "testtopic", "admin", 1, 1, true);
+ } catch (CambriaApiException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ } catch (TopicExistsException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ } catch (Exception e) {
+ // TODO Auto-generatee.printStackTrace();
+ }
+
+ }
+
+ @Test
+ public void testcreateTopic_wrongPartition() {
+ try {
+
+ PowerMockito.when(ZkClientFactory.createZkClient()).thenReturn(zkClient);
+ dMaaPKafkaMetaBroker.createTopic("testtopic", "testtopic", "admin", 0, 1, true);
+ } catch (CambriaApiException e) {
+ assertTrue(true);
+ } catch (TopicExistsException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ } catch (Exception e) {
+ // TODO Auto-generatee.printStackTrace();
+ }
+
+ }
+
+ @Test
+ public void testcreateTopic_wrongReplica() {
+ try {
+
+ PowerMockito.when(ZkClientFactory.createZkClient()).thenReturn(zkClient);
+ dMaaPKafkaMetaBroker.createTopic("testtopic", "testtopic", "admin", 1, 0, true);
+ } catch (CambriaApiException e) {
+ assertTrue(true);
+ } catch (TopicExistsException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ } catch (Exception e) {
+ // TODO Auto-generatee.printStackTrace();
+ }
+
+ }
+
+ @Test
+ public void testcreateTopic_error1() {
+ try {
+ PowerMockito.when(ZkClientFactory.createZkClient()).thenThrow(new ZkNoNodeException());
+ dMaaPKafkaMetaBroker.createTopic("testtopic", "testtopic", "admin", 1, 1, true);
+ } catch (CambriaApiException e) {
+ assertTrue(true);
+ } catch (TopicExistsException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+
+ }
+
+ @Test
+ public void testcreateTopic_error2() {
+ try {
+ PowerMockito.when(ZkClientFactory.createZkClient())
+ .thenThrow(new kafka.admin.AdminOperationException("error"));
+ dMaaPKafkaMetaBroker.createTopic("testtopic", "testtopic", "admin", 1, 1, true);
+ } catch (CambriaApiException e) {
+ assertTrue(true);
+ } catch (TopicExistsException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+ }
+
+ @Test
+ public void testcreateTopic_error3() {
+ try {
+ PowerMockito.when(ZkClientFactory.createZkClient()).thenThrow(new kafka.common.TopicExistsException());
+ dMaaPKafkaMetaBroker.createTopic("testtopic", "testtopic", "admin", 1, 1, true);
+ } catch (CambriaApiException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ } catch (TopicExistsException e) {
+ assertTrue(true);
+
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+
+ }
+
+ @Test
+ public void testDeleteTopic() {
+ try {
+ PowerMockito.when(ZkClientFactory.createZkClient()).thenReturn(zkClient);
+ dMaaPKafkaMetaBroker.deleteTopic("testtopic");
+ } catch (CambriaApiException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ } catch (TopicExistsException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+ assertTrue(true);
+
+ }
+
+ @Test
+ public void testDeleteTopic_error1() {
+ try {
+ PowerMockito.when(ZkClientFactory.createZkClient()).thenThrow(new ZkNoNodeException());
+ dMaaPKafkaMetaBroker.deleteTopic("testtopic");
+ } catch (CambriaApiException e) {
+ assertTrue(true);
+ } catch (TopicExistsException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+
+ }
+
+ @Test
+ public void testDeleteTopic_error2() {
+ try {
+ PowerMockito.when(ZkClientFactory.createZkClient())
+ .thenThrow(new kafka.admin.AdminOperationException("error"));
+ dMaaPKafkaMetaBroker.deleteTopic("testtopic");
+ } catch (CambriaApiException e) {
+ assertTrue(true);
+ } catch (TopicExistsException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+
+ }
+
+ @Test
+ public void testDeleteTopic_error3() {
+ try {
+ PowerMockito.when(ZkClientFactory.createZkClient()).thenThrow(new kafka.common.TopicExistsException());
+ dMaaPKafkaMetaBroker.deleteTopic("testtopic");
+ } catch (CambriaApiException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ } catch (TopicExistsException e) {
+ assertTrue(true);
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+
+ }
+
+}