/* * 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.jboss.as.test.integration.domain.rbac; import java.util.Collections; import java.util.HashMap; import java.util.Map; import java.util.Set; import org.jboss.as.controller.client.helpers.domain.DomainClient; import org.jboss.as.test.integration.domain.suites.FullRbacProviderTestSuite; import org.jboss.as.test.integration.management.rbac.UserRolesMappingServerSetupTask; import org.jboss.dmr.ModelNode; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Ignore; /** * Tests of host scoped roles using the "rbac" access control provider. * * @author Brian Stansberry (c) 2013 Red Hat Inc. */ @Ignore("[WFCORE-1958] Clean up testsuite Elytron registration.") public class RBACProviderHostScopedRolesTestCase extends AbstractHostScopedRolesTestCase { @BeforeClass public static void setupDomain() throws Exception { testSupport = FullRbacProviderTestSuite.createSupport(RBACProviderHostScopedRolesTestCase.class.getSimpleName()); masterClientConfig = testSupport.getDomainMasterConfiguration(); DomainClient domainClient = testSupport.getDomainMasterLifecycleUtil().getDomainClient(); setupRoles(domainClient); HostRolesMappingSetup.INSTANCE.setup(domainClient); deployDeployment1(domainClient); } @AfterClass public static void tearDownDomain() throws Exception { DomainClient domainClient = testSupport.getDomainMasterLifecycleUtil().getDomainClient(); try { HostRolesMappingSetup.INSTANCE.tearDown(domainClient); } finally { try { tearDownRoles(domainClient); } finally { try { removeDeployment1(domainClient); } finally { FullRbacProviderTestSuite.stopSupport(); testSupport = null; } } } } @Override protected boolean isAllowLocalAuth() { return false; } @Override protected void configureRoles(ModelNode op, String[] roles) { // no-op. Role mapping is done based on the client's authenticated Subject } static class HostRolesMappingSetup extends UserRolesMappingServerSetupTask { private static final Map<String, Set<String>> STANDARD_USERS; static { Map<String, Set<String>> rolesToUsers = new HashMap<String, Set<String>>(); rolesToUsers.put(MONITOR_USER, Collections.singleton(MONITOR_USER)); rolesToUsers.put(OPERATOR_USER, Collections.singleton(OPERATOR_USER)); rolesToUsers.put(MAINTAINER_USER, Collections.singleton(MAINTAINER_USER)); rolesToUsers.put(DEPLOYER_USER, Collections.singleton(DEPLOYER_USER)); rolesToUsers.put(ADMINISTRATOR_USER, Collections.singleton(ADMINISTRATOR_USER)); rolesToUsers.put(AUDITOR_USER, Collections.singleton(AUDITOR_USER)); rolesToUsers.put(SUPERUSER_USER, Collections.singleton(SUPERUSER_USER)); rolesToUsers.put(SLAVE_OPERATOR_USER, Collections.singleton(SLAVE_OPERATOR_USER)); rolesToUsers.put(SLAVE_MAINTAINER_USER, Collections.singleton(SLAVE_MAINTAINER_USER)); rolesToUsers.put(SLAVE_DEPLOYER_USER, Collections.singleton(SLAVE_DEPLOYER_USER)); rolesToUsers.put(SLAVE_ADMINISTRATOR_USER, Collections.singleton(SLAVE_ADMINISTRATOR_USER)); rolesToUsers.put(SLAVE_AUDITOR_USER, Collections.singleton(SLAVE_AUDITOR_USER)); rolesToUsers.put(SLAVE_SUPERUSER_USER, Collections.singleton(SLAVE_SUPERUSER_USER)); STANDARD_USERS = rolesToUsers; } static final HostRolesMappingSetup INSTANCE = new HostRolesMappingSetup(); protected HostRolesMappingSetup() { super(STANDARD_USERS); } } }