/warp-persist/test/com/wideplay/warp/persist/MultiModulesTest.java

http://warp-persist.googlecode.com/ · Java · 151 lines · 109 code · 22 blank · 20 comment · 2 complexity · 6a92a3d25e757743c0c76aaa270a1b1f 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;
  17. import com.google.inject.*;
  18. import com.wideplay.codemonkey.web.startup.Initializer;
  19. import com.wideplay.warp.persist.dao.Finder;
  20. import com.wideplay.warp.persist.hibernate.HibernatePersistenceStrategy;
  21. import org.hibernate.Session;
  22. import org.hibernate.cfg.AnnotationConfiguration;
  23. import org.testng.Assert;
  24. import org.testng.annotations.AfterMethod;
  25. import org.testng.annotations.BeforeMethod;
  26. import org.testng.annotations.Test;
  27. import java.util.List;
  28. /**
  29. * @author Robbie Vanbrabant
  30. */
  31. public class MultiModulesTest {
  32. private Injector injector;
  33. private List<PersistenceService> persistenceServices;
  34. @BeforeMethod
  35. public void setUp() {
  36. // Using dynamic accessors because it allows us to check if the interceptor got applied or not
  37. PersistenceStrategy hibernate = HibernatePersistenceStrategy.builder()
  38. .configuration(new AnnotationConfiguration()
  39. .addAnnotatedClass(MultiModulesEntity.class)
  40. .addProperties(Initializer.loadProperties("spt-persistence-multimodule1.properties")))
  41. .annotatedWith(MyUnit.class).build();
  42. Module hibernateModule = PersistenceService.using(hibernate)
  43. .across(UnitOfWork.TRANSACTION)
  44. .addAccessor(MultiModulesMyUnitAccessor.class)
  45. .buildModule();
  46. PersistenceStrategy hibernate2 = HibernatePersistenceStrategy.builder()
  47. .configuration(new AnnotationConfiguration()
  48. .addAnnotatedClass(MultiModulesEntity.class)
  49. .addProperties(Initializer.loadProperties("spt-persistence-multimodule2.properties")))
  50. .annotatedWith(MySecondUnit.class).build();
  51. Module hibernateModule2 = PersistenceService.using(hibernate2)
  52. .across(UnitOfWork.TRANSACTION)
  53. .addAccessor(MultiModulesMySecondUnitAccessor.class)
  54. .buildModule();
  55. injector = Guice.createInjector(hibernateModule, hibernateModule2,
  56. new PersistenceServiceExtrasModule());
  57. persistenceServices = injector.getInstance(Key.get(new TypeLiteral<List<PersistenceService>>() {
  58. }));
  59. // They create the schema, so starting them lazily cam cause data loss
  60. for (PersistenceService ps : persistenceServices) {
  61. ps.start();
  62. }
  63. }
  64. @AfterMethod
  65. public void tearDown() {
  66. for (PersistenceService ps : persistenceServices) {
  67. ps.shutdown();
  68. }
  69. }
  70. @Test
  71. public final void testDefaultTransactionsAppliedCorrectly() {
  72. PersistenceMate persistenceMate = injector.getInstance(PersistenceMate.class);
  73. persistenceMate.storeTwoEntitiesInMyUnit();
  74. persistenceMate.storeOneEntityInMySecondUnit();
  75. List<MultiModulesEntity> myUnitList = injector.getInstance(MultiModulesMyUnitAccessor.class).listAllWithMyUnit();
  76. List<MultiModulesEntity> mySecondUnitList = injector.getInstance(MultiModulesMySecondUnitAccessor.class).listAllWithMySecondUnit();
  77. Assert.assertEquals(myUnitList.size(), 2);
  78. Assert.assertEquals(mySecondUnitList.size(), 1);
  79. }
  80. static class PersistenceMate {
  81. @Inject
  82. @MyUnit
  83. Provider<Session> myUnitSession;
  84. @Inject
  85. @MySecondUnit
  86. Provider<Session> mySecondUnitSession;
  87. @Transactional(unit = MyUnit.class)
  88. public void storeTwoEntitiesInMyUnit() {
  89. try {
  90. mySecondUnitSession.get().createQuery("from MultiModulesEntity");
  91. Assert.fail("More than one transaction is active");
  92. } catch (Exception e) {
  93. }
  94. Session session = myUnitSession.get();
  95. MultiModulesEntity entity = new MultiModulesEntity();
  96. entity.setText("text1");
  97. session.persist(entity);
  98. MultiModulesEntity entity2 = new MultiModulesEntity();
  99. entity2.setText("text2");
  100. session.persist(entity2);
  101. }
  102. @Transactional(unit = MySecondUnit.class)
  103. public void storeOneEntityInMySecondUnit() {
  104. try {
  105. myUnitSession.get().createQuery("from MultiModulesEntity");
  106. Assert.fail("More than one transaction is active");
  107. } catch (Exception e) {
  108. }
  109. Session session = mySecondUnitSession.get();
  110. MultiModulesEntity entity = new MultiModulesEntity();
  111. entity.setText("text3");
  112. session.persist(entity);
  113. }
  114. }
  115. static class MultiModulesMyUnitAccessor {
  116. @Transactional(unit = MyUnit.class)
  117. @Finder(unit = MyUnit.class, query = "from MultiModulesEntity")
  118. public List<MultiModulesEntity> listAllWithMyUnit() {
  119. throw new AssertionError();
  120. }
  121. }
  122. static class MultiModulesMySecondUnitAccessor {
  123. @Transactional(unit = MySecondUnit.class)
  124. @Finder(unit = MySecondUnit.class, query = "from MultiModulesEntity")
  125. public List<MultiModulesEntity> listAllWithMySecondUnit() {
  126. throw new AssertionError();
  127. }
  128. }
  129. }