Search in sources :

Example 11 with IdmPasswordHistoryDto

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());
}
Also used : IdmPasswordHistoryFilter(eu.bcvsolutions.idm.core.api.dto.filter.IdmPasswordHistoryFilter) ZonedDateTime(java.time.ZonedDateTime) PasswordChangeDto(eu.bcvsolutions.idm.core.api.dto.PasswordChangeDto) IdmPasswordHistoryDto(eu.bcvsolutions.idm.core.api.dto.IdmPasswordHistoryDto) GuardedString(eu.bcvsolutions.idm.core.security.api.domain.GuardedString) GuardedString(eu.bcvsolutions.idm.core.security.api.domain.GuardedString) IdmIdentityDto(eu.bcvsolutions.idm.core.api.dto.IdmIdentityDto) Test(org.junit.Test) AbstractIntegrationTest(eu.bcvsolutions.idm.test.api.AbstractIntegrationTest)

Example 12 with IdmPasswordHistoryDto

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());
}
Also used : IdmPasswordHistoryFilter(eu.bcvsolutions.idm.core.api.dto.filter.IdmPasswordHistoryFilter) PasswordChangeDto(eu.bcvsolutions.idm.core.api.dto.PasswordChangeDto) IdmPasswordHistoryDto(eu.bcvsolutions.idm.core.api.dto.IdmPasswordHistoryDto) GuardedString(eu.bcvsolutions.idm.core.security.api.domain.GuardedString) GuardedString(eu.bcvsolutions.idm.core.security.api.domain.GuardedString) IdmIdentityDto(eu.bcvsolutions.idm.core.api.dto.IdmIdentityDto) Test(org.junit.Test) AbstractIntegrationTest(eu.bcvsolutions.idm.test.api.AbstractIntegrationTest)

Example 13 with IdmPasswordHistoryDto

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());
}
Also used : IdmPasswordHistoryFilter(eu.bcvsolutions.idm.core.api.dto.filter.IdmPasswordHistoryFilter) PasswordChangeDto(eu.bcvsolutions.idm.core.api.dto.PasswordChangeDto) IdmPasswordHistoryDto(eu.bcvsolutions.idm.core.api.dto.IdmPasswordHistoryDto) GuardedString(eu.bcvsolutions.idm.core.security.api.domain.GuardedString) GuardedString(eu.bcvsolutions.idm.core.security.api.domain.GuardedString) IdmIdentityDto(eu.bcvsolutions.idm.core.api.dto.IdmIdentityDto) Test(org.junit.Test) AbstractIntegrationTest(eu.bcvsolutions.idm.test.api.AbstractIntegrationTest)

Aggregations

IdmPasswordHistoryDto (eu.bcvsolutions.idm.core.api.dto.IdmPasswordHistoryDto)13 IdmPasswordHistoryFilter (eu.bcvsolutions.idm.core.api.dto.filter.IdmPasswordHistoryFilter)10 IdmIdentityDto (eu.bcvsolutions.idm.core.api.dto.IdmIdentityDto)9 PasswordChangeDto (eu.bcvsolutions.idm.core.api.dto.PasswordChangeDto)9 GuardedString (eu.bcvsolutions.idm.core.security.api.domain.GuardedString)9 AbstractIntegrationTest (eu.bcvsolutions.idm.test.api.AbstractIntegrationTest)9 Test (org.junit.Test)9 ZonedDateTime (java.time.ZonedDateTime)3 IdmPasswordDto (eu.bcvsolutions.idm.core.api.dto.IdmPasswordDto)1 BCryptPasswordEncoder (org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder)1