/* * 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.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.MODULE_OPTIONS; import static org.jboss.as.security.Constants.SECURITY_DOMAIN; 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.management.util.CLIWrapper; import org.jboss.as.test.integration.management.util.ServerReload; 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.PropertyFileBasedDomain; import org.wildfly.test.security.common.elytron.UndertowDomainMapper; import org.wildfly.test.security.common.elytron.UserWithRoles; /** * @author Stuart Douglas */ public class WebTestsSecurityDomainSetup extends AbstractSecurityDomainSetup { private static final Logger log = Logger.getLogger(WebTestsSecurityDomainSetup.class); public 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"; private CLIWrapper cli; private PropertyFileBasedDomain ps; private UndertowDomainMapper domainMapper; @Override public void setup(final ManagementClient managementClient, final String containerId) throws Exception { if (WebSecurityCommon.isElytron()) { cli = new CLIWrapper(true); setElytronBased(); } else { 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(); compositeOp.get(OPERATION_HEADERS).get(ALLOW_RESOURCE_SERVICE_RESTART).set(true); ModelNode steps = compositeOp.get(STEPS); PathAddress address = PathAddress.pathAddress() .append(SUBSYSTEM, "security") .append(SECURITY_DOMAIN, getSecurityDomainName()); steps.add(Util.createAddOperation(address)); // Prepare properties files with users, passwords and roles address = address.append(Constants.AUTHENTICATION, Constants.CLASSIC); steps.add(Util.createAddOperation(address)); 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); applyUpdates(managementClient.getControllerClient(), Arrays.asList(compositeOp)); log.debug("end of the legacy security-realm based domain creation"); } protected void setElytronBased() throws Exception { log.debug("start of the elytron based domain creation"); // Prepare properties files with users, passwords and roles ps = PropertyFileBasedDomain.builder() .withUser(GOOD_USER_NAME, GOOD_USER_PASSWORD, GOOD_USER_ROLE) .withUser(SUPER_USER_NAME, SUPER_USER_PASSWORD, SUPER_USER_ROLE) .withUser(BAD_GUY_NAME, BAD_GUY_PASSWORD, BAD_GUY_ROLE) .withName(WEB_SECURITY_DOMAIN).build(); ps.create(cli); domainMapper = UndertowDomainMapper.builder().withName(WEB_SECURITY_DOMAIN).build(); domainMapper.create(cli); log.debug("end of the elytron based domain creation"); } @Override public void tearDown(ManagementClient managementClient, String containerId) { if (WebSecurityCommon.isElytron()) { try { domainMapper.remove(cli); ps.remove(cli); cli.close(); ServerReload.executeReloadAndWaitForCompletion(managementClient.getControllerClient()); } catch (Exception e) { e.printStackTrace(); } } else { super.tearDown(managementClient, containerId); } } }