-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update ipmortUserProfile method and add the unit test
- Loading branch information
Showing
3 changed files
with
155 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
123 changes: 123 additions & 0 deletions
123
...est/java/org/exoplatform/services/organization/api/IDMExternalStoreImportServiceTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
/* | ||
* This file is part of the Meeds project (https://meeds.io/). | ||
* | ||
* Copyright (C) 2023 Meeds Association [email protected] | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 3 of the License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with this program; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
*/ | ||
package org.exoplatform.services.organization.api; | ||
|
||
import static org.mockito.Mockito.*; | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
|
||
import org.junit.Before; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
import org.mockito.Mock; | ||
import org.mockito.junit.MockitoJUnitRunner; | ||
|
||
import org.exoplatform.container.ExoContainer; | ||
import org.exoplatform.container.xml.InitParams; | ||
import org.exoplatform.services.listener.ListenerService; | ||
import org.exoplatform.services.organization.OrganizationService; | ||
import org.exoplatform.services.organization.UserProfile; | ||
import org.exoplatform.services.organization.UserProfileHandler; | ||
import org.exoplatform.services.organization.externalstore.IDMExternalStoreImportService; | ||
import org.exoplatform.services.organization.externalstore.IDMExternalStoreService; | ||
import org.exoplatform.services.organization.externalstore.IDMQueueService; | ||
import org.exoplatform.services.organization.externalstore.model.IDMEntityType; | ||
import org.exoplatform.services.scheduler.JobSchedulerService; | ||
|
||
@RunWith(MockitoJUnitRunner.class) | ||
public class IDMExternalStoreImportServiceTest { | ||
|
||
@Mock | ||
ExoContainer container; | ||
@Mock | ||
JobSchedulerService jobSchedulerService; | ||
@Mock | ||
IDMQueueService idmQueueService; | ||
@Mock | ||
InitParams initParams; | ||
@Mock | ||
private OrganizationService organizationService; | ||
@Mock | ||
private IDMExternalStoreService idmExternalStoreService; | ||
@Mock | ||
private ListenerService listenerService; | ||
private IDMExternalStoreImportService idmExternalStoreImportService; | ||
|
||
@Before | ||
public void setUp() { | ||
this.idmExternalStoreImportService = new IDMExternalStoreImportService(container, | ||
organizationService, | ||
listenerService, | ||
idmExternalStoreService, | ||
jobSchedulerService, | ||
idmQueueService, | ||
initParams); | ||
} | ||
|
||
@Test | ||
public void importUserProfileTest() throws Exception { | ||
String userName = "john"; | ||
UserProfile internalUserProfile = mock(UserProfile.class); | ||
UserProfileHandler userProfileHandler = mock(UserProfileHandler.class); | ||
when(organizationService.getUserProfileHandler()).thenReturn(userProfileHandler); | ||
when(userProfileHandler.findUserProfileByName(userName)).thenReturn(null); | ||
UserProfile externalUserProfile = mock(UserProfile.class); | ||
when(idmExternalStoreService.getEntity(IDMEntityType.USER_PROFILE, userName)).thenReturn(externalUserProfile); | ||
when(externalUserProfile.getUserName()).thenReturn(userName); | ||
when(externalUserProfile.getUserInfoMap()).thenReturn(new HashMap<>()); | ||
when(idmExternalStoreService.isEntityPresent(IDMEntityType.USER_PROFILE, userName)).thenReturn(true); | ||
// | ||
idmExternalStoreImportService.importEntityToInternalStore(IDMEntityType.USER_PROFILE, userName, false, false); | ||
verify(listenerService, times(0)).broadcast(eq(IDMExternalStoreService.USER_PROFILE_ADDED_FROM_EXTERNAL_STORE), | ||
anyObject(), | ||
argThat(param -> param instanceof HashMap<?, ?>)); | ||
|
||
Map<String, String> propertiesMap = new HashMap<>(); | ||
propertiesMap.put("propertyKey", "propertyValue"); | ||
when(userProfileHandler.findUserProfileByName(userName)).thenReturn(internalUserProfile); | ||
when(internalUserProfile.getUserInfoMap()).thenReturn(propertiesMap); | ||
when(externalUserProfile.getUserInfoMap()).thenReturn(propertiesMap); | ||
// | ||
idmExternalStoreImportService.importEntityToInternalStore(IDMEntityType.USER_PROFILE, userName, false, false); | ||
verify(listenerService, times(0)).broadcast(eq(IDMExternalStoreService.USER_PROFILE_ADDED_FROM_EXTERNAL_STORE), | ||
anyObject(), | ||
argThat(param -> param instanceof HashMap<?, ?>)); | ||
|
||
when(internalUserProfile.getUserInfoMap()).thenReturn(new HashMap<>()); | ||
// | ||
idmExternalStoreImportService.importEntityToInternalStore(IDMEntityType.USER_PROFILE, userName, false, false); | ||
verify(listenerService, times(1)).broadcast(eq(IDMExternalStoreService.USER_PROFILE_ADDED_FROM_EXTERNAL_STORE), | ||
anyObject(), | ||
argThat(param -> param instanceof HashMap<?, ?>)); | ||
|
||
Map<String, String> updatedPropertyMap = new HashMap<>(); | ||
updatedPropertyMap.put("propertyKey", "updatedPropertyValue"); | ||
when(externalUserProfile.getUserInfoMap()).thenReturn(updatedPropertyMap); | ||
when(internalUserProfile.getUserInfoMap()).thenReturn(propertiesMap); | ||
// | ||
idmExternalStoreImportService.importEntityToInternalStore(IDMEntityType.USER_PROFILE, userName, false, false); | ||
verify(listenerService, atLeast(1)).broadcast(eq(IDMExternalStoreService.USER_PROFILE_ADDED_FROM_EXTERNAL_STORE), | ||
anyObject(), | ||
argThat(param -> param instanceof HashMap<?, ?>)); | ||
|
||
} | ||
|
||
} |