Skip to content

Commit

Permalink
[WFLY-12190] Integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
tadamski committed May 5, 2020
1 parent 6dc668d commit a45fab7
Show file tree
Hide file tree
Showing 12 changed files with 801 additions and 0 deletions.
@@ -0,0 +1,273 @@
/*
* JBoss, Home of Professional Open Source.
* Copyright 2012, 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.multinode.ejb.http;

import org.jboss.arquillian.container.test.api.Deployment;
import org.jboss.arquillian.container.test.api.OperateOnDeployment;
import org.jboss.arquillian.container.test.api.TargetsContainer;
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.arquillian.container.ManagementClient;
import org.jboss.as.test.integration.management.ManagementOperations;
import org.jboss.dmr.ModelNode;
import org.jboss.logging.Logger;
import org.jboss.shrinkwrap.api.Archive;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.spec.JavaArchive;
import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.runner.RunWith;

import javax.ejb.EJBException;
import javax.naming.InitialContext;
import java.util.Arrays;

import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.ADD;
import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.ALLOW_RESOURCE_SERVICE_RESTART;
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.REMOVE;
import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.SUBSYSTEM;
import static org.jboss.as.test.shared.integration.ejb.security.PermissionUtils.createFilePermission;
import static org.jboss.as.test.shared.integration.ejb.security.PermissionUtils.createPermissionsXmlAsset;

/**
* Testing multinode communication - calling Stateless and Stateful beans (via remote and local and home interfaces).
*
* @author William DeCoste, Ondrej Chaloupka
* @author <a href="mailto:tadamski@redhat.com">Tomasz Adamski</a>
*/
@RunWith(Arquillian.class)
@ServerSetup(EjbOverHttpTestCase.EjbOverHttpTestCaseServerSetup.class)
public class EjbOverHttpTestCase {
private static final Logger log = Logger.getLogger(EjbOverHttpTestCase.class);
public static final String ARCHIVE_NAME_CLIENT = "ejboverhttp-test-client";
public static final String ARCHIVE_NAME_SERVER = "ejboverhttp-test-server";

static class EjbOverHttpTestCaseServerSetup implements ServerSetupTask {

@Override
public void setup(final ManagementClient managementClient, final String containerId) throws Exception {
final ModelNode address = new ModelNode();
address.add("subsystem", "ejb3");
address.add("remoting-profile", "test-profile");
address.protect();

final ModelNode op1 = new ModelNode();
op1.get(OP).set("add");
op1.get(OP_ADDR).add(SUBSYSTEM, "ejb3");
op1.get(OP_ADDR).add("remoting-profile", "test-profile");
op1.get(OP_ADDR).set(address);

op1.get(OPERATION_HEADERS).get(ALLOW_RESOURCE_SERVICE_RESTART).set(true);

ManagementOperations.executeOperation(managementClient.getControllerClient(), op1);

ModelNode op2 = new ModelNode();
op2.get(OP).set(ADD);
op2.get(OP_ADDR).add(SUBSYSTEM, "ejb3");
op2.get(OP_ADDR).add("remoting-profile", "test-profile");
op2.get(OP_ADDR).add("remote-http-connection", "test-connection");

op2.get("uri").set("http://localhost:8180/wildfly-services");

op2.get(OPERATION_HEADERS).get(ALLOW_RESOURCE_SERVICE_RESTART).set(true);

ManagementOperations.executeOperation(managementClient.getControllerClient(), op2);
}

@Override
public void tearDown(final ManagementClient managementClient, final String containerId) throws Exception {
ModelNode op = new ModelNode();
op.get(OP).set(REMOVE);
op.get(OP_ADDR).add(SUBSYSTEM, "ejb3");
op.get(OP_ADDR).add("remoting-profile", "test-profile");
ManagementOperations.executeOperation(managementClient.getControllerClient(), op);
}
}

@BeforeClass
public static void printSysProps() {
log.trace("System properties:\n" + System.getProperties());
}

@Deployment(name = "server")
@TargetsContainer("multinode-server")
public static Archive<?> deployment0() {
JavaArchive jar = createJar(ARCHIVE_NAME_SERVER);
return jar;
}

@Deployment(name = "client")
@TargetsContainer("multinode-client")
public static Archive<?> deployment1() {
JavaArchive jar = createJar(ARCHIVE_NAME_CLIENT);
jar.addClasses(EjbOverHttpTestCase.class);
jar.addAsManifestResource("META-INF/jboss-ejb-client-profile.xml", "jboss-ejb-client.xml")
.addAsManifestResource("ejb-http-wildfly-config.xml", "wildfly-config.xml")
.addAsManifestResource(createPermissionsXmlAsset(createFilePermission("read,write",
"jbossas.multinode.client", Arrays.asList("standalone", "data", "ejb-xa-recovery")),
createFilePermission("read,write",
"jbossas.multinode.client", Arrays.asList("standalone", "data", "ejb-xa-recovery", "-"))),
"permissions.xml");
return jar;
}

private static JavaArchive createJar(String archiveName) {
JavaArchive jar = ShrinkWrap.create(JavaArchive.class, archiveName + ".jar");
jar.addClasses(StatefulBean.class, StatefulLocal.class, StatefulLocalHome.class, StatefulRemote.class,
StatefulRemoteHome.class, StatelessBean.class, StatelessLocal.class, StatelessLocalHome.class,
StatelessRemote.class, StatelessRemoteHome.class);
return jar;
}

@Test
@OperateOnDeployment("client")
public void testStatelessLocalFromRemote(@ArquillianResource InitialContext ctx) throws Exception {
StatefulRemote bean = (StatefulRemote) ctx.lookup("java:module/" + StatefulBean.class.getSimpleName() + "!"
+ StatefulRemote.class.getName());
Assert.assertNotNull(bean);

try {
bean.localCall();
Assert.fail("should not be allowed to call local interface remotely");
} catch (EJBException e) {
// it's OK
} catch (Exception ee) {
if(!(ee.getCause() instanceof EJBException)) {
Assert.fail("should be " + EJBException.class.getName());
}
}
}

@Test
@OperateOnDeployment("client")
public void testStatelessLocalHomeFromRemoteHome(@ArquillianResource InitialContext ctx) throws Exception {
StatefulRemoteHome home = (StatefulRemoteHome) ctx.lookup("java:module/" + StatefulBean.class.getSimpleName() + "!"
+ StatefulRemoteHome.class.getName());
StatefulRemote bean = home.create();
Assert.assertNotNull(bean);

try {
bean.localHomeCall();
Assert.fail("should not be allowed to call local interface remotely");
} catch (EJBException e) {
// it's OK
} catch (Exception ee) {
if(!(ee.getCause() instanceof EJBException)) {
Assert.fail("should be " + EJBException.class.getName());
}
}
}

@Test
@OperateOnDeployment("client")
public void testStatelessRemoteFromRemote(@ArquillianResource InitialContext ctx) throws Exception {
StatefulRemote bean = (StatefulRemote) ctx.lookup("java:module/" + StatefulBean.class.getSimpleName() + "!"
+ StatefulRemote.class.getName());
Assert.assertNotNull(bean);

int methodCount = bean.remoteCall();
Assert.assertEquals(1, methodCount);
}

@Test
@OperateOnDeployment("client")
public void testStatelessRemoteHomeFromRemoteHome(@ArquillianResource InitialContext ctx) throws Exception {
StatefulRemoteHome home = (StatefulRemoteHome) ctx.lookup("java:module/" + StatefulBean.class.getSimpleName() + "!"
+ StatefulRemoteHome.class.getName());
StatefulRemote bean = home.create();
Assert.assertNotNull(bean);

int methodCount = bean.remoteHomeCall();
Assert.assertEquals(1, methodCount);
}

@Test
@OperateOnDeployment("client")
public void testStatefulRemoteFromRemote(@ArquillianResource InitialContext ctx) throws Exception {
StatelessRemote bean = (StatelessRemote) ctx.lookup("java:module/" + StatelessBean.class.getSimpleName() + "!"
+ StatelessRemote.class.getName());
Assert.assertNotNull(bean);

int methodCount = bean.remoteCall();
Assert.assertEquals(1, methodCount);
}

@Test
@OperateOnDeployment("client")
public void testStatefulRemoteHomeFromRemoteHome(@ArquillianResource InitialContext ctx) throws Exception {
StatelessRemoteHome home = (StatelessRemoteHome) ctx.lookup("java:module/" + StatelessBean.class.getSimpleName() + "!"
+ StatelessRemoteHome.class.getName());
StatelessRemote bean = home.create();
Assert.assertNotNull(bean);

int methodCount = bean.remoteHomeCall();
Assert.assertEquals(1, methodCount);
}

@Test
@OperateOnDeployment("client")
public void testStatefulLocalFromRemote(@ArquillianResource InitialContext ctx) throws Exception {
InitialContext jndiContext = new InitialContext();
StatelessRemote bean = (StatelessRemote) jndiContext.lookup("java:module/" + StatelessBean.class.getSimpleName() + "!"
+ StatelessRemote.class.getName());
Assert.assertNotNull(bean);

try {
bean.localCall();
Assert.fail("should not be allowed to call local interface remotely");
} catch (EJBException e) {
// it's OK
} catch (Exception ee) {
if(!(ee.getCause() instanceof EJBException)) {
Assert.fail("should be " + EJBException.class.getName());
}
}
}

@Test
@OperateOnDeployment("client")
public void testStatefulLocalHomeFromRemoteHome(@ArquillianResource InitialContext ctx) throws Exception {
InitialContext jndiContext = new InitialContext();
StatelessRemoteHome home = (StatelessRemoteHome) jndiContext.lookup("java:module/"
+ StatelessBean.class.getSimpleName() + "!" + StatelessRemoteHome.class.getName());
StatelessRemote bean = home.create();
Assert.assertNotNull(bean);

try {
bean.localHomeCall();
Assert.fail("should not be allowed to call local interface remotely");
} catch (EJBException e) {
// it's OK
} catch (Exception ee) {
if(!(ee.getCause() instanceof EJBException)) {
Assert.fail("should be " + EJBException.class.getName());
}
}
}
}
@@ -0,0 +1,114 @@
/*
* JBoss, Home of Professional Open Source.
* Copyright 2012, 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.multinode.ejb.http;

import org.jboss.as.test.multinode.remotecall.RemoteLocalCallTestCase;
import org.jboss.logging.Logger;

import javax.ejb.Local;
import javax.ejb.LocalHome;
import javax.ejb.Remote;
import javax.ejb.RemoteHome;
import javax.ejb.Stateful;
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;
import java.util.Properties;

/**
* @author William DeCoste
*/
@Stateful
@Local(StatefulLocal.class)
@LocalHome(StatefulLocalHome.class)
@Remote(StatefulRemote.class)
@RemoteHome(StatefulRemoteHome.class)
public class StatefulBean {
private static final Logger log = Logger.getLogger(StatefulBean.class);

private static int methodCount = 0;
private static int homeMethodCount = 0;

private InitialContext getInitialContext() throws NamingException {
final Properties props = new Properties();
// setup the ejb: namespace URL factory
props.put(Context.URL_PKG_PREFIXES, "org.jboss.ejb.client.naming");
return new InitialContext(props);
}

public void localCall() throws Exception {
InitialContext jndiContext = getInitialContext();
log.trace("Calling Local remotely... " + jndiContext.getEnvironment());
StatelessLocal stateless = (StatelessLocal) jndiContext.lookup("ejb:/" + RemoteLocalCallTestCase.ARCHIVE_NAME_SERVER
+ "//" + StatelessBean.class.getSimpleName() + "!" + StatelessLocal.class.getName());
stateless.method();
}

public void localHomeCall() throws Exception {
InitialContext jndiContext = getInitialContext();
log.trace("Calling LocalHome remotely... " + jndiContext.getEnvironment());
StatelessLocalHome statelessHome = (StatelessLocalHome) jndiContext.lookup("ejb:/"
+ RemoteLocalCallTestCase.ARCHIVE_NAME_SERVER + "//" + StatelessBean.class.getSimpleName() + "!"
+ StatelessLocalHome.class.getName());
StatelessLocal stateless = statelessHome.create();
stateless.homeMethod();
}

public int remoteCall() throws Exception {
++methodCount;
InitialContext jndiContext = getInitialContext();
log.trace("Calling Remote... " + jndiContext.getEnvironment());
StatefulRemote stateful = (StatefulRemote) jndiContext.lookup("ejb:/" + RemoteLocalCallTestCase.ARCHIVE_NAME_SERVER
+ "//" + StatefulBean.class.getSimpleName() + "!" + StatefulRemote.class.getName() + "?stateful");
log.trace("We have got statefulbean...");
return stateful.method();
}

public int remoteHomeCall() throws Exception {
++homeMethodCount;
InitialContext jndiContext = new InitialContext();
log.trace("Calling RemoteHome... " + jndiContext.getEnvironment());
StatefulRemoteHome statefulHome = (StatefulRemoteHome) jndiContext.lookup("ejb:/"
+ RemoteLocalCallTestCase.ARCHIVE_NAME_SERVER + "//" + StatefulBean.class.getSimpleName() + "!"
+ StatefulRemoteHome.class.getName());
StatefulRemote stateful = statefulHome.create();
return stateful.homeMethod();
}

public int method() throws Exception {
++methodCount;
log.trace("Method called " + methodCount);
return methodCount;
}

public int homeMethod() throws Exception {
log.trace("Before adding ++ is homeMethodCount: " + homeMethodCount);
++homeMethodCount;
log.trace("HomeMethod called " + homeMethodCount);
return homeMethodCount;
}

public void ejbCreate() throws java.rmi.RemoteException, javax.ejb.CreateException {
log.debug("Creating method for home interface...");
}
}

0 comments on commit a45fab7

Please sign in to comment.