/warp-persist/test/com/wideplay/warp/persist/dao/HibernateDynamicFinderWithIsolationTest.java

http://warp-persist.googlecode.com/ · Java · 315 lines · 192 code · 74 blank · 49 comment · 13 complexity · 0eb5edf5a5e912f12bdc881f2a4c5d9b 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.dao;
  17. import org.testng.annotations.*;
  18. import org.hibernate.cfg.Configuration;
  19. import org.hibernate.cfg.AnnotationConfiguration;
  20. import org.hibernate.Session;
  21. import org.hibernate.SessionFactory;
  22. import com.google.inject.Injector;
  23. import com.google.inject.Guice;
  24. import com.google.inject.AbstractModule;
  25. import com.wideplay.warp.persist.PersistenceService;
  26. import com.wideplay.warp.persist.UnitOfWork;
  27. import com.wideplay.codemonkey.web.startup.Initializer;
  28. import java.util.Date;
  29. import java.util.List;
  30. import java.util.Set;
  31. /**
  32. * Created by IntelliJ IDEA.
  33. * User: Dhanji R. Prasanna (dhanji@gmail.com)
  34. * Date: 4/06/2007
  35. * Time: 15:57:24
  36. * <p/>
  37. *
  38. * @author Dhanji R. Prasanna (dhanji@gmail.com)
  39. * @since 1.0
  40. */
  41. public class HibernateDynamicFinderWithIsolationTest {
  42. private Injector injector;
  43. private static final String TEXT_1 = "unique text1" + new Date();
  44. private static final String TEXT_2 = "unique text2" + new Date();
  45. @BeforeMethod
  46. public void pre() {
  47. injector = Guice.createInjector(PersistenceService.usingHibernate()
  48. .across(UnitOfWork.TRANSACTION)
  49. .addAccessor(HibernateTestAccessorForDFs.class)
  50. .buildModule(),
  51. new AbstractModule() {
  52. protected void configure() {
  53. bind(Configuration.class).toInstance(new AnnotationConfiguration()
  54. .addAnnotatedClass(HibernateTestEntityTxnal.class)
  55. .setProperties(Initializer.loadProperties("spt-persistence.properties")));
  56. }
  57. });
  58. injector.getInstance(PersistenceService.class).start();
  59. }
  60. @AfterMethod
  61. public void post() {
  62. injector.getInstance(SessionFactory.class).close();
  63. injector = null;
  64. }
  65. @Test public void testDynamicFinderListAll() {
  66. Session session = injector.getInstance(Session.class);
  67. session.beginTransaction();
  68. HibernateTestEntityTxnal entity = new HibernateTestEntityTxnal();
  69. entity.setText(TEXT_1);
  70. session.save(entity);
  71. entity = new HibernateTestEntityTxnal();
  72. entity.setText(TEXT_2);
  73. session.save(entity);
  74. session.getTransaction().commit();
  75. //now test our magic finders
  76. HibernateTestEntityTxnal dddAccessor = injector.getInstance(HibernateTestEntityTxnal.class);
  77. List<HibernateTestEntityTxnal> results = dddAccessor.listAll();
  78. //assert them
  79. assert results.size() >= 2 : "atleast 2 results expected! was: " + results.size();
  80. assert results.get(0).getText().equals(TEXT_1) || results.get(0).getText().equals(TEXT_2) : "attribs not persisted correctly";
  81. assert results.get(1).getText().equals(TEXT_1) || results.get(1).getText().equals(TEXT_2) : "attribs not persisted correctly";
  82. }
  83. //an accessor is an interface bound to web-ext with finder methods
  84. @Test public void testDynamicAccessorListAll() {
  85. Session session = injector.getInstance(Session.class);
  86. session.beginTransaction();
  87. HibernateTestEntityTxnal entity = new HibernateTestEntityTxnal();
  88. entity.setText(TEXT_1);
  89. session.save(entity);
  90. entity = new HibernateTestEntityTxnal();
  91. entity.setText(TEXT_2);
  92. session.save(entity);
  93. session.getTransaction().commit();
  94. //now test our magic finders
  95. HibernateTestAccessorForDFs accessor = injector.getInstance(HibernateTestAccessorForDFs.class);
  96. session = injector.getInstance(Session.class);
  97. session.beginTransaction();
  98. List<HibernateTestEntityTxnal> results = accessor.listAll();
  99. session.getTransaction().commit();
  100. //assert them
  101. assert results.size() >= 2 : "atleast 2 results expected! was: " + results.size();
  102. assert results.get(0).getText().equals(TEXT_1) || results.get(0).getText().equals(TEXT_2) : "attribs not persisted correctly";
  103. assert results.get(1).getText().equals(TEXT_1) || results.get(1).getText().equals(TEXT_2) : "attribs not persisted correctly";
  104. }
  105. //an accessor is an interface bound to web-ext with finder methods
  106. @Test public void testDynamicAccessorListAllWithPaging() {
  107. Session session = injector.getInstance(Session.class);
  108. session.beginTransaction();
  109. HibernateTestEntityTxnal entity = new HibernateTestEntityTxnal();
  110. entity.setText(TEXT_1);
  111. session.save(entity);
  112. entity = new HibernateTestEntityTxnal();
  113. entity.setText(TEXT_2);
  114. session.save(entity);
  115. entity = new HibernateTestEntityTxnal();
  116. entity.setText(TEXT_2);
  117. session.save(entity);
  118. entity = new HibernateTestEntityTxnal();
  119. entity.setText(TEXT_2);
  120. session.save(entity);
  121. session.getTransaction().commit();
  122. //now test our magic finders
  123. session = injector.getInstance(Session.class);
  124. session.beginTransaction();
  125. HibernateTestAccessorForDFs accessor = injector.getInstance(HibernateTestAccessorForDFs.class);
  126. List<HibernateTestEntityTxnal> results = accessor.listAll(1);
  127. session.getTransaction().commit();
  128. //assert them
  129. assert results.size() == 1 : "only 1 result expected! was: " + results.size();
  130. assert results.get(0).getText().equals(TEXT_1) || results.get(0).getText().equals(TEXT_2) : "attribs not persisted correctly";
  131. }
  132. //an accessor is an interface bound to web-ext with finder methods
  133. // @Test TODO fix
  134. public void testDynamicAccessorListAllAsArray() {
  135. Session session = injector.getInstance(Session.class);
  136. session.beginTransaction();
  137. HibernateTestEntityTxnal entity = new HibernateTestEntityTxnal();
  138. entity.setText(TEXT_1);
  139. session.save(entity);
  140. entity = new HibernateTestEntityTxnal();
  141. entity.setText(TEXT_2);
  142. session.save(entity);
  143. session.getTransaction().commit();
  144. //now test our magic finders
  145. session = injector.getInstance(Session.class);
  146. session.beginTransaction();
  147. HibernateTestAccessorForDFs accessor = injector.getInstance(HibernateTestAccessorForDFs.class);
  148. HibernateTestEntityTxnal[] results = accessor.listAllAsArray();
  149. session.getTransaction().commit();
  150. //assert them
  151. assert results.length >= 2 : "atleast 2 results expected! was: " + results.length;
  152. assert results[0].getText().equals(TEXT_1) || results[0].getText().equals(TEXT_2) : "attribs not persisted correctly";
  153. assert results[1].getText().equals(TEXT_1) || results[1].getText().equals(TEXT_2) : "attribs not persisted correctly";
  154. }
  155. //an accessor is an interface bound to web-ext with finder methods
  156. @Test public void testDynamicAccessorNamedQuery() {
  157. Session session = injector.getInstance(Session.class);
  158. session.beginTransaction();
  159. HibernateTestEntityTxnal entity = new HibernateTestEntityTxnal();
  160. entity.setText(TEXT_1);
  161. session.save(entity);
  162. entity = new HibernateTestEntityTxnal();
  163. entity.setText(TEXT_2);
  164. session.save(entity);
  165. session.getTransaction().commit();
  166. //now test our magic finders
  167. session = injector.getInstance(Session.class);
  168. session.beginTransaction();
  169. HibernateTestAccessorForDFs accessor = injector.getInstance(HibernateTestAccessorForDFs.class);
  170. List<HibernateTestEntityTxnal> results = accessor.listEverything();
  171. session.getTransaction().commit();
  172. //assert them
  173. assert results.size() >= 2 : "atleast 2 results expected! was: " + results.size();
  174. assert results.get(0).getText().equals(TEXT_1) || results.get(0).getText().equals(TEXT_2) : "attribs not persisted correctly";
  175. assert results.get(1).getText().equals(TEXT_1) || results.get(1).getText().equals(TEXT_2) : "attribs not persisted correctly";
  176. }
  177. //an accessor is an interface bound to web-ext with finder methods
  178. @Test public void testDynamicAccessorFinderWithBoundParamsAsSet() {
  179. Session session = injector.getInstance(Session.class);
  180. session.beginTransaction();
  181. HibernateTestEntityTxnal entity = new HibernateTestEntityTxnal();
  182. entity.setText(TEXT_1);
  183. session.save(entity);
  184. entity = new HibernateTestEntityTxnal();
  185. entity.setText(TEXT_2);
  186. session.save(entity);
  187. session.getTransaction().commit();
  188. //now test our magic finders
  189. session = injector.getInstance(Session.class);
  190. session.beginTransaction();
  191. HibernateTestAccessorForDFs accessor = injector.getInstance(HibernateTestAccessorForDFs.class);
  192. Set<HibernateTestEntityTxnal> results = accessor.find(TEXT_1);
  193. session.getTransaction().commit();
  194. //assert them
  195. assert results.size() >= 1 : "atleast 1 results expected! was: " + results.size();
  196. for (HibernateTestEntityTxnal res : results)
  197. assert res.getText().equals(TEXT_1) : "attribs not persisted correctly";
  198. }
  199. //an accessor is an interface bound to web-ext with finder methods
  200. @Test public void testDynamicAccessorFinderWithNamedBoundParamsSingleFetch() {
  201. Session session = injector.getInstance(Session.class);
  202. session.beginTransaction();
  203. HibernateTestEntityTxnal entity = new HibernateTestEntityTxnal();
  204. entity.setText(TEXT_1);
  205. session.save(entity);
  206. entity = new HibernateTestEntityTxnal();
  207. entity.setText(TEXT_2);
  208. session.save(entity);
  209. session.getTransaction().commit();
  210. //now test our magic finders
  211. session = injector.getInstance(Session.class);
  212. session.beginTransaction();
  213. HibernateTestAccessorForDFs accessor = injector.getInstance(HibernateTestAccessorForDFs.class);
  214. HibernateTestEntityTxnal result = accessor.fetch(entity.getId());
  215. session.getTransaction().commit();
  216. //assert them
  217. assert result != null : "atleast 1 results expected!";
  218. assert result.getText().equals(TEXT_2) : "attribs not persisted correctly";
  219. }
  220. //an accessor is an interface bound to web-ext with finder methods
  221. @Test public void testDynamicAccessorFinderWithRawBoundParamsSingleFetch() {
  222. Session session = injector.getInstance(Session.class);
  223. session.beginTransaction();
  224. HibernateTestEntityTxnal entity = new HibernateTestEntityTxnal();
  225. entity.setText(TEXT_1);
  226. session.save(entity);
  227. entity = new HibernateTestEntityTxnal();
  228. entity.setText(TEXT_2);
  229. session.save(entity);
  230. session.getTransaction().commit();
  231. //now test our magic finders
  232. session = injector.getInstance(Session.class);
  233. session.beginTransaction();
  234. HibernateTestAccessorForDFs accessor = injector.getInstance(HibernateTestAccessorForDFs.class);
  235. HibernateTestEntityTxnal result = accessor.fetchById(entity.getId(), 1, TEXT_2);
  236. session.getTransaction().commit();
  237. //assert them
  238. assert result != null : "atleast 1 results expected!";
  239. assert result.getText().equals(TEXT_2) : "attribs not persisted correctly";
  240. }
  241. }