LDAPSyncTest - additional removal of users at the end of the test

Necessary when running with external AD

Closes #27499

Signed-off-by: Pavel Drozd <pdrozd@redhat.com>
This commit is contained in:
Pavel Drozd 2024-03-04 15:07:38 +01:00 committed by Alexander Schwartz
parent bba701437f
commit be7775a9be

View file

@ -346,6 +346,16 @@ public class LDAPSyncTest extends AbstractLDAPTest {
Assert.assertEquals("user1", user1.getFirstAttribute(LDAPConstants.LDAP_ID)); Assert.assertEquals("user1", user1.getFirstAttribute(LDAPConstants.LDAP_ID));
}); });
// Remove all users from model - required step before the next test execution especially when running against external AD
testingClient.server().run(session -> {
LDAPTestContext ctx = LDAPTestContext.init(session);
// Remove all users from model
UserStoragePrivateUtil.userLocalStorage(session)
.searchForUserStream(ctx.getRealm(), Collections.emptyMap())
.collect(Collectors.toList())
.forEach(user -> UserStoragePrivateUtil.userLocalStorage(session).removeUser(ctx.getRealm(), user));
});
// Revert config changes // Revert config changes
ComponentRepresentation ldapRep = testRealm().components().component(ldapModelId).toRepresentation(); ComponentRepresentation ldapRep = testRealm().components().component(ldapModelId).toRepresentation();
ldapRep.getConfig().putSingle(LDAPConstants.UUID_LDAP_ATTRIBUTE, origUuidAttrName); ldapRep.getConfig().putSingle(LDAPConstants.UUID_LDAP_ATTRIBUTE, origUuidAttrName);