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

http://warp-persist.googlecode.com/ · Java · 86 lines · 44 code · 13 blank · 29 comment · 0 complexity · 0830649fe75ea34bd1e2cdf27f39b4e4 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.Injector;
  20. import com.google.inject.matcher.Matchers;
  21. import com.wideplay.warp.persist.PersistenceService;
  22. import com.wideplay.warp.persist.UnitOfWork;
  23. import com.wideplay.warp.persist.WorkManager;
  24. import org.testng.annotations.AfterClass;
  25. import org.testng.annotations.AfterTest;
  26. import org.testng.annotations.BeforeTest;
  27. import org.testng.annotations.Test;
  28. import javax.persistence.EntityManager;
  29. import javax.persistence.EntityManagerFactory;
  30. /**
  31. * Created by IntelliJ IDEA.
  32. * User: Dhanji R. Prasanna (dhanji@gmail.com)
  33. * Date: 1/06/2007
  34. * Time: 11:40:36
  35. * <p/>
  36. * TODO: Describe me!
  37. *
  38. * @author Dhanji R. Prasanna (dhanji@gmail.com)
  39. * @since 1.0
  40. */
  41. @Test(suiteName = "jpa")
  42. public class EntityManagerFactoryProvisionTest {
  43. private Injector injector;
  44. @BeforeTest
  45. public void pre() {
  46. injector = Guice.createInjector(PersistenceService.usingJpa()
  47. .across(UnitOfWork.TRANSACTION)
  48. .forAll(Matchers.any())
  49. .buildModule(),
  50. new AbstractModule() {
  51. protected void configure() {
  52. //tell Warp the name of the jpa persistence unit
  53. bindConstant().annotatedWith(JpaUnit.class).to("testUnit");
  54. }
  55. });
  56. }
  57. @AfterTest public final void post() {
  58. injector.getInstance(WorkManager.class).endWork();
  59. }
  60. @AfterClass
  61. public final void postClass() {
  62. injector.getInstance(EntityManagerFactory.class).close();
  63. }
  64. @Test
  65. public void testSessionCreateOnInjection() {
  66. assert injector.getInstance(JpaPersistenceService.class).equals(injector.getInstance(JpaPersistenceService.class)) : "SINGLETON VIOLATION " + JpaPersistenceService.class.getName() ;
  67. //startup persistence
  68. injector.getInstance(PersistenceService.class)
  69. .start();
  70. //obtain em
  71. assert injector.getInstance(EntityManager.class).isOpen() : "EM is not open!";
  72. }
  73. }