KEYCLOAK-19476: Unignore LoginTest.loginWithLongRedirectUri by adding property to authserver-quarkus

This commit is contained in:
Dominik 2021-10-05 16:42:09 +02:00 committed by Pedro Igor
parent 24f2704bca
commit cd7a22c174
2 changed files with 5 additions and 2 deletions

View file

@ -34,4 +34,7 @@ spi.theme.folder.dir=${kc.home.dir:}/themes
spi.password-policy.password-blacklist.blacklists-path=${kc.home.dir:}/dependency/password-blacklists
# http client connection reuse settings
spi.connections-http-client.default.reuse-connections=false
spi.connections-http-client.default.reuse-connections=false
# set max-length of event representation stored so the db can handle it
spi.events-store.jpa.max-detail-length=2000

View file

@ -220,7 +220,7 @@ public class LoginTest extends AbstractTestRealmKeycloakTest {
client.close();
}
@AuthServerContainerExclude(value = {AuthServerContainerExclude.AuthServer.QUARKUS, AuthServerContainerExclude.AuthServer.REMOTE}, details = "Unstable for Quarkus, review later. Remote testsuite: max-detail-length is set to zero in standalone.xml, proposed fix - KEYCLOAK-17659")
@AuthServerContainerExclude(value = {AuthServerContainerExclude.AuthServer.REMOTE}, details = "Remote testsuite: max-detail-length is set to zero in standalone.xml, proposed fix - KEYCLOAK-17659")
@Test
public void loginWithLongRedirectUri() throws Exception {
try (AutoCloseable c = new RealmAttributeUpdater(adminClient.realm("test"))