/* * JBoss, Home of Professional Open Source. * Copyright 2012, 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.ejb.security.asynchronous; import java.io.File; import java.util.concurrent.Callable; import java.util.concurrent.ExecutionException; import java.util.concurrent.Future; import javax.ejb.EJBAccessException; import javax.naming.InitialContext; import javax.naming.NamingException; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.junit.Arquillian; import org.jboss.arquillian.test.api.ArquillianResource; import org.jboss.as.arquillian.api.ServerSetup; import org.jboss.as.arquillian.api.ServerSetupTask; import org.jboss.as.test.categories.CommonCriteria; import org.jboss.as.test.integration.ejb.security.AnnotationAuthorizationTestCase; import org.jboss.as.test.integration.ejb.security.EjbSecurityDomainSetup; import org.jboss.as.test.integration.security.common.AbstractSecurityDomainSetup; import org.jboss.as.test.shared.integration.ejb.security.Util; import org.jboss.as.test.shared.util.AssumeTestGroupUtil; import org.jboss.logging.Logger; import org.jboss.shrinkwrap.api.Archive; import org.jboss.shrinkwrap.api.ShrinkWrap; import org.jboss.shrinkwrap.api.asset.StringAsset; import org.jboss.shrinkwrap.api.spec.JavaArchive; import org.junit.Assert; import org.junit.BeforeClass; import org.junit.Test; import org.junit.experimental.categories.Category; import org.junit.runner.RunWith; /** * Migration test from EJB Testsuite (asynchronous) to AS7 [JIRA JBQA-5483]. * * Test if asynchronous calls and security check works. */ @RunWith(Arquillian.class) @ServerSetup({AsynchronousSecurityTestCase.AsynchronousSecurityTestCaseSetup.class}) @Category(CommonCriteria.class) public class AsynchronousSecurityTestCase { private static final Logger log = Logger.getLogger(AsynchronousSecurityTestCase.class); private static final String ARCHIVE_NAME = "AsyncSecurityTestCase"; static class AsynchronousSecurityTestCaseSetup extends EjbSecurityDomainSetup { @Override protected String getSecurityDomainName() { return "async-security-test"; } @Override protected String getUsersFile() { return new File(AsynchronousSecurityTestCase.class.getResource("users.properties").getFile()).getAbsolutePath(); } @Override protected String getGroupsFile() { return new File(AsynchronousSecurityTestCase.class.getResource("roles.properties").getFile()).getAbsolutePath(); } } @BeforeClass public static void beforeClass() { AssumeTestGroupUtil.assumeElytronProfileTestsEnabled(); } @ArquillianResource private InitialContext iniCtx; @Deployment public static Archive<?> deploy() { final Package currentPackage = AsynchronousSecurityTestCase.class.getPackage(); JavaArchive jar = ShrinkWrap.create(JavaArchive.class, ARCHIVE_NAME + ".jar") .addPackage(currentPackage) .addClass(AnnotationAuthorizationTestCase.class) .addClasses(EjbSecurityDomainSetup.class, AbstractSecurityDomainSetup.class, ServerSetupTask.class, Util.class) .addAsResource(currentPackage, "roles.properties", "roles.properties") .addAsResource(currentPackage, "users.properties", "users.properties") .addAsManifestResource(new StringAsset("Dependencies: org.jboss.as.controller-client,org.jboss.dmr\n"),"MANIFEST.MF") .addAsManifestResource(currentPackage, "permissions.xml", "permissions.xml") .addPackage(CommonCriteria.class.getPackage()); return jar; } protected <Q, T> Q lookupInterface(Class<T> bean, Class<Q> intf) throws NamingException { log.trace("initctx: " + iniCtx); return intf.cast(iniCtx.lookup("java:global/" + ARCHIVE_NAME + "/" + bean.getSimpleName() + "!" + intf.getName())); } @Test public void testAsynchSecurityMethod() throws Exception { SecuredStatelessRemote securedBean = lookupInterface(SecuredStatelessBean.class, SecuredStatelessRemote.class); boolean result = false; // Test 1 SecuredStatelessBean.reset(); Callable<Boolean> callable = () -> { Future<Boolean> future = securedBean.method(); SecuredStatelessBean.startLatch.countDown(); return future.get(); }; result = Util.switchIdentity("somebody", "password", callable); Assert.assertTrue(result); // Test 2 SecuredStatelessBean.reset(); result = false; callable = () -> { Future<Boolean> future = securedBean.method(); SecuredStatelessBean.startLatch.countDown(); return future.get(); }; try { result = Util.switchIdentity("rolefail", "password", callable); } catch (ExecutionException ee) { if(!(ee.getCause() instanceof EJBAccessException)) { Assert.fail("Exception cause was not EJBAccessException and was " + ee); } } catch (EJBAccessException ejbe) { // it's ok too } Assert.assertFalse(result); // Test 3 SecuredStatelessBean.reset(); result = false; callable = () -> { Future<Boolean> future = securedBean.method(); SecuredStatelessBean.startLatch.countDown(); return future.get(); }; try { result = Util.switchIdentity("nosuchuser", "password", callable); } catch (ExecutionException ee) { if(!(ee.getCause() instanceof EJBAccessException) && ! (ee.getCause() instanceof SecurityException)) { Assert.fail("Exception cause was not EJBAccessException or SecurityException and was " + ee); } } catch (EJBAccessException ejbe) { // it's ok too } Assert.assertFalse(result); } @Test public void testAsyncSecurityPermition() throws Exception { SecuredStatelessBean.reset(); SecuredStatelessRemote securedBean = lookupInterface(SecuredStatelessBean.class, SecuredStatelessRemote.class); boolean result = false; final Callable<Boolean> callable = () -> { // Test 1 Future<Boolean> future = securedBean.uncheckedMethod(); SecuredStatelessBean.startLatch.countDown(); boolean test1Result = future.get(); Assert.assertTrue(test1Result); // Test 2 future = null; SecuredStatelessBean.reset(); future = securedBean.excludedMethod(); SecuredStatelessBean.startLatch.countDown(); return future.get(); }; try { result = Util.switchIdentity("rolefail", "password", callable); } catch (ExecutionException ee) { if(!(ee.getCause() instanceof EJBAccessException)) { Assert.fail("Exception cause was not EJBAccessException and was " + ee); } } catch (EJBAccessException ejbe) { // it's ok too } Assert.assertFalse(result); } }