/* * JBoss, Home of Professional Open Source. * Copyright 2015, Red Hat Middleware LLC, 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.ws.authentication; import java.net.URL; import java.util.Map; import javax.xml.namespace.QName; import javax.xml.ws.BindingProvider; import javax.xml.ws.Service; import javax.xml.ws.WebServiceException; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.container.test.api.RunAsClient; import org.jboss.arquillian.junit.Arquillian; import org.jboss.arquillian.test.api.ArquillianResource; import org.jboss.as.arquillian.api.ServerSetup; import org.jboss.as.ejb3.logging.EjbLogger; import org.jboss.as.test.integration.ejb.security.EjbSecurityDomainSetup; import org.jboss.shrinkwrap.api.Archive; import org.jboss.shrinkwrap.api.ShrinkWrap; import org.jboss.shrinkwrap.api.spec.JavaArchive; import org.junit.runner.RunWith; import org.junit.Assert; import org.junit.Test; import static org.hamcrest.CoreMatchers.containsString; /** * Tests for authentication against EJB endpoint with no class level security annotation on the endpoint * https://issues.jboss.org/browse/WFLY-3988 * * @author Rostislav Svoboda */ @ServerSetup({EjbSecurityDomainSetup.class}) @RunWith(Arquillian.class) @RunAsClient public class EJBEndpointNoClassLevelSecurityAnnotationAuthenticationTestCase { @ArquillianResource URL baseUrl; public static final String deploymentWsdlURL = "/jaxws-authentication-no-cla-ejb3/EJB3NoCLSAAuthService?wsdl"; QName serviceName = new QName("http://jbossws.org/authentication", "EJB3NoCLSAAuthService"); @Deployment(testable = false) public static Archive<?> deployment() { JavaArchive jar = ShrinkWrap.create(JavaArchive.class, "jaxws-authentication-no-cla-ejb.jar") .addAsResource(EJBEndpointNoClassLevelSecurityAnnotationAuthenticationTestCase.class.getPackage(), "users.properties", "users.properties") .addAsResource(EJBEndpointNoClassLevelSecurityAnnotationAuthenticationTestCase.class.getPackage(), "roles.properties", "roles.properties") .addClasses(EJBEndpointIface.class, EJBNoCLSAEndpoint.class); return jar; } // ------------------------------------------------------------------------------ // // Tests for hello method // @Test public void accessHelloWithAuthenticatedUser() throws Exception { URL wsdlURL = new URL(baseUrl, deploymentWsdlURL); Service service = Service.create(wsdlURL, serviceName); EJBEndpointIface proxy = service.getPort(EJBEndpointIface.class); Map<String, Object> reqContext = ((BindingProvider) proxy).getRequestContext(); reqContext.put(BindingProvider.USERNAME_PROPERTY, "user1"); reqContext.put(BindingProvider.PASSWORD_PROPERTY, "password1"); try { proxy.hello("World"); Assert.fail("Test should fail, user shouldn't be allowed to invoke hello method"); } catch (WebServiceException e) { // failure is expected Assert.assertThat("Invocation on hello method should not be allowed", e.getCause().getMessage(), containsString("WFLYEJB0364")); } } // ------------------------------------------------------------------------------ // // Tests for helloForRole method // @Test public void accessHelloForRoleWithInvalidRole() throws Exception { URL wsdlURL = new URL(baseUrl, deploymentWsdlURL); Service service = Service.create(wsdlURL, serviceName); EJBEndpointIface proxy = service.getPort(EJBEndpointIface.class); Map<String, Object> reqContext = ((BindingProvider) proxy).getRequestContext(); reqContext.put(BindingProvider.USERNAME_PROPERTY, "user1"); reqContext.put(BindingProvider.PASSWORD_PROPERTY, "password1"); try { proxy.helloForRole("World"); Assert.fail("Test should fail, user shouldn't be allowed to invoke that method"); } catch (WebServiceException e) { // failure is expected Assert.assertEquals(getNotAllowedExceptionMessage("helloForRole"), e.getCause().getMessage()); } } @Test public void accessHelloForRoleWithValidRole() throws Exception { URL wsdlURL = new URL(baseUrl, deploymentWsdlURL); Service service = Service.create(wsdlURL, serviceName); EJBEndpointIface proxy = service.getPort(EJBEndpointIface.class); Map<String, Object> reqContext = ((BindingProvider) proxy).getRequestContext(); reqContext.put(BindingProvider.USERNAME_PROPERTY, "user2"); reqContext.put(BindingProvider.PASSWORD_PROPERTY, "password2"); final String result = proxy.helloForRole("World"); Assert.assertEquals("Hello World!", result); } // ------------------------------------------------------------------------------ // // Tests for helloForRoles method // @Test public void accessHelloForRolesWithValidRole1() throws Exception { URL wsdlURL = new URL(baseUrl, deploymentWsdlURL); Service service = Service.create(wsdlURL, serviceName); EJBEndpointIface proxy = service.getPort(EJBEndpointIface.class); Map<String, Object> reqContext = ((BindingProvider) proxy).getRequestContext(); reqContext.put(BindingProvider.USERNAME_PROPERTY, "user1"); reqContext.put(BindingProvider.PASSWORD_PROPERTY, "password1"); final String result = proxy.helloForRoles("World"); Assert.assertEquals("Hello World!", result); } @Test public void accessHelloForRolesWithValidRole2() throws Exception { URL wsdlURL = new URL(baseUrl, deploymentWsdlURL); Service service = Service.create(wsdlURL, serviceName); EJBEndpointIface proxy = service.getPort(EJBEndpointIface.class); Map<String, Object> reqContext = ((BindingProvider) proxy).getRequestContext(); reqContext.put(BindingProvider.USERNAME_PROPERTY, "user2"); reqContext.put(BindingProvider.PASSWORD_PROPERTY, "password2"); final String result = proxy.helloForRoles("World"); Assert.assertEquals("Hello World!", result); } @Test public void accessHelloForRolesWithInvalidRole() throws Exception { URL wsdlURL = new URL(baseUrl, deploymentWsdlURL); Service service = Service.create(wsdlURL, serviceName); EJBEndpointIface proxy = service.getPort(EJBEndpointIface.class); Map<String, Object> reqContext = ((BindingProvider) proxy).getRequestContext(); reqContext.put(BindingProvider.USERNAME_PROPERTY, "user3"); reqContext.put(BindingProvider.PASSWORD_PROPERTY, "password3"); try { proxy.helloForRoles("World"); Assert.fail("Test should fail, user shouldn't be allowed to invoke that method"); } catch (WebServiceException e) { // failure is expected Assert.assertEquals(getNotAllowedExceptionMessage("helloForRoles"), e.getCause().getMessage()); } } // ------------------------------------------------------------------------------ // // Tests for helloForAll method // @Test public void accessHelloForAllWithValidRole1() throws Exception { URL wsdlURL = new URL(baseUrl, deploymentWsdlURL); Service service = Service.create(wsdlURL, serviceName); EJBEndpointIface proxy = service.getPort(EJBEndpointIface.class); Map<String, Object> reqContext = ((BindingProvider) proxy).getRequestContext(); reqContext.put(BindingProvider.USERNAME_PROPERTY, "user1"); reqContext.put(BindingProvider.PASSWORD_PROPERTY, "password1"); final String result = proxy.helloForAll("World"); Assert.assertEquals("Hello World!", result); } @Test public void accessHelloForAllWithValidRole2() throws Exception { URL wsdlURL = new URL(baseUrl, deploymentWsdlURL); Service service = Service.create(wsdlURL, serviceName); EJBEndpointIface proxy = service.getPort(EJBEndpointIface.class); Map<String, Object> reqContext = ((BindingProvider) proxy).getRequestContext(); reqContext.put(BindingProvider.USERNAME_PROPERTY, "user2"); reqContext.put(BindingProvider.PASSWORD_PROPERTY, "password2"); final String result = proxy.helloForAll("World"); Assert.assertEquals("Hello World!", result); } @Test public void accessHelloForAllWithValidRole3() throws Exception { URL wsdlURL = new URL(baseUrl, deploymentWsdlURL); Service service = Service.create(wsdlURL, serviceName); EJBEndpointIface proxy = service.getPort(EJBEndpointIface.class); Map<String, Object> reqContext = ((BindingProvider) proxy).getRequestContext(); reqContext.put(BindingProvider.USERNAME_PROPERTY, "user3"); reqContext.put(BindingProvider.PASSWORD_PROPERTY, "password3"); final String result = proxy.helloForAll("World"); Assert.assertEquals("Hello World!", result); } // ------------------------------------------------------------------------------ // // Tests for helloForNone method // @Test public void accessHelloForNoneWithValidRole1() throws Exception { URL wsdlURL = new URL(baseUrl, deploymentWsdlURL); Service service = Service.create(wsdlURL, serviceName); EJBEndpointIface proxy = service.getPort(EJBEndpointIface.class); Map<String, Object> reqContext = ((BindingProvider) proxy).getRequestContext(); reqContext.put(BindingProvider.USERNAME_PROPERTY, "user1"); reqContext.put(BindingProvider.PASSWORD_PROPERTY, "password1"); try { proxy.helloForNone("World"); Assert.fail("Test should fail, user shouldn't be allowed to invoke that method"); } catch (WebServiceException e) { // failure is expected Assert.assertEquals(getNotAllowedExceptionMessage("helloForNone"), e.getCause().getMessage()); } } @Test public void accessHelloForNoneWithValidRole2() throws Exception { URL wsdlURL = new URL(baseUrl, deploymentWsdlURL); Service service = Service.create(wsdlURL, serviceName); EJBEndpointIface proxy = service.getPort(EJBEndpointIface.class); Map<String, Object> reqContext = ((BindingProvider) proxy).getRequestContext(); reqContext.put(BindingProvider.USERNAME_PROPERTY, "user2"); reqContext.put(BindingProvider.PASSWORD_PROPERTY, "password2"); try { proxy.helloForNone("World"); Assert.fail("Test should fail, user shouldn't be allowed to invoke that method"); } catch (WebServiceException e) { // failure is expected Assert.assertEquals(getNotAllowedExceptionMessage("helloForNone"), e.getCause().getMessage()); } } @Test public void accessHelloForNoneWithValidRole3() throws Exception { URL wsdlURL = new URL(baseUrl, deploymentWsdlURL); Service service = Service.create(wsdlURL, serviceName); EJBEndpointIface proxy = service.getPort(EJBEndpointIface.class); Map<String, Object> reqContext = ((BindingProvider) proxy).getRequestContext(); reqContext.put(BindingProvider.USERNAME_PROPERTY, "user3"); reqContext.put(BindingProvider.PASSWORD_PROPERTY, "password3"); try { proxy.helloForNone("World"); Assert.fail("Test should fail, user shouldn't be allowed to invoke that method"); } catch (WebServiceException e) { // failure is expected Assert.assertEquals(getNotAllowedExceptionMessage("helloForNone"), e.getCause().getMessage()); } } /** * @deprecated This is a really bad way to do this - we cannot unexport this non-API class until this is removed */ @Deprecated private String getNotAllowedExceptionMessage(String methodName) throws NoSuchMethodException { return EjbLogger.ROOT_LOGGER.invocationOfMethodNotAllowed(EJBNoCLSAEndpoint.class.getMethod(methodName, String.class), "EJBNoCLSAEndpoint").getMessage(); } }