/testsuite/integration/basic/src/test/java/org/jboss/as/test/integration/ejb/jndi/OverriddenAppNameTestCase.java

http://github.com/jbossas/jboss-as · Java · 175 lines · 64 code · 26 blank · 85 comment · 0 complexity · 9eb0bf927d0ef439ca181aa447c3959c MD5 · raw file

  1. /*
  2. * JBoss, Home of Professional Open Source.
  3. * Copyright 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.integration.ejb.jndi;
  23. import javax.naming.Context;
  24. import javax.naming.InitialContext;
  25. import org.jboss.arquillian.container.test.api.Deployment;
  26. import org.jboss.arquillian.junit.Arquillian;
  27. import org.jboss.logging.Logger;
  28. import org.jboss.shrinkwrap.api.ShrinkWrap;
  29. import org.jboss.shrinkwrap.api.exporter.ZipExporter;
  30. import org.jboss.shrinkwrap.api.spec.EnterpriseArchive;
  31. import org.jboss.shrinkwrap.api.spec.JavaArchive;
  32. import org.junit.Assert;
  33. import org.junit.Test;
  34. import org.junit.runner.RunWith;
  35. /**
  36. * Test that the deployment(s) with an overridden application-name and module-name have the correct EJB
  37. * jndi bindings
  38. * <p/>
  39. * User: Jaikiran Pai
  40. */
  41. @RunWith(Arquillian.class)
  42. public class OverriddenAppNameTestCase {
  43. private static final Logger logger = Logger.getLogger(OverriddenAppNameTestCase.class);
  44. /**
  45. * The app name of the deployment
  46. */
  47. private static final String APP_NAME = "application-name-in-application.xml";
  48. /**
  49. * Complete ear file name including the .ear file extension
  50. */
  51. private static final String EAR_NAME = "overridden-application-name.ear";
  52. /**
  53. * The module name of the deployment
  54. */
  55. private static final String MODULE_NAME = "module-name-in-ejb-jar.xml";
  56. /**
  57. * Complete jar file name including the .jar file extension
  58. */
  59. private static final String JAR_NAME = "ejb.jar";
  60. /**
  61. * java:global/ namespace
  62. */
  63. private static final String JAVA_GLOBAL_NAMESPACE_PREFIX = "java:global/";
  64. /**
  65. * java:app/ namespace
  66. */
  67. private static final String JAVA_APP_NAMESPACE_PREFIX = "java:app/";
  68. /**
  69. * java:module/ namespace
  70. */
  71. private static final String JAVA_MODULE_NAMESPACE_PREFIX = "java:module/";
  72. /**
  73. * Create the deployment
  74. *
  75. * @return
  76. */
  77. @Deployment
  78. public static EnterpriseArchive createEar() {
  79. // create the top level ear
  80. EnterpriseArchive ear = ShrinkWrap.create(EnterpriseArchive.class, EAR_NAME);
  81. // add application.xml
  82. ear.addAsManifestResource(OverriddenAppNameTestCase.class.getPackage(), "application.xml", "application.xml");
  83. // create the jar containing the EJBs
  84. JavaArchive jar = ShrinkWrap.create(JavaArchive.class, JAR_NAME);
  85. // add ejb-jar.xml
  86. jar.addAsManifestResource(OverriddenAppNameTestCase.class.getPackage(), "ejb-jar.xml", "ejb-jar.xml");
  87. // add the entire package
  88. jar.addPackage(EchoBean.class.getPackage());
  89. logger.info(jar.toString(true));
  90. // add the jar to the .ear
  91. ear.add(jar, "/", ZipExporter.class);
  92. logger.info(ear.toString(true));
  93. // return the .ear
  94. return ear;
  95. }
  96. /**
  97. * Tests that all possible local view bindings of a Stateless bean are available, when deployed through a .ear
  98. *
  99. * @throws Exception
  100. */
  101. @Test
  102. public void testLocalBindingsOnSLSB() throws Exception {
  103. Context ctx = new InitialContext();
  104. String ejbName = EchoBean.class.getSimpleName();
  105. // global bindings
  106. // 1. local business interface
  107. Echo localBusinessInterface = (Echo) ctx.lookup(JAVA_GLOBAL_NAMESPACE_PREFIX + APP_NAME + "/" + MODULE_NAME + "/" + ejbName + "!" + Echo.class.getName());
  108. Assert.assertNotNull("Null object returned for local business interface lookup in java:global namespace", localBusinessInterface);
  109. // 2. no-interface view
  110. EchoBean noInterfaceView = (EchoBean) ctx.lookup(JAVA_GLOBAL_NAMESPACE_PREFIX + APP_NAME + "/" + MODULE_NAME + "/" + ejbName + "!" + EchoBean.class.getName());
  111. Assert.assertNotNull("Null object returned for no-interface view lookup in java:global namespace", noInterfaceView);
  112. // app bindings
  113. // 1. local business interface
  114. Echo localBusinessInterfaceInAppNamespace = (Echo) ctx.lookup(JAVA_APP_NAMESPACE_PREFIX + MODULE_NAME + "/" + ejbName + "!" + Echo.class.getName());
  115. Assert.assertNotNull("Null object returned for local business interface lookup in java:app namespace", localBusinessInterfaceInAppNamespace);
  116. // 2. no-interface view
  117. EchoBean noInterfaceViewInAppNamespace = (EchoBean) ctx.lookup(JAVA_APP_NAMESPACE_PREFIX + MODULE_NAME + "/" + ejbName + "!" + EchoBean.class.getName());
  118. Assert.assertNotNull("Null object returned for no-interface view lookup in java:app namespace", noInterfaceViewInAppNamespace);
  119. // module bindings
  120. // 1. local business interface
  121. Echo localBusinessInterfaceInModuleNamespace = (Echo) ctx.lookup(JAVA_MODULE_NAMESPACE_PREFIX + ejbName + "!" + Echo.class.getName());
  122. Assert.assertNotNull("Null object returned for local business interface lookup in java:module namespace", localBusinessInterfaceInModuleNamespace);
  123. // 2. no-interface view
  124. EchoBean noInterfaceViewInModuleNamespace = (EchoBean) ctx.lookup(JAVA_MODULE_NAMESPACE_PREFIX + ejbName + "!" + EchoBean.class.getName());
  125. Assert.assertNotNull("Null object returned for no-interface view lookup in java:module namespace", noInterfaceViewInModuleNamespace);
  126. }
  127. /**
  128. * Tests that all possible remote view bindings of a Stateless bean are available, when deployed through a .ear
  129. *
  130. * @throws Exception
  131. */
  132. @Test
  133. public void testRemoteBindingsOnSLSB() throws Exception {
  134. Context ctx = new InitialContext();
  135. String ejbName = EchoBean.class.getSimpleName();
  136. // global bindings
  137. // 1. remote business interface
  138. RemoteEcho remoteBusinessInterface = (RemoteEcho) ctx.lookup(JAVA_GLOBAL_NAMESPACE_PREFIX + APP_NAME + "/" + MODULE_NAME + "/" + ejbName + "!" + RemoteEcho.class.getName());
  139. Assert.assertNotNull("Null object returned for remote business interface lookup in java:global namespace", remoteBusinessInterface);
  140. // app bindings
  141. // 1. remote business interface
  142. RemoteEcho remoteBusinessInterfaceInAppNamespace = (RemoteEcho) ctx.lookup(JAVA_APP_NAMESPACE_PREFIX + MODULE_NAME + "/" + ejbName + "!" + RemoteEcho.class.getName());
  143. Assert.assertNotNull("Null object returned for remote business interface lookup in java:app namespace", remoteBusinessInterfaceInAppNamespace);
  144. // module bindings
  145. // 1. remote business interface
  146. RemoteEcho remoteBusinessInterfaceInModuleNamespace = (RemoteEcho) ctx.lookup(JAVA_MODULE_NAMESPACE_PREFIX + ejbName + "!" + RemoteEcho.class.getName());
  147. Assert.assertNotNull("Null object returned for remote business interface lookup in java:module namespace", remoteBusinessInterfaceInModuleNamespace);
  148. }
  149. }