forked from keycloak/keycloak
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removing OpenShift integration and moving to separate extension
closes keycloak#20496 Co-authored-by: mposolda <mposolda@gmail.com>
- Loading branch information
Showing
51 changed files
with
293 additions
and
3,590 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
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
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
206 changes: 206 additions & 0 deletions
206
misc/keycloak-test-helper/src/main/java/org/keycloak/test/builders/UserBuilder.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,206 @@ | ||
/* | ||
* Copyright 2023 Red Hat, Inc. and/or its affiliates | ||
* and other contributors as indicated by the @author tags. | ||
* | ||
* 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. | ||
* | ||
*/ | ||
|
||
package org.keycloak.test.builders; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Arrays; | ||
import java.util.HashMap; | ||
import java.util.LinkedList; | ||
|
||
import org.keycloak.models.credential.OTPCredentialModel; | ||
import org.keycloak.models.utils.HmacOTP; | ||
import org.keycloak.models.utils.ModelToRepresentation; | ||
import org.keycloak.representations.idm.CredentialRepresentation; | ||
import org.keycloak.representations.idm.FederatedIdentityRepresentation; | ||
import org.keycloak.representations.idm.UserRepresentation; | ||
|
||
/** | ||
* @author <a href="mailto:sthorger@redhat.com">Stian Thorgersen</a> | ||
*/ | ||
public class UserBuilder { | ||
|
||
private final UserRepresentation rep; | ||
|
||
public static UserBuilder create() { | ||
UserRepresentation rep = new UserRepresentation(); | ||
rep.setEnabled(Boolean.TRUE); | ||
return new UserBuilder(rep); | ||
} | ||
|
||
public static UserBuilder edit(UserRepresentation rep) { | ||
return new UserBuilder(rep); | ||
} | ||
|
||
private UserBuilder(UserRepresentation rep) { | ||
this.rep = rep; | ||
} | ||
|
||
public UserBuilder id(String id) { | ||
rep.setId(id); | ||
return this; | ||
} | ||
|
||
public UserBuilder username(String username) { | ||
rep.setUsername(username); | ||
return this; | ||
} | ||
|
||
public UserBuilder firstName(String firstName) { | ||
rep.setFirstName(firstName); | ||
return this; | ||
} | ||
|
||
public UserBuilder lastName(String lastName) { | ||
rep.setLastName(lastName); | ||
return this; | ||
} | ||
|
||
/** | ||
* This method adds additional passwords to the user. | ||
*/ | ||
public UserBuilder addPassword(String password) { | ||
if (rep.getCredentials() == null) { | ||
rep.setCredentials(new LinkedList<>()); | ||
} | ||
|
||
CredentialRepresentation credential = new CredentialRepresentation(); | ||
credential.setType(CredentialRepresentation.PASSWORD); | ||
credential.setValue(password); | ||
|
||
rep.getCredentials().add(credential); | ||
return this; | ||
} | ||
|
||
public UserBuilder addAttribute(String name, String... values) { | ||
if (rep.getAttributes() == null) { | ||
rep.setAttributes(new HashMap<>()); | ||
} | ||
|
||
rep.getAttributes().put(name, Arrays.asList(values)); | ||
return this; | ||
} | ||
|
||
/** | ||
* This method makes sure that there is one single password for the user. | ||
*/ | ||
public UserBuilder password(String password) { | ||
rep.setCredentials(null); | ||
return addPassword(password); | ||
} | ||
|
||
public UserBuilder email(String email) { | ||
rep.setEmail(email); | ||
return this; | ||
} | ||
|
||
public UserBuilder emailVerified(boolean emailVerified) { | ||
rep.setEmailVerified(emailVerified); | ||
return this; | ||
} | ||
|
||
public UserBuilder enabled(boolean enabled) { | ||
rep.setEnabled(enabled); | ||
return this; | ||
} | ||
|
||
public UserBuilder addRoles(String... roles) { | ||
if (rep.getRealmRoles() == null) { | ||
rep.setRealmRoles(new ArrayList<>()); | ||
} | ||
rep.getRealmRoles().addAll(Arrays.asList(roles)); | ||
return this; | ||
} | ||
|
||
public UserBuilder role(String client, String role) { | ||
if (rep.getClientRoles() == null) { | ||
rep.setClientRoles(new HashMap<>()); | ||
} | ||
if (rep.getClientRoles().get(client) == null) { | ||
rep.getClientRoles().put(client, new LinkedList<>()); | ||
} | ||
rep.getClientRoles().get(client).add(role); | ||
return this; | ||
} | ||
|
||
public UserBuilder requiredAction(String requiredAction) { | ||
if (rep.getRequiredActions() == null) { | ||
rep.setRequiredActions(new LinkedList<>()); | ||
} | ||
rep.getRequiredActions().add(requiredAction); | ||
return this; | ||
} | ||
|
||
public UserBuilder serviceAccountId(String serviceAccountId) { | ||
rep.setServiceAccountClientId(serviceAccountId); | ||
return this; | ||
} | ||
|
||
public UserBuilder secret(CredentialRepresentation credential) { | ||
if (rep.getCredentials() == null) { | ||
rep.setCredentials(new LinkedList<>()); | ||
} | ||
|
||
rep.getCredentials().add(credential); | ||
rep.setTotp(true); | ||
return this; | ||
} | ||
|
||
public UserBuilder totpSecret(String totpSecret) { | ||
CredentialRepresentation credential = ModelToRepresentation.toRepresentation( | ||
OTPCredentialModel.createTOTP(totpSecret, 6, 30, HmacOTP.HMAC_SHA1)); | ||
return secret(credential); | ||
} | ||
|
||
public UserBuilder hotpSecret(String hotpSecret) { | ||
CredentialRepresentation credential = ModelToRepresentation.toRepresentation( | ||
OTPCredentialModel.createHOTP(hotpSecret, 6, 0, HmacOTP.HMAC_SHA1)); | ||
return secret(credential); | ||
} | ||
|
||
public UserBuilder otpEnabled() { | ||
rep.setTotp(Boolean.TRUE); | ||
return this; | ||
} | ||
|
||
public UserBuilder addGroups(String... group) { | ||
if (rep.getGroups() == null) { | ||
rep.setGroups(new ArrayList<>()); | ||
} | ||
rep.getGroups().addAll(Arrays.asList(group)); | ||
return this; | ||
} | ||
|
||
public UserBuilder federatedLink(String identityProvider, String federatedUserId) { | ||
if (rep.getFederatedIdentities() == null) { | ||
rep.setFederatedIdentities(new LinkedList<>()); | ||
} | ||
FederatedIdentityRepresentation federatedIdentity = new FederatedIdentityRepresentation(); | ||
federatedIdentity.setUserId(federatedUserId); | ||
federatedIdentity.setUserName(rep.getUsername()); | ||
federatedIdentity.setIdentityProvider(identityProvider); | ||
|
||
rep.getFederatedIdentities().add(federatedIdentity); | ||
return this; | ||
} | ||
|
||
public UserRepresentation build() { | ||
return rep; | ||
} | ||
} |
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
Oops, something went wrong.