KEYCLOAK-7741 Fix broken test modules
This commit is contained in:
parent
dcadc61220
commit
3355399b4e
5 changed files with 10 additions and 10 deletions
|
@ -136,11 +136,6 @@
|
|||
<groupId>org.wildfly.arquillian</groupId>
|
||||
<artifactId>wildfly-arquillian-container-managed</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.osgi</groupId>
|
||||
<artifactId>org.osgi.enterprise</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -47,7 +47,7 @@ public class RoleDetailsForm extends Form {
|
|||
RoleRepresentation role = new RoleRepresentation();
|
||||
role.setName(getName());
|
||||
role.setDescription(getDescription());
|
||||
role.setScopeParamRequired(isScopeParamRequired());
|
||||
//role.setScopeParamRequired(isScopeParamRequired()); // TODO Do we need this param?
|
||||
role.setComposite(isComposite());
|
||||
log.info(role.getName() + ": " + role.getDescription() + ", comp: " + role.isComposite());
|
||||
return role;
|
||||
|
|
|
@ -280,8 +280,8 @@ public class ClientMappersOIDCTest extends AbstractClientTest {
|
|||
//prepare data
|
||||
ProtocolMapperRepresentation mapper = new ProtocolMapperRepresentation();
|
||||
mapper.setName("mapper name");
|
||||
mapper.setConsentRequired(true);
|
||||
mapper.setConsentText("consent text");
|
||||
//mapper.setConsentRequired(true);
|
||||
//mapper.setConsentText("consent text");
|
||||
mapper.setProtocol("openid-connect");
|
||||
mapper.setProtocolMapper("oidc-usersessionmodel-note-mapper");
|
||||
|
||||
|
|
|
@ -20,7 +20,6 @@ package org.keycloak.testsuite.adapter.nodejs;
|
|||
import org.jboss.arquillian.graphene.page.Page;
|
||||
import org.junit.Before;
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.keycloak.models.utils.SessionTimeoutHelper;
|
||||
import org.keycloak.representations.idm.RealmRepresentation;
|
||||
|
@ -34,10 +33,10 @@ import static org.junit.Assert.assertEquals;
|
|||
import static org.junit.Assert.assertFalse;
|
||||
import static org.junit.Assert.assertNotEquals;
|
||||
import static org.junit.Assert.assertTrue;
|
||||
import static org.keycloak.testsuite.util.IOUtil.loadRealm;
|
||||
import static org.keycloak.testsuite.util.URLAssert.assertCurrentUrlEquals;
|
||||
import static org.keycloak.testsuite.util.URLAssert.assertCurrentUrlStartsWithLoginUrlOf;
|
||||
import static org.keycloak.testsuite.util.WaitUtils.pause;
|
||||
import static org.keycloak.testsuite.utils.io.IOUtil.loadRealm;
|
||||
|
||||
/**
|
||||
* This test class expects following:
|
||||
|
|
|
@ -1686,6 +1686,12 @@
|
|||
<type>zip</type>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.osgi</groupId>
|
||||
<artifactId>org.osgi.enterprise</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
<dependencyManagement>
|
||||
|
|
Loading…
Reference in a new issue