PageRenderTime 43ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/jboss-as-7.1.1.Final/testsuite/integration/basic/src/test/java/org/jboss/as/test/integration/jpa/multipleinjections/MultiplePersistenceContextInjectionsTestCase.java

#
Java | 84 lines | 45 code | 11 blank | 28 comment | 0 complexity | 0a34aa51bd365da872942e7dce9cd2af MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0
  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.jpa.multipleinjections;
  23. import javax.naming.InitialContext;
  24. import javax.naming.NamingException;
  25. import org.jboss.arquillian.container.test.api.Deployment;
  26. import org.jboss.arquillian.junit.Arquillian;
  27. import org.jboss.arquillian.test.api.ArquillianResource;
  28. import org.jboss.shrinkwrap.api.Archive;
  29. import org.jboss.shrinkwrap.api.ShrinkWrap;
  30. import org.jboss.shrinkwrap.api.asset.StringAsset;
  31. import org.jboss.shrinkwrap.api.spec.WebArchive;
  32. import org.junit.Assert;
  33. import org.junit.Test;
  34. import org.junit.runner.RunWith;
  35. /**
  36. * AS7-1118
  37. *
  38. * Tests that injecting multiple persistence units into the same EJB works as expected
  39. *
  40. * @author Stuart Douglas
  41. */
  42. @RunWith(Arquillian.class)
  43. public class MultiplePersistenceContextInjectionsTestCase {
  44. @ArquillianResource
  45. private InitialContext iniCtx;
  46. @Deployment
  47. public static Archive<?> deploy() {
  48. WebArchive war = ShrinkWrap.create(WebArchive.class, "multiplepuinjections.war");
  49. war.addPackage(MultiplePersistenceContextInjectionsTestCase.class.getPackage());
  50. war.addAsResource(getPersistenceXml(), "META-INF/persistence.xml");
  51. return war;
  52. }
  53. @Test
  54. public void testMultiplePersistenceUnitInjectionsIntoSameBean() throws NamingException {
  55. MultipleInjectionsSfsb bean = (MultipleInjectionsSfsb) iniCtx.lookup("java:module/" + MultipleInjectionsSfsb.class.getSimpleName());
  56. Assert.assertNotNull(bean.getEntityManager());
  57. Assert.assertNotNull(bean.getEntityManager2());
  58. Assert.assertNotNull(bean.getExtendedEntityManager());
  59. Assert.assertNotNull(bean.getExtendedEntityManager2());
  60. }
  61. private static StringAsset getPersistenceXml() {
  62. return new StringAsset("<?xml version=\"1.0\" encoding=\"UTF-8\"?> " +
  63. "<persistence xmlns=\"http://java.sun.com/xml/ns/persistence\" version=\"1.0\">" +
  64. " <persistence-unit name=\"mainPu\">" +
  65. " <description>Persistence Unit." +
  66. " </description>" +
  67. " <jta-data-source>java:jboss/datasources/ExampleDS</jta-data-source>" +
  68. "<properties> <property name=\"hibernate.hbm2ddl.auto\" value=\"create-drop\"/>" +
  69. "</properties>" +
  70. " </persistence-unit>" +
  71. "</persistence>");
  72. }
  73. }