update the package name
[dmaap/messagerouter/msgrtr.git] / src / test / java / org / onap / dmaap / mr / cambria / service / impl / UIServiceImplTest.java
-/*-\r
- * ============LICENSE_START=======================================================\r
- * ONAP Policy Engine\r
- * ================================================================================\r
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.\r
- * ================================================================================\r
- * Licensed under the Apache License, Version 2.0 (the "License");\r
- * you may not use this file except in compliance with the License.\r
- * You may obtain a copy of the License at\r
- * \r
- *      http://www.apache.org/licenses/LICENSE-2.0\r
- * \r
- * Unless required by applicable law or agreed to in writing, software\r
- * distributed under the License is distributed on an "AS IS" BASIS,\r
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
- * See the License for the specific language governing permissions and\r
- * limitations under the License.\r
- * ============LICENSE_END=========================================================\r
- */\r
-\r
-package com.att.nsa.cambria.service.impl;\r
-\r
-import static org.junit.Assert.*;\r
-import static org.mockito.Mockito.when;\r
-\r
-import java.io.IOException;\r
-import java.util.ArrayList;\r
-import java.util.Arrays;\r
-import java.util.HashMap;\r
-import java.util.HashSet;\r
-import java.util.List;\r
-import java.util.Map;\r
-import java.util.Set;\r
-\r
-import com.att.dmf.mr.backends.ConsumerFactory;\r
-import com.att.dmf.mr.beans.DMaaPContext;\r
-import com.att.dmf.mr.beans.DMaaPKafkaMetaBroker;\r
-import com.att.dmf.mr.metabroker.Topic;\r
-import com.att.dmf.mr.service.impl.UIServiceImpl;\r
-import com.att.dmf.mr.security.DMaaPAuthenticatorImpl;\r
-import com.att.dmf.mr.utils.ConfigurationReader;\r
-import com.att.dmf.mr.utils.DMaaPResponseBuilder;\r
-import com.att.nsa.configs.ConfigDbException;\r
-import com.att.nsa.security.db.NsaApiDb;\r
-import com.att.nsa.security.db.simple.NsaSimpleApiKey;\r
-\r
-import org.junit.After;\r
-import org.junit.Before;\r
-import org.junit.Test;\r
-import org.junit.runner.RunWith;\r
-import org.mockito.InjectMocks;\r
-import org.mockito.Mock;\r
-import org.mockito.MockitoAnnotations;\r
-import org.powermock.api.mockito.PowerMockito;\r
-import org.powermock.core.classloader.annotations.PrepareForTest;\r
-import org.powermock.modules.junit4.PowerMockRunner;\r
-\r
-@RunWith(PowerMockRunner.class)\r
-@PrepareForTest({ DMaaPAuthenticatorImpl.class, DMaaPResponseBuilder.class })\r
-public class UIServiceImplTest {\r
-\r
-       @InjectMocks\r
-       UIServiceImpl service;\r
-\r
-       @Mock\r
-       DMaaPContext dmaapContext;\r
-       @Mock\r
-       ConsumerFactory factory;\r
-\r
-       @Mock\r
-       ConfigurationReader configReader;\r
-\r
-       @Mock\r
-       DMaaPKafkaMetaBroker dmaapKafkaMetaBroker;\r
-\r
-       @Mock\r
-       Topic metatopic;\r
-\r
-       @Before\r
-       public void setUp() throws Exception {\r
-               MockitoAnnotations.initMocks(this);\r
-               PowerMockito.mockStatic(DMaaPAuthenticatorImpl.class);\r
-               NsaSimpleApiKey user = new NsaSimpleApiKey("admin", "password");\r
-\r
-               PowerMockito.when(dmaapContext.getConfigReader()).thenReturn(configReader);\r
-               PowerMockito.when(configReader.getfConsumerFactory()).thenReturn(factory);\r
-\r
-               PowerMockito.when(configReader.getfApiKeyDb()).thenReturn(fApiKeyDb);\r
-               PowerMockito.when(DMaaPAuthenticatorImpl.getAuthenticatedUser(dmaapContext)).thenReturn(user);\r
-               PowerMockito.mockStatic(DMaaPResponseBuilder.class);\r
-               PowerMockito.when(configReader.getfMetaBroker()).thenReturn(dmaapKafkaMetaBroker);\r
-       }\r
-\r
-       @After\r
-       public void tearDown() throws Exception {\r
-       }\r
-\r
-       @Test\r
-       public void testHello() {\r
-\r
-               try {\r
-                       service.hello(dmaapContext);\r
-               } catch (IOException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               }\r
-\r
-               String trueValue = "True";\r
-               assertTrue(trueValue.equalsIgnoreCase("True"));\r
-\r
-       }\r
-\r
-       @Test\r
-       public void testGetApiKeysTable() {\r
-\r
-               try {\r
-                       service.getApiKeysTable(dmaapContext);\r
-               } catch (NullPointerException e) {\r
-                       // TODO Auto-generated catch block\r
-                       // e.printStackTrace();\r
-                       assertTrue(true);\r
-               } catch (ConfigDbException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } catch (IOException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               }\r
-               assertTrue(true);\r
-\r
-       }\r
-\r
-       @Test\r
-       public void testGetApiKey() {\r
-\r
-               try {\r
-                       service.getApiKey(dmaapContext, "admin");\r
-               } catch (NullPointerException e) {\r
-                       // TODO Auto-generated catch block\r
-                       // e.printStackTrace();\r
-                       assertTrue(true);\r
-               } catch (ConfigDbException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } catch (IOException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } catch (Exception e) {\r
-                       // TODO Auto-generated catch block\r
-                       assertTrue(true);\r
-               }\r
-\r
-       }\r
-\r
-       @Test\r
-       public void testGetApiKey_invalidkey() {\r
-\r
-               try {\r
-                       service.getApiKey(dmaapContext, "k56HmWT72J");\r
-               } catch (NullPointerException e) {\r
-                       // TODO Auto-generated catch block\r
-                       // e.printStackTrace();\r
-                       assertTrue(true);\r
-               } catch (ConfigDbException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } catch (IOException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } catch (Exception e) {\r
-                       // TODO Auto-generated catch block\r
-                       assertTrue(true);\r
-               }\r
-\r
-       }\r
-\r
-       @Test\r
-       public void testGetTopicsTable() {\r
-\r
-               try {\r
-                       List<Topic> topics = new ArrayList<Topic>();\r
-                       topics.add(metatopic);\r
-                       when(dmaapKafkaMetaBroker.getAllTopics()).thenReturn(topics);\r
-                       service.getTopicsTable(dmaapContext);\r
-               } catch (NullPointerException e) {\r
-                       // TODO Auto-generated catch block\r
-                       // e.printStackTrace();\r
-\r
-               } catch (ConfigDbException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } catch (IOException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } catch (Exception e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               }\r
-               assertTrue(true);\r
-\r
-       }\r
-\r
-       @Test\r
-       public void testGetTopic() {\r
-\r
-               try {\r
-                       when(dmaapKafkaMetaBroker.getTopic("testTopic")).thenReturn(metatopic);\r
-                       service.getTopic(dmaapContext, "testTopic");\r
-               } catch (NullPointerException e) {\r
-                       // TODO Auto-generated catch block\r
-                       // e.printStackTrace();\r
-\r
-               } catch (ConfigDbException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } catch (IOException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } catch (Exception e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               }\r
-               assertTrue(true);\r
-       }\r
-\r
-       @Test\r
-       public void testGetTopic_nulltopic() {\r
-\r
-               try {\r
-                       when(dmaapKafkaMetaBroker.getTopic("topicNamespace.topic")).thenReturn(null);\r
-                       service.getTopic(dmaapContext, "testTopic");\r
-               } catch (NullPointerException e) {\r
-                       // TODO Auto-generated catch block\r
-                       // e.printStackTrace();\r
-               } catch (ConfigDbException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } catch (IOException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } catch (Exception e) {\r
-                       // TODO Auto-generated catch block\r
-                       assertTrue(true);\r
-               }\r
-\r
-       }\r
-\r
-       NsaApiDb<NsaSimpleApiKey> fApiKeyDb = new NsaApiDb<NsaSimpleApiKey>() {\r
-\r
-               Set<String> keys = new HashSet<>(Arrays.asList("testkey", "admin"));\r
-\r
-               @Override\r
-               public NsaSimpleApiKey createApiKey(String arg0, String arg1)\r
-                               throws com.att.nsa.security.db.NsaApiDb.KeyExistsException, ConfigDbException {\r
-                       // TODO Auto-generated method stub\r
-                       return new NsaSimpleApiKey(arg0, arg1);\r
-               }\r
-\r
-               @Override\r
-               public boolean deleteApiKey(NsaSimpleApiKey arg0) throws ConfigDbException {\r
-                       // TODO Auto-generated method stub\r
-                       return false;\r
-               }\r
-\r
-               @Override\r
-               public boolean deleteApiKey(String arg0) throws ConfigDbException {\r
-                       // TODO Auto-generated method stub\r
-                       return false;\r
-               }\r
-\r
-               @Override\r
-               public Map<String, NsaSimpleApiKey> loadAllKeyRecords() throws ConfigDbException {\r
-                       Map<String, NsaSimpleApiKey> map = new HashMap<String, NsaSimpleApiKey>();\r
-                       map.put("testkey", new NsaSimpleApiKey("testkey", "password"));\r
-                       map.put("admin", new NsaSimpleApiKey("admin", "password"));\r
-\r
-                       return map;\r
-               }\r
-\r
-               @Override\r
-               public Set<String> loadAllKeys() throws ConfigDbException {\r
-                       // TODO Auto-generated method stub\r
-\r
-                       return keys;\r
-               }\r
-\r
-               @Override\r
-               public NsaSimpleApiKey loadApiKey(String arg0) throws ConfigDbException {\r
-                       if (!keys.contains(arg0)) {\r
-                               return null;\r
-                       }\r
-                       return new NsaSimpleApiKey(arg0, "password");\r
-               }\r
-\r
-               @Override\r
-               public void saveApiKey(NsaSimpleApiKey arg0) throws ConfigDbException {\r
-                       // TODO Auto-generated method stub\r
-\r
-               }\r
-       };\r
-\r
-}\r
+/*-
+ * ============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 org.onap.dmaap.mr.cambria.service.impl;
+
+import static org.junit.Assert.*;
+import static org.mockito.Mockito.when;
+
+import java.io.IOException;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.HashMap;
+import java.util.HashSet;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+
+import org.onap.dmaap.dmf.mr.backends.ConsumerFactory;
+import org.onap.dmaap.dmf.mr.beans.DMaaPContext;
+import org.onap.dmaap.dmf.mr.beans.DMaaPKafkaMetaBroker;
+import org.onap.dmaap.dmf.mr.metabroker.Topic;
+import org.onap.dmaap.dmf.mr.service.impl.UIServiceImpl;
+import org.onap.dmaap.dmf.mr.security.DMaaPAuthenticatorImpl;
+import org.onap.dmaap.dmf.mr.utils.ConfigurationReader;
+import org.onap.dmaap.dmf.mr.utils.DMaaPResponseBuilder;
+import com.att.nsa.configs.ConfigDbException;
+import com.att.nsa.security.db.NsaApiDb;
+import com.att.nsa.security.db.simple.NsaSimpleApiKey;
+
+import org.junit.After;
+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;
+
+@RunWith(PowerMockRunner.class)
+@PrepareForTest({ DMaaPAuthenticatorImpl.class, DMaaPResponseBuilder.class })
+public class UIServiceImplTest {
+
+       @InjectMocks
+       UIServiceImpl service;
+
+       @Mock
+       DMaaPContext dmaapContext;
+       @Mock
+       ConsumerFactory factory;
+
+       @Mock
+       ConfigurationReader configReader;
+
+       @Mock
+       DMaaPKafkaMetaBroker dmaapKafkaMetaBroker;
+
+       @Mock
+       Topic metatopic;
+
+       @Before
+       public void setUp() throws Exception {
+               MockitoAnnotations.initMocks(this);
+               PowerMockito.mockStatic(DMaaPAuthenticatorImpl.class);
+               NsaSimpleApiKey user = new NsaSimpleApiKey("admin", "password");
+
+               PowerMockito.when(dmaapContext.getConfigReader()).thenReturn(configReader);
+               PowerMockito.when(configReader.getfConsumerFactory()).thenReturn(factory);
+
+               PowerMockito.when(configReader.getfApiKeyDb()).thenReturn(fApiKeyDb);
+               PowerMockito.when(DMaaPAuthenticatorImpl.getAuthenticatedUser(dmaapContext)).thenReturn(user);
+               PowerMockito.mockStatic(DMaaPResponseBuilder.class);
+               PowerMockito.when(configReader.getfMetaBroker()).thenReturn(dmaapKafkaMetaBroker);
+       }
+
+       @After
+       public void tearDown() throws Exception {
+       }
+
+       @Test
+       public void testHello() {
+
+               try {
+                       service.hello(dmaapContext);
+               } catch (IOException e) {
+                       // TODO Auto-generated catch block
+                       e.printStackTrace();
+               }
+
+               String trueValue = "True";
+               assertTrue(trueValue.equalsIgnoreCase("True"));
+
+       }
+
+       @Test
+       public void testGetApiKeysTable() {
+
+               try {
+                       service.getApiKeysTable(dmaapContext);
+               } catch (NullPointerException e) {
+                       // TODO Auto-generated catch block
+                       // e.printStackTrace();
+                       assertTrue(true);
+               } catch (ConfigDbException e) {
+                       // TODO Auto-generated catch block
+                       e.printStackTrace();
+               } catch (IOException e) {
+                       // TODO Auto-generated catch block
+                       e.printStackTrace();
+               }
+               assertTrue(true);
+
+       }
+
+       @Test
+       public void testGetApiKey() {
+
+               try {
+                       service.getApiKey(dmaapContext, "admin");
+               } catch (NullPointerException e) {
+                       // TODO Auto-generated catch block
+                       // e.printStackTrace();
+                       assertTrue(true);
+               } catch (ConfigDbException e) {
+                       // TODO Auto-generated catch block
+                       e.printStackTrace();
+               } catch (IOException e) {
+                       // TODO Auto-generated catch block
+                       e.printStackTrace();
+               } catch (Exception e) {
+                       // TODO Auto-generated catch block
+                       assertTrue(true);
+               }
+
+       }
+
+       @Test
+       public void testGetApiKey_invalidkey() {
+
+               try {
+                       service.getApiKey(dmaapContext, "k56HmWT72J");
+               } catch (NullPointerException e) {
+                       // TODO Auto-generated catch block
+                       // e.printStackTrace();
+                       assertTrue(true);
+               } catch (ConfigDbException e) {
+                       // TODO Auto-generated catch block
+                       e.printStackTrace();
+               } catch (IOException e) {
+                       // TODO Auto-generated catch block
+                       e.printStackTrace();
+               } catch (Exception e) {
+                       // TODO Auto-generated catch block
+                       assertTrue(true);
+               }
+
+       }
+
+       @Test
+       public void testGetTopicsTable() {
+
+               try {
+                       List<Topic> topics = new ArrayList<Topic>();
+                       topics.add(metatopic);
+                       when(dmaapKafkaMetaBroker.getAllTopics()).thenReturn(topics);
+                       service.getTopicsTable(dmaapContext);
+               } catch (NullPointerException e) {
+                       // TODO Auto-generated catch block
+                       // e.printStackTrace();
+
+               } catch (ConfigDbException e) {
+                       // TODO Auto-generated catch block
+                       e.printStackTrace();
+               } catch (IOException e) {
+                       // TODO Auto-generated catch block
+                       e.printStackTrace();
+               } catch (Exception e) {
+                       // TODO Auto-generated catch block
+                       e.printStackTrace();
+               }
+               assertTrue(true);
+
+       }
+
+       @Test
+       public void testGetTopic() {
+
+               try {
+                       when(dmaapKafkaMetaBroker.getTopic("testTopic")).thenReturn(metatopic);
+                       service.getTopic(dmaapContext, "testTopic");
+               } catch (NullPointerException e) {
+                       // TODO Auto-generated catch block
+                       // e.printStackTrace();
+
+               } catch (ConfigDbException e) {
+                       // TODO Auto-generated catch block
+                       e.printStackTrace();
+               } catch (IOException e) {
+                       // TODO Auto-generated catch block
+                       e.printStackTrace();
+               } catch (Exception e) {
+                       // TODO Auto-generated catch block
+                       e.printStackTrace();
+               }
+               assertTrue(true);
+       }
+
+       @Test
+       public void testGetTopic_nulltopic() {
+
+               try {
+                       when(dmaapKafkaMetaBroker.getTopic("topicNamespace.topic")).thenReturn(null);
+                       service.getTopic(dmaapContext, "testTopic");
+               } catch (NullPointerException e) {
+                       // TODO Auto-generated catch block
+                       // e.printStackTrace();
+               } catch (ConfigDbException e) {
+                       // TODO Auto-generated catch block
+                       e.printStackTrace();
+               } catch (IOException e) {
+                       // TODO Auto-generated catch block
+                       e.printStackTrace();
+               } catch (Exception e) {
+                       // TODO Auto-generated catch block
+                       assertTrue(true);
+               }
+
+       }
+
+       NsaApiDb<NsaSimpleApiKey> fApiKeyDb = new NsaApiDb<NsaSimpleApiKey>() {
+
+               Set<String> keys = new HashSet<>(Arrays.asList("testkey", "admin"));
+
+               @Override
+               public NsaSimpleApiKey createApiKey(String arg0, String arg1)
+                               throws com.att.nsa.security.db.NsaApiDb.KeyExistsException, ConfigDbException {
+                       // TODO Auto-generated method stub
+                       return new NsaSimpleApiKey(arg0, arg1);
+               }
+
+               @Override
+               public boolean deleteApiKey(NsaSimpleApiKey arg0) throws ConfigDbException {
+                       // TODO Auto-generated method stub
+                       return false;
+               }
+
+               @Override
+               public boolean deleteApiKey(String arg0) throws ConfigDbException {
+                       // TODO Auto-generated method stub
+                       return false;
+               }
+
+               @Override
+               public Map<String, NsaSimpleApiKey> loadAllKeyRecords() throws ConfigDbException {
+                       Map<String, NsaSimpleApiKey> map = new HashMap<String, NsaSimpleApiKey>();
+                       map.put("testkey", new NsaSimpleApiKey("testkey", "password"));
+                       map.put("admin", new NsaSimpleApiKey("admin", "password"));
+
+                       return map;
+               }
+
+               @Override
+               public Set<String> loadAllKeys() throws ConfigDbException {
+                       // TODO Auto-generated method stub
+
+                       return keys;
+               }
+
+               @Override
+               public NsaSimpleApiKey loadApiKey(String arg0) throws ConfigDbException {
+                       if (!keys.contains(arg0)) {
+                               return null;
+                       }
+                       return new NsaSimpleApiKey(arg0, "password");
+               }
+
+               @Override
+               public void saveApiKey(NsaSimpleApiKey arg0) throws ConfigDbException {
+                       // TODO Auto-generated method stub
+
+               }
+       };
+
+}