X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=ecomp-portal-BE-common%2Fsrc%2Ftest%2Fjava%2Forg%2Fonap%2Fportalapp%2Fportal%2Fservice%2FEPProfileServiceImplTest.java;fp=ecomp-portal-BE-common%2Fsrc%2Ftest%2Fjava%2Forg%2Fonap%2Fportalapp%2Fportal%2Fservice%2FEPProfileServiceImplTest.java;h=9aa6018516c041b28dc3f108040f6dbdc6f0e995;hb=a301b1cc365a4771f7ffd0628b2b77093a4f259c;hp=0000000000000000000000000000000000000000;hpb=1376951553a11ed93a9fde45b7f26b51c0b31e9c;p=portal.git 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); + + } + +}