-
Notifications
You must be signed in to change notification settings - Fork 7.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make @EnableFeature to handle the case with added provider of current…
…ly non-used SPI closes #36425 Signed-off-by: mposolda <[email protected]>
- Loading branch information
Showing
6 changed files
with
102 additions
and
5 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
65 changes: 65 additions & 0 deletions
65
...estsuite-providers/src/main/java/org/keycloak/testsuite/util/TestsuiteProviderLoader.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,65 @@ | ||
/* | ||
* Copyright 2025 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.testsuite.util; | ||
|
||
import java.lang.reflect.InvocationTargetException; | ||
import java.util.List; | ||
import java.util.stream.Collectors; | ||
|
||
import org.keycloak.provider.KeycloakDeploymentInfo; | ||
import org.keycloak.provider.ProviderFactory; | ||
import org.keycloak.provider.ProviderLoader; | ||
import org.keycloak.provider.Spi; | ||
|
||
/** | ||
* Loads additional SPIs from provided KeycloakDeploymentInfo | ||
* | ||
* @author <a href="mailto:[email protected]">Marek Posolda</a> | ||
*/ | ||
class TestsuiteProviderLoader implements ProviderLoader { | ||
|
||
private final KeycloakDeploymentInfo info; | ||
|
||
TestsuiteProviderLoader(KeycloakDeploymentInfo info) { | ||
this.info = info; | ||
} | ||
|
||
@Override | ||
public List<Spi> loadSpis() { | ||
return info.getProviders().keySet() | ||
.stream() | ||
.map(this::instantiateSpi) | ||
.collect(Collectors.toList()); | ||
} | ||
|
||
private Spi instantiateSpi(Class<? extends Spi> clazz) { | ||
try { | ||
return clazz.getDeclaredConstructor().newInstance(); | ||
} catch (NoSuchMethodException | IllegalAccessException | InstantiationException | InvocationTargetException e) { | ||
throw new RuntimeException(e); | ||
} | ||
} | ||
|
||
|
||
@Override | ||
public List<ProviderFactory> load(Spi spi) { | ||
return List.of(); | ||
} | ||
} |
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 |
---|---|---|
|
@@ -58,7 +58,7 @@ | |
/** | ||
* @author <a href="mailto:[email protected]">Marek Posolda</a> | ||
*/ | ||
@EnableFeature(value = CLIENT_TYPES) | ||
@EnableFeature(value = CLIENT_TYPES, skipRestart = true) | ||
public class ClientTypesTest extends AbstractTestRealmKeycloakTest { | ||
|
||
@Override | ||
|
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