From a301b1cc365a4771f7ffd0628b2b77093a4f259c Mon Sep 17 00:00:00 2001 From: Hari Om Verma Date: Thu, 22 Feb 2018 15:10:25 +0530 Subject: [PATCH 1/1] Unit Test Case for EPProfileServiceImpl.java Added JUnit test cases for EPProfileServiceImp.java Change-Id: Id39631225bb7fd77ea8eac2e3cc52d490aa48e13 Issue-ID: PORTAL-195 Signed-off-by: Hari Om Verma --- .../portal/service/EPProfileServiceImplTest.java | 86 ++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 ecomp-portal-BE-common/src/test/java/org/onap/portalapp/portal/service/EPProfileServiceImplTest.java diff --git a/ecomp-portal-BE-common/src/test/java/org/onap/portalapp/portal/service/EPProfileServiceImplTest.java b/ecomp-portal-BE-common/src/test/java/org/onap/portalapp/portal/service/EPProfileServiceImplTest.java new file mode 100644 index 00000000..9aa60185 --- /dev/null +++ b/ecomp-portal-BE-common/src/test/java/org/onap/portalapp/portal/service/EPProfileServiceImplTest.java @@ -0,0 +1,86 @@ +/* +* ============LICENSE_START======================================================= +* ONAP PORTAL +* ================================================================================ +* Copyright 2018 TechMahindra +*================================================================================= +* 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.portalapp.portal.service; + +import static org.junit.Assert.*; +import java.util.ArrayList; +import java.util.List; + +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.service.EPProfileServiceImpl; +import org.onap.portalsdk.core.dao.ProfileDao; +import org.onap.portalsdk.core.domain.Profile; +import org.onap.portalsdk.core.service.DataAccessService; +import org.onap.portalsdk.core.service.DataAccessServiceImpl; + +public class EPProfileServiceImplTest { + + @Mock + DataAccessService dataAccessService = new DataAccessServiceImpl(); + + @Mock + ProfileDao profileDao; + + @Before + public void setup() { + MockitoAnnotations.initMocks(this); + } + + @InjectMocks + EPProfileServiceImpl epProfileServiceImpl = new EPProfileServiceImpl(); + + MockEPUser mockUser = new MockEPUser(); + + @Test + public void findAllTest() { + List profileList = new ArrayList<>(); + Mockito.when(dataAccessService.getList(Profile.class, null)).thenReturn(profileList); + List expectedRoleList = epProfileServiceImpl.findAll(); + assertEquals(expectedRoleList, profileList); + } + + @Test(expected = java.lang.NumberFormatException.class) + public void getUserTest() { + EPUser epUser = new EPUser(); + Mockito.when(dataAccessService.getDomainObject(EPUser.class, Long.parseLong("test"), null)).thenReturn(epUser); + epProfileServiceImpl.getUser("test"); + } + + @Test + public void saveUserTest() { + EPUser user = mockUser.mockEPUser(); + Mockito.doNothing().when(dataAccessService).saveDomainObject(user, null); + epProfileServiceImpl.saveUser(user); + } + + @Test + public void getProfileTest() { + epProfileServiceImpl.getProfile(1); + + } + +} -- 2.16.6