/warp-persist/test/com/wideplay/warp/persist/jpa/EntityManagerProvisionTest.java

http://warp-persist.googlecode.com/ · Java · 136 lines · 74 code · 26 blank · 36 comment · 0 complexity · de62ced5481dccac92e413e729e83cf4 MD5 · raw file

  1. /**
  2. * Copyright (C) 2008 Wideplay Interactive.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.wideplay.warp.persist.jpa;
  17. import com.google.inject.AbstractModule;
  18. import com.google.inject.Guice;
  19. import com.google.inject.Inject;
  20. import com.google.inject.Injector;
  21. import com.google.inject.matcher.Matchers;
  22. import com.wideplay.warp.persist.PersistenceService;
  23. import com.wideplay.warp.persist.Transactional;
  24. import com.wideplay.warp.persist.UnitOfWork;
  25. import org.testng.annotations.AfterClass;
  26. import org.testng.annotations.BeforeClass;
  27. import org.testng.annotations.Test;
  28. import javax.persistence.EntityManager;
  29. import javax.persistence.EntityManagerFactory;
  30. /**
  31. * Created by IntelliJ IDEA.
  32. * User: Dhanji R. Prasanna (dhanji@gmail.com)
  33. * Date: 1/06/2007
  34. * Time: 11:40:36
  35. *
  36. * A test around providing sessions (starting, closing etc.)
  37. *
  38. * @author Dhanji R. Prasanna (dhanji@gmail.com)
  39. * @since 1.0
  40. */
  41. @Test(suiteName = "jpa")
  42. public class EntityManagerProvisionTest {
  43. private Injector injector;
  44. @BeforeClass
  45. public void pre() {
  46. injector = Guice.createInjector(PersistenceService.usingJpa()
  47. .across(UnitOfWork.TRANSACTION)
  48. .forAll(Matchers.any())
  49. .buildModule(),
  50. new AbstractModule() {
  51. protected void configure() {
  52. //tell Warp the name of the jpa persistence unit
  53. bindConstant().annotatedWith(JpaUnit.class).to("testUnit");
  54. }
  55. });
  56. //startup persistence
  57. injector.getInstance(PersistenceService.class)
  58. .start();
  59. }
  60. @AfterClass
  61. public final void postClass() {
  62. injector.getInstance(EntityManagerFactory.class).close();
  63. }
  64. @Test
  65. public void testEntityManagerLifecyclePerTxn() {
  66. //obtain em
  67. JpaDao dao = injector.getInstance(JpaDao.class);
  68. //obtain same em again (bound to txn)
  69. JpaTestEntity te = new JpaTestEntity();
  70. dao.persist(te);
  71. //im not sure this hack works...
  72. assert !JpaDao.em.equals(injector.getInstance(EntityManager.class))
  73. : "Duplicate entity managers crossing-scope";
  74. //try to start a new em in a new txn
  75. dao = injector.getInstance(JpaDao.class);
  76. assert !dao.contains(te) : "EntityManager wasnt closed and reopened properly around txn (persistent object persists)";
  77. }
  78. @Test //a duplicate to try and induce static crossovers
  79. public void testEntityManagerLifecyclePerTxn2() {
  80. //obtain em
  81. JpaDao dao = injector.getInstance(JpaDao.class);
  82. //obtain same em again (bound to txn)
  83. JpaTestEntity te = new JpaTestEntity();
  84. dao.persist(te);
  85. //im not sure this hack works...
  86. assert !JpaDao.em.equals(injector.getInstance(EntityManager.class))
  87. : "Duplicate entity managers crossing-scope";
  88. //try to start a new em in a new txn
  89. dao = injector.getInstance(JpaDao.class);
  90. assert !dao.contains(te) : "EntityManager wasnt closed and reopened properly around txn (persistent object persists)";
  91. }
  92. public static class JpaDao {
  93. static EntityManager em;
  94. @Inject
  95. public JpaDao(EntityManager em) {
  96. JpaDao.em = em;
  97. }
  98. @Transactional
  99. public <T> void persist(T t) {
  100. assert em.isOpen() : "em is not open!";
  101. assert em.getTransaction().isActive() : "no active txn!";
  102. em.persist(t);
  103. assert em.contains(t) : "Persisting object failed";
  104. }
  105. @Transactional
  106. public <T> boolean contains(T t) {
  107. return em.contains(t);
  108. }
  109. }
  110. }