/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

  1. /*
  2. * JBoss, Home of Professional Open Source.
  3. * Copyright (c) 2011, Red Hat, Inc., and individual contributors
  4. * as indicated by the @author tags. See the copyright.txt file in the
  5. * distribution for a full listing of individual contributors.
  6. *
  7. * This is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU Lesser General Public License as
  9. * published by the Free Software Foundation; either version 2.1 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This software is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this software; if not, write to the Free
  19. * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  20. * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  21. */
  22. package org.jboss.as.test.manualmode.ejb.client.reconnect;
  23. import org.jboss.arquillian.container.test.api.*;
  24. import org.jboss.arquillian.junit.Arquillian;
  25. import org.jboss.arquillian.test.api.ArquillianResource;
  26. import org.jboss.as.test.manualmode.ejb.Util;
  27. import org.jboss.ejb.client.EJBClient;
  28. import org.jboss.ejb.client.EJBClientTransactionContext;
  29. import org.jboss.ejb.client.StatelessEJBLocator;
  30. import org.jboss.logging.Logger;
  31. import org.jboss.shrinkwrap.api.Archive;
  32. import org.jboss.shrinkwrap.api.ShrinkWrap;
  33. import org.jboss.shrinkwrap.api.spec.JavaArchive;
  34. import org.junit.After;
  35. import org.junit.Before;
  36. import org.junit.Test;
  37. import org.junit.runner.RunWith;
  38. import javax.naming.Context;
  39. import javax.naming.NamingException;
  40. import static org.junit.Assert.assertEquals;
  41. import static org.junit.Assert.assertNotNull;
  42. /**
  43. * Simple ejb client reconnection test case.
  44. * See AS7-3215.
  45. *
  46. * @author <a href="mailto:istudens@redhat.com">Ivo Studensky</a>
  47. */
  48. @RunWith(Arquillian.class)
  49. @RunAsClient
  50. public class EJBClientReconnectionTestCase {
  51. private static final Logger log = Logger.getLogger(EJBClientReconnectionTestCase.class);
  52. private static final String DEPLOYMENT = "ejbclientreconnection";
  53. private static final String CONTAINER = "default-jbossas";
  54. @ArquillianResource
  55. private ContainerController controller;
  56. @ArquillianResource
  57. private Deployer deployer;
  58. @Deployment(name = DEPLOYMENT, managed = false, testable = false)
  59. @TargetsContainer(CONTAINER)
  60. public static Archive<?> deploy() {
  61. return ShrinkWrap.create(JavaArchive.class, DEPLOYMENT + ".jar")
  62. .addClasses(SimpleCrashBean.class, SimpleCrashBeanRemote.class);
  63. }
  64. @Before
  65. public void before() throws Exception {
  66. controller.start(CONTAINER);
  67. log.info("===appserver started===");
  68. deployer.deploy(DEPLOYMENT);
  69. log.info("===deployment deployed===");
  70. }
  71. @After
  72. public void after() throws Exception {
  73. try {
  74. deployer.undeploy(DEPLOYMENT);
  75. log.info("===deployment undeployed===");
  76. } finally {
  77. controller.stop(CONTAINER);
  78. log.info("===appserver stopped===");
  79. }
  80. }
  81. @Test
  82. public void testReconnection() throws Throwable {
  83. SimpleCrashBeanRemote bean = lookup(SimpleCrashBeanRemote.class, SimpleCrashBean.class, DEPLOYMENT);
  84. assertNotNull(bean);
  85. String echo = bean.echo("Hello!");
  86. assertEquals("Hello!", echo);
  87. controller.stop(CONTAINER);
  88. log.info("===appserver stopped===");
  89. controller.start(CONTAINER);
  90. log.info("===appserver started again===");
  91. SimpleCrashBeanRemote bean2 = lookup(SimpleCrashBeanRemote.class, SimpleCrashBean.class, DEPLOYMENT);
  92. assertNotNull(bean2);
  93. echo = bean2.echo("Bye!");
  94. assertEquals("Bye!", echo);
  95. }
  96. @Test
  97. public void testReconnectionWithClientAPI() throws Throwable {
  98. final EJBClientTransactionContext localUserTxContext = EJBClientTransactionContext.createLocal();
  99. EJBClientTransactionContext.setGlobalContext(localUserTxContext);
  100. final StatelessEJBLocator<SimpleCrashBeanRemote> locator = new StatelessEJBLocator(SimpleCrashBeanRemote.class, "", DEPLOYMENT, SimpleCrashBean.class.getSimpleName(), "");
  101. final SimpleCrashBeanRemote proxy = EJBClient.createProxy(locator);
  102. assertNotNull(proxy);
  103. String echo = proxy.echo("Hello!");
  104. assertEquals("Hello!", echo);
  105. controller.stop(CONTAINER);
  106. log.info("===appserver stopped===");
  107. controller.start(CONTAINER);
  108. log.info("===appserver started again===");
  109. final StatelessEJBLocator<SimpleCrashBeanRemote> locator2 = new StatelessEJBLocator(SimpleCrashBeanRemote.class, "", DEPLOYMENT, SimpleCrashBean.class.getSimpleName(), "");
  110. final SimpleCrashBeanRemote proxy2 = EJBClient.createProxy(locator2);
  111. assertNotNull(proxy2);
  112. echo = proxy2.echo("Bye!");
  113. assertEquals("Bye!", echo);
  114. }
  115. private <T> T lookup(final Class<T> remoteClass, final Class<?> beanClass, final String archiveName) throws NamingException {
  116. String myContext = Util.createRemoteEjbJndiContext(
  117. "",
  118. archiveName,
  119. "",
  120. beanClass.getSimpleName(),
  121. remoteClass.getName(),
  122. false);
  123. Context ctx = Util.createNamingContext();
  124. return remoteClass.cast(ctx.lookup(myContext));
  125. }
  126. }