/warp-persist/test/com/wideplay/warp/persist/hibernate/ManualLocalTransactionsWithCustomMatchersTest.java

http://warp-persist.googlecode.com/ · Java · 127 lines · 78 code · 22 blank · 27 comment · 2 complexity · fb78d4cfe8db037c8b5874a9fc81b796 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.hibernate;
  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.codemonkey.web.startup.Initializer;
  23. import com.wideplay.warp.persist.PersistenceService;
  24. import com.wideplay.warp.persist.UnitOfWork;
  25. import org.hibernate.Session;
  26. import org.hibernate.SessionFactory;
  27. import org.hibernate.cfg.AnnotationConfiguration;
  28. import org.hibernate.cfg.Configuration;
  29. import org.hibernate.context.ManagedSessionContext;
  30. import org.hibernate.criterion.Expression;
  31. import org.testng.annotations.AfterClass;
  32. import org.testng.annotations.BeforeClass;
  33. import org.testng.annotations.Test;
  34. import java.util.Date;
  35. /**
  36. * Created with IntelliJ IDEA.
  37. * On: 2/06/2007
  38. *
  39. * This test is identical to ManualLocalTransactionsTest but with a custom method matcher
  40. * instead of the traditional @Transactional annotation.
  41. *
  42. * @author Dhanji R. Prasanna (dhanji@gmail.com)
  43. * @since 1.0
  44. */
  45. public class ManualLocalTransactionsWithCustomMatchersTest {
  46. private Injector injector;
  47. private static final String UNIQUE_TEXT = "some unique text12121" + new Date();
  48. private static final String UNIQUE_TEXT_2 = "some other unique text121212" + new Date();
  49. private static final String UNIQUE_TEXT_3 = "CONSTRAINT_VIOLATING some other unique text" + new Date();
  50. @BeforeClass
  51. public void pre() {
  52. injector = Guice.createInjector(PersistenceService.usingHibernate()
  53. .across(UnitOfWork.REQUEST)
  54. .forAll(Matchers.subclassesOf(TransactionalObject.class), Matchers.any())
  55. .buildModule(),
  56. new AbstractModule() {
  57. protected void configure() {
  58. bind(Configuration.class).toInstance(new AnnotationConfiguration()
  59. .addAnnotatedClass(HibernateTestEntity.class)
  60. .setProperties(Initializer.loadProperties("spr-managed-persistence.properties")));
  61. }
  62. });
  63. //startup persistence
  64. injector.getInstance(PersistenceService.class)
  65. .start();
  66. }
  67. @AfterClass
  68. void post() {
  69. injector.getInstance(SessionFactory.class).close();
  70. }
  71. @Test
  72. public void testSimpleCrossTxnWork() {
  73. org.hibernate.classic.Session session1 = injector.getInstance(SessionFactory.class).openSession();
  74. ManagedSessionContext.bind(session1);
  75. HibernateTestEntity entity = injector.getInstance(ManualLocalTransactionsWithCustomMatchersTest.TransactionalObject.class).runOperationInTxn();
  76. injector.getInstance(ManualLocalTransactionsWithCustomMatchersTest.TransactionalObject.class).runOperationInTxn2();
  77. assert injector.getInstance(Session.class).contains(entity) : "Session appears to have been closed across txns!";
  78. session1.close();
  79. //try to query them back out
  80. Session session = injector.getInstance(SessionFactory.class).openSession();
  81. assert null != session.createCriteria(HibernateTestEntity.class).add(Expression.eq("text", UNIQUE_TEXT)).uniqueResult();
  82. assert null != session.createCriteria(HibernateTestEntity.class).add(Expression.eq("text", UNIQUE_TEXT_2)).uniqueResult();
  83. session.close();
  84. }
  85. public static class TransactionalObject {
  86. @Inject
  87. Session session;
  88. public HibernateTestEntity runOperationInTxn() {
  89. HibernateTestEntity entity = new HibernateTestEntity();
  90. entity.setText(UNIQUE_TEXT);
  91. session.persist(entity);
  92. return entity;
  93. }
  94. public void runOperationInTxn2() {
  95. HibernateTestEntity entity = new HibernateTestEntity();
  96. entity.setText(UNIQUE_TEXT_2);
  97. session.persist(entity);
  98. }
  99. public void runOperationInTxn3() {
  100. HibernateTestEntity entity = new HibernateTestEntity();
  101. entity.setText(UNIQUE_TEXT_2);
  102. session.persist(entity);
  103. }
  104. }
  105. }