Skip to content

Commit

Permalink
Merge pull request #17730 from xstefank/WFLY-19142
Browse files Browse the repository at this point in the history
WFLY-19142 Update the OIDC tests to use the 24.0.1 version of quay.io/keycloak/keycloak
  • Loading branch information
bstansberry committed Mar 19, 2024
2 parents 4654b13 + 6ae189a commit 19ced54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Expand Up @@ -174,6 +174,8 @@ private static ClientRepresentation createBearerOnlyClient(String clientId) {
private static UserRepresentation createUser(String username, String password, List<String> realmRoles) {
UserRepresentation user = new UserRepresentation();
user.setUsername(username);
user.setFirstName(username);
user.setLastName(username);
user.setEnabled(true);
user.setCredentials(new ArrayList<>());
user.setRealmRoles(realmRoles);
Expand Down
Expand Up @@ -17,7 +17,7 @@ public class KeycloakContainer extends GenericContainer<KeycloakContainer> {
public static final String ADMIN_USER = "admin";
public static final String ADMIN_PASSWORD = "admin";

private static final String KEYCLOAK_IMAGE = "quay.io/keycloak/keycloak:19.0.1";
private static final String KEYCLOAK_IMAGE = "quay.io/keycloak/keycloak:24.0.1";
private static final String SSO_IMAGE = System.getProperty("testsuite.integration.oidc.rhsso.image",KEYCLOAK_IMAGE);
private static final int PORT_HTTP = 8080;
private static final int PORT_HTTPS = 8443;
Expand Down

0 comments on commit 19ced54

Please sign in to comment.