summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-BE-common/src/test/java/org/onap/portalapp/uebhandler
diff options
context:
space:
mode:
authorHima Elisetty <hb123f@att.com>2018-06-27 12:20:59 -0400
committerHima Elisetty <hb123f@att.com>2018-06-27 12:34:37 -0400
commit6f03ccd5a4ad90296f4dc3567531848fce1d8ad5 (patch)
treeaa54162f260c349b3a62b9f87be81a14e7e826e6 /ecomp-portal-BE-common/src/test/java/org/onap/portalapp/uebhandler
parent7235549c9a028b494cb21f3ed9c1087dd07f0036 (diff)
JUnits for coverage
Issue-ID: PORTAL-273 JUnits for sonar coverage Change-Id: Ibfa06dcbc7809d9d2598af4ba31dd8c88943aa20 Signed-off-by: Hima Elisetty <hb123f@att.com>
Diffstat (limited to 'ecomp-portal-BE-common/src/test/java/org/onap/portalapp/uebhandler')
-rw-r--r--ecomp-portal-BE-common/src/test/java/org/onap/portalapp/uebhandler/FunctionalMenuHandlerTest.java131
-rw-r--r--ecomp-portal-BE-common/src/test/java/org/onap/portalapp/uebhandler/InitUebHandlerTest.java111
2 files changed, 242 insertions, 0 deletions
diff --git a/ecomp-portal-BE-common/src/test/java/org/onap/portalapp/uebhandler/FunctionalMenuHandlerTest.java b/ecomp-portal-BE-common/src/test/java/org/onap/portalapp/uebhandler/FunctionalMenuHandlerTest.java
new file mode 100644
index 00000000..4e7f5fe9
--- /dev/null
+++ b/ecomp-portal-BE-common/src/test/java/org/onap/portalapp/uebhandler/FunctionalMenuHandlerTest.java
@@ -0,0 +1,131 @@
+/*-
+ * ============LICENSE_START==========================================
+ * ONAP Portal
+ * ===================================================================
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * ===================================================================
+ *
+ * Unless otherwise specified, all software contained herein is licensed
+ * under the Apache License, Version 2.0 (the "License");
+ * you may not use this software 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.
+ *
+ * Unless otherwise specified, all documentation contained herein is licensed
+ * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
+ * you may not use this documentation except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://creativecommons.org/licenses/by/4.0/
+ *
+ * Unless required by applicable law or agreed to in writing, documentation
+ * 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.portalapp.uebhandler;
+
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertTrue;
+
+import java.io.IOException;
+import java.util.ArrayList;
+import java.util.List;
+
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+
+import org.junit.Before;
+import org.junit.Test;
+import org.mockito.InjectMocks;
+import org.mockito.Mock;
+import org.mockito.Mockito;
+import org.mockito.MockitoAnnotations;
+import org.onap.portalapp.portal.core.MockEPUser;
+import org.onap.portalapp.portal.domain.EPUser;
+import org.onap.portalapp.portal.framework.MockitoTestSuite;
+import org.onap.portalapp.portal.service.AdminRolesService;
+import org.onap.portalapp.portal.service.FunctionalMenuService;
+import org.onap.portalapp.portal.service.SearchService;
+import org.onap.portalapp.portal.transport.FunctionalMenuItem;
+import org.onap.portalsdk.core.onboarding.ueb.UebMsg;
+
+public class FunctionalMenuHandlerTest {
+
+ @InjectMocks
+ FunctionalMenuHandler functionalMenuHandler = new FunctionalMenuHandler();
+
+ @Mock
+ private AdminRolesService adminRolesService;
+
+ @Mock
+ private FunctionalMenuService functionalMenuService;
+
+ @Mock
+ private SearchService searchSvc;
+
+ @Before
+ public void setup() {
+ MockitoAnnotations.initMocks(this);
+ }
+
+ MockitoTestSuite mockitoTestSuite = new MockitoTestSuite();
+
+ HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest();
+ HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse();
+
+ NullPointerException nullPointerException = new NullPointerException();
+
+ MockEPUser mockUser = new MockEPUser();
+
+ //@Ignore
+ @Test
+ public void getFunctionalMenuTest() throws IOException {
+
+ UebMsg uebMsg=new UebMsg();
+ uebMsg.putMsgId("1");
+
+ uebMsg.putMsgType("testType");
+
+ Boolean actualResponse = functionalMenuHandler.getFunctionalMenu(null);
+
+ assertFalse(actualResponse);
+ uebMsg.putSourceTopicName("test");
+ actualResponse = functionalMenuHandler.getFunctionalMenu(uebMsg);
+ uebMsg.putUserId("123");
+
+ EPUser user = new EPUser();
+ user.setOrgUserId("123");
+ user.setFirstName("TestFirstName");
+ user.setLastName("TestLastName");
+ List<FunctionalMenuItem> menuItems=new ArrayList<>();
+ FunctionalMenuItem menu=new FunctionalMenuItem();
+ menu.setUrl("test");
+ menu.setRestrictedApp(true);
+ menuItems.add(menu);
+
+ Mockito.when(searchSvc.searchUserByUserId(uebMsg.getUserId())).thenReturn(user);
+ Mockito.when(functionalMenuService.getFunctionalMenuItems()).thenReturn(menuItems);
+ Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true);
+ actualResponse = functionalMenuHandler.getFunctionalMenu(uebMsg);
+ assertTrue(actualResponse);
+
+ uebMsg.putUserId("245");
+ Mockito.when(searchSvc.searchUserByUserId(uebMsg.getUserId())).thenReturn(null);
+ actualResponse = functionalMenuHandler.getFunctionalMenu(uebMsg);
+ }
+
+}
diff --git a/ecomp-portal-BE-common/src/test/java/org/onap/portalapp/uebhandler/InitUebHandlerTest.java b/ecomp-portal-BE-common/src/test/java/org/onap/portalapp/uebhandler/InitUebHandlerTest.java
new file mode 100644
index 00000000..7e4eb3be
--- /dev/null
+++ b/ecomp-portal-BE-common/src/test/java/org/onap/portalapp/uebhandler/InitUebHandlerTest.java
@@ -0,0 +1,111 @@
+/*-
+ * ============LICENSE_START==========================================
+ * ONAP Portal
+ * ===================================================================
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * ===================================================================
+ *
+ * Unless otherwise specified, all software contained herein is licensed
+ * under the Apache License, Version 2.0 (the "License");
+ * you may not use this software 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.
+ *
+ * Unless otherwise specified, all documentation contained herein is licensed
+ * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
+ * you may not use this documentation except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://creativecommons.org/licenses/by/4.0/
+ *
+ * Unless required by applicable law or agreed to in writing, documentation
+ * 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.portalapp.uebhandler;
+
+import static org.junit.Assert.assertEquals;
+
+import java.io.PrintWriter;
+import java.io.StringWriter;
+import java.util.concurrent.ConcurrentLinkedQueue;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.mockito.InjectMocks;
+import org.mockito.Matchers;
+import org.mockito.Mock;
+import org.mockito.Mockito;
+import org.onap.portalapp.portal.controller.ExternalAccessRolesController;
+import org.onap.portalapp.portal.utils.EPCommonSystemProperties;
+import org.onap.portalapp.portal.utils.EcompPortalUtils;
+import org.onap.portalapp.portal.utils.PortalConstants;
+import org.onap.portalsdk.core.onboarding.ueb.UebManager;
+import org.onap.portalsdk.core.onboarding.ueb.UebMsg;
+import org.onap.portalsdk.core.onboarding.util.PortalApiConstants;
+import org.onap.portalsdk.core.onboarding.util.PortalApiProperties;
+import org.onap.portalsdk.core.util.SystemProperties;
+import org.powermock.api.mockito.PowerMockito;
+import org.powermock.core.classloader.annotations.PrepareForTest;
+import org.powermock.modules.junit4.PowerMockRunner;
+
+@RunWith(PowerMockRunner.class)
+@PrepareForTest({ EcompPortalUtils.class, PortalConstants.class, SystemProperties.class,
+ EPCommonSystemProperties.class, PortalApiProperties.class,PortalApiConstants.class,UebManager.class })
+public class InitUebHandlerTest {
+
+ @Mock
+ MainUebHandler mainUebHandler;
+
+ @InjectMocks
+ InitUebHandler initUebHandler=new InitUebHandler();
+
+ @Mock
+ UebManager uebManager1;
+
+ @Test
+ public void initUebTestWithException() throws Exception {
+ PowerMockito.mockStatic(PortalApiProperties.class);
+ initUebHandler.initUeb();
+ }
+
+ @Test
+ public void initUebTest() throws Exception {
+ PowerMockito.mockStatic(PortalApiProperties.class);
+ PowerMockito.mockStatic(PortalApiConstants.class);
+ Mockito.when(PortalApiProperties.getProperty(Matchers.any())).thenReturn("test");
+ //Mockito.when(methodCall)
+ initUebHandler.initUeb();
+ }
+
+ @SuppressWarnings("static-access")
+ @Test
+ public void initUebTest1() throws Exception {
+ PowerMockito.mockStatic(PortalApiProperties.class);
+ PowerMockito.mockStatic(PortalApiConstants.class);
+ PowerMockito.mockStatic(UebManager.class);
+ UebMsg uebMsg=new UebMsg();
+ uebMsg.putMsgId("12");
+ uebMsg.putMsgType("test");
+ uebMsg.putPayload("samplePayload");
+ uebMsg.putUserId("13");
+ ConcurrentLinkedQueue<UebMsg> inboxQueue = new ConcurrentLinkedQueue<UebMsg>();
+ Mockito.when(PortalApiProperties.getProperty(Matchers.any())).thenReturn("TRUE");
+ Mockito.when(UebManager.getInstance()).thenReturn(uebManager1);
+ initUebHandler.initUeb();
+ }
+}