/* * JBoss, Home of Professional Open Source. * Copyright (c) 2011, 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.jboss.as.test.integration.web.security; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.ALLOW_RESOURCE_SERVICE_RESTART; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.COMPOSITE; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.OP; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.OPERATION_HEADERS; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.OP_ADDR; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.STEPS; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.SUBSYSTEM; import static org.jboss.as.security.Constants.CLASSIC; import static org.jboss.as.security.Constants.CODE; import static org.jboss.as.security.Constants.FLAG; import static org.jboss.as.security.Constants.LOGIN_MODULE; import static org.jboss.as.security.Constants.MAPPING; import static org.jboss.as.security.Constants.MAPPING_MODULE; import static org.jboss.as.security.Constants.MODULE_OPTIONS; import static org.jboss.as.security.Constants.SECURITY_DOMAIN; import static org.jboss.as.security.Constants.TYPE; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import org.jboss.as.arquillian.container.ManagementClient; import org.jboss.as.controller.PathAddress; import org.jboss.as.controller.operations.common.Util; import org.jboss.as.security.Constants; import org.jboss.as.test.integration.security.common.AbstractSecurityDomainSetup; import org.jboss.dmr.ModelNode; import org.jboss.logging.Logger; import org.wildfly.test.security.common.elytron.UserWithRoles; /** * @author Stuart Douglas */ public class WebSimpleRoleMappingSecurityDomainSetup extends AbstractSecurityDomainSetup { private static final Logger log = Logger.getLogger(WebSimpleRoleMappingSecurityDomainSetup.class); protected static final String WEB_SECURITY_DOMAIN = "web-tests"; private static final String GOOD_USER_NAME = "anil"; private static final String GOOD_USER_PASSWORD = "anil"; private static final String GOOD_USER_ROLE = "gooduser"; private static final String SUPER_USER_NAME = "marcus"; private static final String SUPER_USER_PASSWORD = "marcus"; private static final String SUPER_USER_ROLE = "superuser"; private static final String BAD_GUY_NAME = "peter"; private static final String BAD_GUY_PASSWORD = "peter"; private static final String BAD_GUY_ROLE = "badguy"; @Override public void setup(final ManagementClient managementClient, final String containerId) throws Exception { setLegacySecurityRealmBased(managementClient); } @Override protected String getSecurityDomainName() { return WEB_SECURITY_DOMAIN; } protected void setLegacySecurityRealmBased(final ManagementClient managementClient) throws Exception { log.debug("start of the legacy security-realm based domain creation"); final ModelNode compositeOp = new ModelNode(); compositeOp.get(OP).set(COMPOSITE); compositeOp.get(OP_ADDR).setEmptyList(); ModelNode steps = compositeOp.get(STEPS); PathAddress addressSD = PathAddress.pathAddress() .append(SUBSYSTEM, "security") .append(SECURITY_DOMAIN, getSecurityDomainName()); steps.add(Util.createAddOperation(addressSD)); PathAddress address = addressSD.append(Constants.AUTHENTICATION, Constants.CLASSIC); steps.add(Util.createAddOperation(address)); // Prepare properties files with users, passwords and roles List<UserWithRoles> userWithRoles = new ArrayList<UserWithRoles>(); userWithRoles.add(UserWithRoles.builder().withName(GOOD_USER_NAME).withPassword(GOOD_USER_PASSWORD).withRoles (GOOD_USER_ROLE).build()); userWithRoles.add(UserWithRoles.builder().withName(SUPER_USER_NAME).withPassword(SUPER_USER_PASSWORD) .withRoles(SUPER_USER_ROLE).build()); userWithRoles.add(UserWithRoles.builder().withName(BAD_GUY_NAME).withPassword(BAD_GUY_PASSWORD).withRoles (BAD_GUY_ROLE).build()); WebSecurityCommon.PropertyFiles propFiles = WebSecurityCommon.createPropertiesFiles(userWithRoles, WEB_SECURITY_DOMAIN); ModelNode loginModule = Util.createAddOperation(address.append(LOGIN_MODULE, "UsersRoles")); loginModule.get(CODE).set("UsersRoles"); loginModule.get(FLAG).set("required"); loginModule.get(MODULE_OPTIONS).get("usersProperties").set(propFiles.getUsers().getAbsolutePath()); loginModule.get(MODULE_OPTIONS).get("rolesProperties").set(propFiles.getRoles().getAbsolutePath()); steps.add(loginModule); address = addressSD.append(MAPPING, CLASSIC); steps.add(Util.createAddOperation(address)); ModelNode mappingModule = Util.createAddOperation(address.append(MAPPING_MODULE, "SimpleRoles")); mappingModule.get(CODE).set("SimpleRoles"); //see: https://docs.jboss.org/author/display/AS71/Security+subsystem+configuration mappingModule.get(TYPE).set("role"); ModelNode mappingOptions = mappingModule.get(MODULE_OPTIONS); mappingOptions.get(BAD_GUY_NAME).set(SUPER_USER_ROLE + "," + GOOD_USER_ROLE); mappingModule.get(OPERATION_HEADERS).get(ALLOW_RESOURCE_SERVICE_RESTART).set(true); steps.add(mappingModule); applyUpdates(managementClient.getControllerClient(), Arrays.asList(compositeOp)); log.debug("end of the legacy security-realm based domain creation"); } }