/* * JBoss, Home of Professional Open Source. * Copyright 2013, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.wildfly.test.integration.security.picketlink.idm; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.junit.Arquillian; import org.jboss.as.arquillian.api.ServerSetup; import org.jboss.as.controller.PathAddress; import org.jboss.as.controller.operations.common.Util; import org.jboss.dmr.ModelNode; import org.jboss.shrinkwrap.api.ShrinkWrap; import org.jboss.shrinkwrap.api.asset.EmptyAsset; import org.jboss.shrinkwrap.api.asset.StringAsset; import org.jboss.shrinkwrap.api.spec.WebArchive; import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.picketlink.idm.IdentityManager; import org.picketlink.idm.PartitionManager; import org.picketlink.idm.credential.Credentials; import org.picketlink.idm.credential.Password; import org.picketlink.idm.credential.UsernamePasswordCredentials; import org.picketlink.idm.model.IdentityType; import org.picketlink.idm.model.Relationship; import org.picketlink.idm.model.basic.BasicModel; import org.picketlink.idm.model.basic.Realm; import org.picketlink.idm.model.basic.Role; import org.picketlink.idm.model.basic.User; import org.wildfly.extension.picketlink.common.model.ModelElement; import org.wildfly.extension.picketlink.idm.model.AttributedTypeEnum; import org.wildfly.test.integration.security.picketlink.idm.util.AbstractIdentityManagementServerSetupTask; import org.wildfly.test.integration.security.picketlink.idm.util.LdapMapping; import org.wildfly.test.integration.security.picketlink.idm.util.LdapServerSetupTask; import javax.annotation.Resource; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.OP_ADDR; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.wildfly.extension.picketlink.common.model.ModelElement.COMMON_CLASS_NAME; import static org.wildfly.extension.picketlink.common.model.ModelElement.COMMON_CODE; import static org.wildfly.extension.picketlink.common.model.ModelElement.COMMON_SUPPORTS_ALL; import static org.wildfly.extension.picketlink.common.model.ModelElement.IDENTITY_STORE_SUPPORT_ATTRIBUTE; import static org.wildfly.extension.picketlink.common.model.ModelElement.IDENTITY_STORE_SUPPORT_CREDENTIAL; import static org.wildfly.extension.picketlink.common.model.ModelElement.JPA_STORE; import static org.wildfly.extension.picketlink.common.model.ModelElement.JPA_STORE_DATASOURCE; import static org.wildfly.extension.picketlink.common.model.ModelElement.LDAP_STORE; import static org.wildfly.extension.picketlink.common.model.ModelElement.SUPPORTED_TYPE; /** * @author Pedro Igor */ @RunWith(Arquillian.class) @ServerSetup({LdapServerSetupTask.class, MultipleIdentityStoreConfigurationTestCase.IdentityManagementServerSetupTask.class }) @Ignore public class MultipleIdentityStoreConfigurationTestCase { static final String PARTITION_MANAGER_JNDI_NAME = "picketlink/MultipleStoreBasedPartitionManager"; @Deployment public static WebArchive createDeployment() { return ShrinkWrap .create(WebArchive.class, "test.war") .addAsWebInfResource(EmptyAsset.INSTANCE, "beans.xml") .addAsManifestResource(new StringAsset("Dependencies: org.picketlink.idm.api meta-inf,org.jboss.dmr meta-inf,org.jboss.as.controller\n"), "MANIFEST.MF") .addClass(MultipleIdentityStoreConfigurationTestCase.class) .addClass(LdapServerSetupTask.class) .addClass(AbstractIdentityManagementServerSetupTask.class); } @Resource(mappedName = PARTITION_MANAGER_JNDI_NAME) private PartitionManager partitionManager; @Test public void testConfiguration() throws Exception { Realm defaultRealm = this.partitionManager.getPartition(Realm.class, Realm.DEFAULT_REALM); if (defaultRealm == null) { defaultRealm = new Realm(Realm.DEFAULT_REALM); this.partitionManager.add(defaultRealm); } IdentityManager identityManager = this.partitionManager.createIdentityManager(); User user = new User("mary"); identityManager.add(user); assertNotNull(BasicModel.getUser(identityManager, user.getLoginName())); Password password = new Password("abcd1234"); identityManager.updateCredential(user, password); UsernamePasswordCredentials credentials = new UsernamePasswordCredentials(user.getLoginName(), password); identityManager.validateCredentials(credentials); assertEquals(Credentials.Status.VALID, credentials.getStatus()); Role role = new Role("ruler"); identityManager.add(role); assertNotNull(BasicModel.getRole(identityManager, role.getName())); } static class IdentityManagementServerSetupTask extends AbstractIdentityManagementServerSetupTask { IdentityManagementServerSetupTask() { super("multiple.store.idm", PARTITION_MANAGER_JNDI_NAME); } @Override protected void doCreateIdentityManagement(ModelNode identityManagementAddOperation, ModelNode operationSteps) { ModelNode operationAddIdentityConfiguration = Util.createAddOperation(createIdentityConfigurationPathAddress("multiple.store")); operationSteps.add(operationAddIdentityConfiguration); createJpaStoreConfiguration(operationSteps, operationAddIdentityConfiguration); createLdapStoreConfiguration(operationSteps, operationAddIdentityConfiguration); } private void createJpaStoreConfiguration(ModelNode operationSteps, ModelNode operationAddIdentityConfiguration) { ModelNode operationAddIdentityStore = createJpaStoreAddOperation(operationAddIdentityConfiguration); operationSteps.add(operationAddIdentityStore); createJpaSupportedTypesAddOperation(operationSteps, operationAddIdentityStore); } private ModelNode createJpaStoreAddOperation(ModelNode operationAddIdentityConfiguration) { PathAddress pathAddress = PathAddress.pathAddress(operationAddIdentityConfiguration.get(OP_ADDR)).append(JPA_STORE.getName(), JPA_STORE.getName()); ModelNode operationAddIdentityStore = Util.createAddOperation(pathAddress); operationAddIdentityStore.get(JPA_STORE_DATASOURCE.getName()).set("jboss/datasources/ExampleDS"); operationAddIdentityStore.get(IDENTITY_STORE_SUPPORT_ATTRIBUTE.getName()).set(false); operationAddIdentityStore.get(IDENTITY_STORE_SUPPORT_CREDENTIAL.getName()).set(false); return operationAddIdentityStore; } private void createLdapStoreConfiguration(ModelNode operationSteps, ModelNode operationAddIdentityConfiguration) { ModelNode operationAddIdentityStore = createLdapStoreAddOperation(operationAddIdentityConfiguration); operationSteps.add(operationAddIdentityStore); createLdapSupportedTypesAddOperation(operationSteps, operationAddIdentityStore); LdapMapping agentMapping = new LdapMapping(AttributedTypeEnum.AGENT.getAlias(), "ou=Agent,dc=jboss,dc=org", "account"); agentMapping.addAttribute("loginName", "uid", true, false); agentMapping.addAttribute("createdDate", "createTimeStamp", false, true); operationSteps.add(agentMapping.createAddOperation(operationAddIdentityStore)); LdapMapping userMapping = new LdapMapping(AttributedTypeEnum.USER.getAlias(), "ou=People,dc=jboss,dc=org", "inetOrgPerson, organizationalPerson"); userMapping.addAttribute("loginName", "uid", true, false); userMapping.addAttribute("firstName", "cn", false, false); userMapping.addAttribute("lastName", "sn", false, false); userMapping.addAttribute("email", "mail", false, false); userMapping.addAttribute("createdDate", "createTimeStamp", false, true); operationSteps.add(userMapping.createAddOperation(operationAddIdentityStore)); LdapMapping roleMapping = new LdapMapping(AttributedTypeEnum.ROLE.getAlias(), "ou=Roles,dc=jboss,dc=org", "groupOfNames"); roleMapping.addAttribute("name", "cn", true, false); roleMapping.addAttribute("createdDate", "createTimeStamp", false, true); operationSteps.add(roleMapping.createAddOperation(operationAddIdentityStore)); LdapMapping groupMapping = new LdapMapping(AttributedTypeEnum.GROUP.getAlias(), "ou=Groups,dc=jboss,dc=org", "groupOfNames"); groupMapping.addAttribute("name", "cn", true, false); groupMapping.addAttribute("createdDate", "createTimeStamp", false, true); operationSteps.add(groupMapping.createAddOperation(operationAddIdentityStore)); } private void createLdapSupportedTypesAddOperation(ModelNode operationSteps, ModelNode operationAddIdentityStore) { ModelNode operationAddSupportedTypes = createSupportedAllTypesAddOperation(operationAddIdentityStore); operationAddSupportedTypes.get(COMMON_SUPPORTS_ALL.getName()).set(false); operationSteps.add(operationAddSupportedTypes); ModelNode identityTypeAddOperation = Util.createAddOperation(PathAddress.pathAddress(operationAddSupportedTypes.get(OP_ADDR)) .append(SUPPORTED_TYPE.getName(), IdentityType.class.getSimpleName())); identityTypeAddOperation.get(COMMON_CODE.getName()).set(IdentityType.class.getSimpleName()); operationSteps.add(identityTypeAddOperation); } private void createJpaSupportedTypesAddOperation(ModelNode operationSteps, ModelNode operationAddIdentityStore) { ModelNode operationAddSupportedTypes = createSupportedAllTypesAddOperation(operationAddIdentityStore); operationAddSupportedTypes.get(COMMON_SUPPORTS_ALL.getName()).set(false); operationSteps.add(operationAddSupportedTypes); ModelNode relationshipAddOperation = Util.createAddOperation(PathAddress.pathAddress(operationAddSupportedTypes.get(OP_ADDR)) .append(SUPPORTED_TYPE.getName(), Relationship.class.getName())); relationshipAddOperation.get(COMMON_CLASS_NAME.getName()).set(Relationship.class.getName()); operationSteps.add(relationshipAddOperation); } private ModelNode createLdapStoreAddOperation(ModelNode identityConfigurationModelNode) { PathAddress pathAddress = PathAddress.pathAddress(identityConfigurationModelNode.get(OP_ADDR)) .append(LDAP_STORE.getName(), LDAP_STORE.getName()); ModelNode identityStore = Util.createAddOperation(pathAddress); identityStore.get(ModelElement.COMMON_URL.getName()).set("ldap://localhost:10389"); identityStore.get(ModelElement.LDAP_STORE_BIND_DN.getName()).set("uid=admin,ou=system"); identityStore.get(ModelElement.LDAP_STORE_BIND_CREDENTIAL.getName()).set("secret"); identityStore.get(ModelElement.LDAP_STORE_BASE_DN_SUFFIX.getName()).set("dc=jboss,dc=org"); identityStore.get(IDENTITY_STORE_SUPPORT_ATTRIBUTE.getName()).set(false); identityStore.get(IDENTITY_STORE_SUPPORT_CREDENTIAL.getName()).set(true); return identityStore; } } }