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

http://warp-persist.googlecode.com/ · Java · 90 lines · 59 code · 10 blank · 21 comment · 2 complexity · ca98d7fbc0d5be65b2f9260cf340e2cc MD5 · raw file

  1. /**
  2. * Copyright (C) 2009 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 static com.wideplay.warp.persist.TransactionType.READ_ONLY;
  25. import com.wideplay.warp.persist.Transactional;
  26. import com.wideplay.warp.persist.UnitOfWork;
  27. import org.hibernate.FlushMode;
  28. import org.hibernate.Session;
  29. import org.hibernate.cfg.AnnotationConfiguration;
  30. import org.hibernate.cfg.Configuration;
  31. import org.testng.Assert;
  32. import org.testng.annotations.AfterClass;
  33. import org.testng.annotations.BeforeClass;
  34. import org.testng.annotations.Test;
  35. /**
  36. * @author Robbie Vanbrabant
  37. */
  38. public class ReadOnlyTransactionsTest {
  39. private Injector injector;
  40. @BeforeClass
  41. public void pre() {
  42. injector = Guice.createInjector(PersistenceService.usingHibernate()
  43. .across(UnitOfWork.TRANSACTION)
  44. .forAll(Matchers.any())
  45. .buildModule(),
  46. new AbstractModule() {
  47. protected void configure() {
  48. bind(Configuration.class).toInstance(new AnnotationConfiguration()
  49. .addAnnotatedClass(ReadOnlyTransactionalObject.class)
  50. .setProperties(Initializer.loadProperties("spt-persistence.properties")));
  51. }
  52. });
  53. //startup persistence
  54. injector.getInstance(PersistenceService.class).start();
  55. }
  56. @AfterClass
  57. void post() {
  58. injector.getInstance(PersistenceService.class).shutdown();
  59. }
  60. @Test
  61. public void testReadOnlyTxRestoresSessionFlushMode() {
  62. final ReadOnlyTransactionalObject txnal = injector.getInstance(ReadOnlyTransactionalObject.class);
  63. Session session = txnal.runReadOnlyTxnAndReturnSession();
  64. // because the session gets closed in UnitOfWork.TRANSACTION,
  65. // we do NOT reset the flushmode in the interceptor
  66. Assert.assertTrue(session.getFlushMode() == FlushMode.MANUAL,
  67. "FlushMode has been reset with UnitOfWork.TRANSACTION and read-only transactions, " +
  68. "this means the session was not closed!");
  69. }
  70. public static class ReadOnlyTransactionalObject {
  71. @Inject
  72. Session session;
  73. @Transactional(type = READ_ONLY)
  74. public Session runReadOnlyTxnAndReturnSession() {
  75. Assert.assertTrue(session.getFlushMode() == FlushMode.MANUAL,
  76. "FlushMode is not set to MANUAL with a read only transaction.");
  77. return session;
  78. }
  79. }
  80. }