use of eu.bcvsolutions.idm.core.api.dto.IdmPasswordHistoryDto in project CzechIdMng by bcvsolutions.
the class DefaultPasswordHistoryIntegrationTest method testFilteringByValidFrom.
@Test
public void testFilteringByValidFrom() {
String password = "password-" + System.currentTimeMillis();
GuardedString passwordAsGuardedString = new GuardedString(password);
// Change 1
IdmIdentityDto identity = testHelper.createIdentity(passwordAsGuardedString);
ZonedDateTime fromOne = ZonedDateTime.now().truncatedTo(ChronoUnit.MILLIS);
PasswordChangeDto passwordChange = new PasswordChangeDto();
passwordChange.setOldPassword(passwordAsGuardedString);
passwordChange.setAll(true);
passwordChange.setIdm(true);
passwordChange.setNewPassword(new GuardedString(password));
// Change 2
identityService.passwordChange(identity, passwordChange);
getHelper().waitForResult(null, 1, 1);
ZonedDateTime fromTwo = ZonedDateTime.now().truncatedTo(ChronoUnit.MILLIS);
// Change 3
identityService.passwordChange(identity, passwordChange);
getHelper().waitForResult(null, 1, 1);
ZonedDateTime fromThree = ZonedDateTime.now().truncatedTo(ChronoUnit.MILLIS);
// Change 4
identityService.passwordChange(identity, passwordChange);
getHelper().waitForResult(null, 1, 1);
ZonedDateTime fromFour = ZonedDateTime.now().truncatedTo(ChronoUnit.MILLIS);
;
IdmPasswordHistoryFilter filter = new IdmPasswordHistoryFilter();
filter.setIdentityId(identity.getId());
filter.setFrom(fromOne);
List<IdmPasswordHistoryDto> content = passwordHistoryService.find(filter, null).getContent();
assertEquals(3, content.size());
filter.setFrom(fromTwo);
content = passwordHistoryService.find(filter, null).getContent();
assertEquals(2, content.size());
filter.setFrom(fromThree);
content = passwordHistoryService.find(filter, null).getContent();
assertEquals(1, content.size());
filter.setFrom(fromFour);
content = passwordHistoryService.find(filter, null).getContent();
assertEquals(0, content.size());
}
use of eu.bcvsolutions.idm.core.api.dto.IdmPasswordHistoryDto in project CzechIdMng by bcvsolutions.
the class DefaultPasswordHistoryIntegrationTest method testFilteringByCreatorTwo.
@Test
public void testFilteringByCreatorTwo() {
String password = "password-" + System.currentTimeMillis();
GuardedString passwordAsGuardedString = new GuardedString(password);
IdmIdentityDto adminOne = testHelper.createIdentity();
IdmIdentityDto adminTwo = testHelper.createIdentity();
loginAsAdmin(adminOne.getUsername());
// Change 1
IdmIdentityDto identity = testHelper.createIdentity(passwordAsGuardedString);
PasswordChangeDto passwordChange = new PasswordChangeDto();
passwordChange.setOldPassword(passwordAsGuardedString);
passwordChange.setAll(true);
passwordChange.setIdm(true);
passwordChange.setNewPassword(new GuardedString(password));
// Change 2
identityService.passwordChange(identity, passwordChange);
logout();
loginAsAdmin(adminTwo.getUsername());
// Change 3
identityService.passwordChange(identity, passwordChange);
// Change 4
identityService.passwordChange(identity, passwordChange);
// Change 5
identityService.passwordChange(identity, passwordChange);
IdmPasswordHistoryFilter filter = new IdmPasswordHistoryFilter();
filter.setCreator(adminOne.getCode());
List<IdmPasswordHistoryDto> content = passwordHistoryService.find(filter, null).getContent();
assertEquals(2, content.size());
filter.setCreator(adminTwo.getCode());
content = passwordHistoryService.find(filter, null).getContent();
assertEquals(3, content.size());
filter = new IdmPasswordHistoryFilter();
filter.setIdentityId(identity.getId());
content = passwordHistoryService.find(filter, null).getContent();
assertEquals(5, content.size());
}
use of eu.bcvsolutions.idm.core.api.dto.IdmPasswordHistoryDto in project CzechIdMng by bcvsolutions.
the class DefaultPasswordHistoryIntegrationTest method testFilteringByIdentityUsername.
@Test
public void testFilteringByIdentityUsername() {
String password = "password-" + System.currentTimeMillis();
GuardedString passwordAsGuardedString = new GuardedString(password);
// Change 1
IdmIdentityDto identity = testHelper.createIdentity(passwordAsGuardedString);
PasswordChangeDto passwordChange = new PasswordChangeDto();
passwordChange.setOldPassword(passwordAsGuardedString);
passwordChange.setAll(true);
passwordChange.setIdm(true);
passwordChange.setNewPassword(new GuardedString(password));
// Change 2
identityService.passwordChange(identity, passwordChange);
// Change 3
identityService.passwordChange(identity, passwordChange);
// Change 4
identityService.passwordChange(identity, passwordChange);
IdmPasswordHistoryFilter filter = new IdmPasswordHistoryFilter();
filter.setIdentityUsername(identity.getUsername());
List<IdmPasswordHistoryDto> content = passwordHistoryService.find(filter, null).getContent();
assertEquals(4, content.size());
filter = new IdmPasswordHistoryFilter();
filter.setIdentityId(identity.getId());
content = passwordHistoryService.find(filter, null).getContent();
assertEquals(4, content.size());
}
Aggregations