/testsuite/integration/manualmode/src/test/java/org/jboss/as/test/manualmode/ejb/client/reconnect/EJBClientReconnectionTestCase.java
http://github.com/jbossas/jboss-as · Java · 151 lines · 99 code · 25 blank · 27 comment · 0 complexity · 22a618ebf63cc80fa40ad835ee1afeaf MD5 · raw file
- /*
- * 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.manualmode.ejb.client.reconnect;
- import org.jboss.arquillian.container.test.api.*;
- import org.jboss.arquillian.junit.Arquillian;
- import org.jboss.arquillian.test.api.ArquillianResource;
- import org.jboss.as.test.manualmode.ejb.Util;
- import org.jboss.ejb.client.EJBClient;
- import org.jboss.ejb.client.EJBClientTransactionContext;
- import org.jboss.ejb.client.StatelessEJBLocator;
- 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.After;
- import org.junit.Before;
- import org.junit.Test;
- import org.junit.runner.RunWith;
- import javax.naming.Context;
- import javax.naming.NamingException;
- import static org.junit.Assert.assertEquals;
- import static org.junit.Assert.assertNotNull;
- /**
- * Simple ejb client reconnection test case.
- * See AS7-3215.
- *
- * @author <a href="mailto:istudens@redhat.com">Ivo Studensky</a>
- */
- @RunWith(Arquillian.class)
- @RunAsClient
- public class EJBClientReconnectionTestCase {
- private static final Logger log = Logger.getLogger(EJBClientReconnectionTestCase.class);
- private static final String DEPLOYMENT = "ejbclientreconnection";
- private static final String CONTAINER = "default-jbossas";
- @ArquillianResource
- private ContainerController controller;
- @ArquillianResource
- private Deployer deployer;
- @Deployment(name = DEPLOYMENT, managed = false, testable = false)
- @TargetsContainer(CONTAINER)
- public static Archive<?> deploy() {
- return ShrinkWrap.create(JavaArchive.class, DEPLOYMENT + ".jar")
- .addClasses(SimpleCrashBean.class, SimpleCrashBeanRemote.class);
- }
- @Before
- public void before() throws Exception {
- controller.start(CONTAINER);
- log.info("===appserver started===");
- deployer.deploy(DEPLOYMENT);
- log.info("===deployment deployed===");
- }
- @After
- public void after() throws Exception {
- try {
- deployer.undeploy(DEPLOYMENT);
- log.info("===deployment undeployed===");
- } finally {
- controller.stop(CONTAINER);
- log.info("===appserver stopped===");
- }
- }
- @Test
- public void testReconnection() throws Throwable {
- SimpleCrashBeanRemote bean = lookup(SimpleCrashBeanRemote.class, SimpleCrashBean.class, DEPLOYMENT);
- assertNotNull(bean);
- String echo = bean.echo("Hello!");
- assertEquals("Hello!", echo);
- controller.stop(CONTAINER);
- log.info("===appserver stopped===");
- controller.start(CONTAINER);
- log.info("===appserver started again===");
- SimpleCrashBeanRemote bean2 = lookup(SimpleCrashBeanRemote.class, SimpleCrashBean.class, DEPLOYMENT);
- assertNotNull(bean2);
- echo = bean2.echo("Bye!");
- assertEquals("Bye!", echo);
- }
- @Test
- public void testReconnectionWithClientAPI() throws Throwable {
- final EJBClientTransactionContext localUserTxContext = EJBClientTransactionContext.createLocal();
- EJBClientTransactionContext.setGlobalContext(localUserTxContext);
- final StatelessEJBLocator<SimpleCrashBeanRemote> locator = new StatelessEJBLocator(SimpleCrashBeanRemote.class, "", DEPLOYMENT, SimpleCrashBean.class.getSimpleName(), "");
- final SimpleCrashBeanRemote proxy = EJBClient.createProxy(locator);
- assertNotNull(proxy);
- String echo = proxy.echo("Hello!");
- assertEquals("Hello!", echo);
- controller.stop(CONTAINER);
- log.info("===appserver stopped===");
- controller.start(CONTAINER);
- log.info("===appserver started again===");
- final StatelessEJBLocator<SimpleCrashBeanRemote> locator2 = new StatelessEJBLocator(SimpleCrashBeanRemote.class, "", DEPLOYMENT, SimpleCrashBean.class.getSimpleName(), "");
- final SimpleCrashBeanRemote proxy2 = EJBClient.createProxy(locator2);
- assertNotNull(proxy2);
- echo = proxy2.echo("Bye!");
- assertEquals("Bye!", echo);
- }
- private <T> T lookup(final Class<T> remoteClass, final Class<?> beanClass, final String archiveName) throws NamingException {
- String myContext = Util.createRemoteEjbJndiContext(
- "",
- archiveName,
- "",
- beanClass.getSimpleName(),
- remoteClass.getName(),
- false);
- Context ctx = Util.createNamingContext();
- return remoteClass.cast(ctx.lookup(myContext));
- }
- }