Ignoring test methods from parent classes

Closes #15687
This commit is contained in:
Pedro Igor 2023-02-01 12:07:05 -03:00
parent 52f9b0df59
commit e3c41ec3a0
2 changed files with 66 additions and 0 deletions

View file

@ -65,4 +65,14 @@ public class TestKeycloakOidcIdentityProviderFactory extends KeycloakOIDCIdentit
}
};
}
@Override
public OIDCIdentityProviderConfig createConfig() {
return new OIDCIdentityProviderConfig(super.createConfig()) {
@Override
public String getDisplayIconClasses() {
return "my-custom-idp-icon";
}
};
}
}

View file

@ -0,0 +1,56 @@
/*
* JBoss, Home of Professional Open Source
* Copyright 2023 Red Hat Inc. and/or its affiliates and other contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* 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.broker;
import static org.keycloak.testsuite.broker.BrokerTestConstants.IDP_OIDC_ALIAS;
import static org.keycloak.testsuite.broker.BrokerTestTools.createIdentityProvider;
import static org.keycloak.testsuite.broker.BrokerTestTools.getConsumerRoot;
import org.junit.Assert;
import org.junit.Test;
import org.keycloak.models.IdentityProviderSyncMode;
import org.keycloak.representations.idm.IdentityProviderRepresentation;
import org.keycloak.testsuite.broker.oidc.TestKeycloakOidcIdentityProviderFactory;
/**
* Test methods for testing a custom OIDC broker
*/
public class KcCustomOidcBrokerTest extends AbstractInitializedBaseBrokerTest {
@Override
protected BrokerConfiguration getBrokerConfiguration() {
return new KcOidcCustomBrokerConfiguration();
}
private static class KcOidcCustomBrokerConfiguration extends KcOidcBrokerConfiguration {
@Override
public IdentityProviderRepresentation setUpIdentityProvider(IdentityProviderSyncMode syncMode) {
IdentityProviderRepresentation idp = createIdentityProvider(IDP_OIDC_ALIAS, TestKeycloakOidcIdentityProviderFactory.ID);
applyDefaultConfiguration(idp.getConfig(), syncMode);
return idp;
}
}
@Test
public void testCustomDisplayIcon() {
driver.navigate().to(getAccountUrl(getConsumerRoot(), bc.consumerRealmName()));
Assert.assertTrue(driver.getPageSource().contains("my-custom-idp-icon"));
}
}