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

http://warp-persist.googlecode.com/ · Java · 116 lines · 67 code · 19 blank · 30 comment · 2 complexity · c52d05e797808c90b8aa67300b69a24c 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.UnitOfWork;
  24. import com.wideplay.warp.persist.WorkManager;
  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. import java.util.Date;
  31. /**
  32. * Created with IntelliJ IDEA.
  33. * On: 2/06/2007
  34. *
  35. * For instance, a session-per-request strategy will control the opening and closing of the EM
  36. * at its own (manual) discretion. As opposed to a transactional unit of work.
  37. *
  38. * @author Dhanji R. Prasanna (dhanji@gmail.com)
  39. * @since 1.0
  40. */
  41. public class ManualLocalTransactionsWithCustomMatcherTest {
  42. private Injector injector;
  43. private static final String UNIQUE_TEXT = "some unique text" + new Date();
  44. private static final String UNIQUE_TEXT_2 = "some other unique text" + new Date();
  45. @BeforeClass
  46. public void pre() {
  47. injector = Guice.createInjector(PersistenceService.usingJpa()
  48. .across(UnitOfWork.REQUEST)
  49. .forAll(Matchers.subclassesOf(TransactionalObject.class), Matchers.any())
  50. .buildModule(),
  51. new AbstractModule() {
  52. protected void configure() {
  53. //tell Warp the name of the jpa persistence unit
  54. bindConstant().annotatedWith(JpaUnit.class).to("testUnit");
  55. }
  56. });
  57. //startup persistence
  58. injector.getInstance(PersistenceService.class)
  59. .start();
  60. }
  61. @AfterClass
  62. public void postClass() {
  63. injector.getInstance(EntityManagerFactory.class).close();
  64. }
  65. @Test
  66. public void testSimpleCrossTxnWork() {
  67. //pretend that the request was started here
  68. EntityManager em = injector.getInstance(EntityManager.class);
  69. JpaTestEntity entity = injector.getInstance(ManualLocalTransactionsWithCustomMatcherTest.TransactionalObject.class).runOperationInTxn();
  70. injector.getInstance(ManualLocalTransactionsWithCustomMatcherTest.TransactionalObject.class).runOperationInTxn2();
  71. //persisted entity should remain in the same em (which should still be open)
  72. assert injector.getInstance(EntityManager.class).contains(entity) : "EntityManager appears to have been closed across txns!";
  73. assert em.contains(entity) : "EntityManager appears to have been closed across txns!";
  74. assert em.isOpen() : "EntityManager appears to have been closed across txns!";
  75. injector.getInstance(WorkManager.class).endWork();
  76. //try to query them back out
  77. em = injector.getInstance(EntityManager.class);
  78. assert null != em.createQuery("from JpaTestEntity where text = :text").setParameter("text", UNIQUE_TEXT).getSingleResult();
  79. assert null != em.createQuery("from JpaTestEntity where text = :text").setParameter("text", UNIQUE_TEXT_2).getSingleResult();
  80. em.close();
  81. }
  82. public static class TransactionalObject {
  83. @Inject
  84. EntityManager em;
  85. public JpaTestEntity runOperationInTxn() {
  86. JpaTestEntity entity = new JpaTestEntity();
  87. entity.setText(UNIQUE_TEXT);
  88. em.persist(entity);
  89. return entity;
  90. }
  91. public void runOperationInTxn2() {
  92. JpaTestEntity entity = new JpaTestEntity();
  93. entity.setText(UNIQUE_TEXT_2);
  94. em.persist(entity);
  95. }
  96. }
  97. }