/warp-persist/test/com/wideplay/warp/persist/db4o/ObjectContainerProvisionTest.java

http://warp-persist.googlecode.com/ · Java · 109 lines · 70 code · 19 blank · 20 comment · 0 complexity · 9704334642afcc29d1c7905a4c97eb1f 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.db4o;
  17. import com.db4o.Db4o;
  18. import com.db4o.ObjectContainer;
  19. import com.db4o.ObjectServer;
  20. import com.db4o.config.Configuration;
  21. import com.google.inject.AbstractModule;
  22. import com.google.inject.Guice;
  23. import com.google.inject.Inject;
  24. import com.google.inject.Injector;
  25. import com.google.inject.name.Names;
  26. import com.wideplay.warp.persist.PersistenceService;
  27. import com.wideplay.warp.persist.Transactional;
  28. import com.wideplay.warp.persist.UnitOfWork;
  29. import org.testng.annotations.AfterClass;
  30. import org.testng.annotations.BeforeClass;
  31. import org.testng.annotations.Test;
  32. /**
  33. *
  34. * @author Jeffrey Chung (jeffreymchung@gmail.com)
  35. */
  36. @Test(suiteName = "db4o")
  37. public class ObjectContainerProvisionTest {
  38. private Injector injector;
  39. @BeforeClass
  40. public void preClass() {
  41. injector = Guice.createInjector(PersistenceService.usingDb4o()
  42. .across(UnitOfWork.TRANSACTION)
  43. .buildModule(),
  44. new AbstractModule() {
  45. protected void configure() {
  46. bindConstant().annotatedWith(Db4Objects.class).to("TestDatabase.data");
  47. bindConstant().annotatedWith(Names.named(Db4Objects.HOST)).to("localhost");
  48. bindConstant().annotatedWith(Names.named(Db4Objects.PORT)).to(4321);
  49. bindConstant().annotatedWith(Names.named(Db4Objects.USER)).to("autobot");
  50. bindConstant().annotatedWith(Names.named(Db4Objects.PASSWORD)).to("morethanmeetstheeye");
  51. Configuration config = Db4o.newConfiguration();
  52. bind(Configuration.class).toInstance(config);
  53. }
  54. }
  55. );
  56. injector.getInstance(PersistenceService.class).start();
  57. }
  58. @AfterClass
  59. public void postClass() {
  60. injector.getInstance(ObjectServer.class).close();
  61. }
  62. @Test
  63. public void testObjectContainerLifecyclePerTxn() {
  64. Db4oDao dao = injector.getInstance(Db4oDao.class);
  65. Db4oTestObject obj = new Db4oTestObject("more than meets the eye");
  66. dao.persist(obj);
  67. assert !Db4oDao.oc.equals(injector.getInstance(ObjectContainer.class))
  68. : "Duplicate object containers";
  69. // start a new object container
  70. dao = injector.getInstance(Db4oDao.class);
  71. assert !dao.contains(obj) : "Object container was not closed and re-opened properly around txn (persistent object persists)";
  72. }
  73. public static class Db4oDao {
  74. static ObjectContainer oc;
  75. @Inject
  76. public Db4oDao(ObjectContainer oc) {
  77. Db4oDao.oc = oc;
  78. }
  79. @Transactional
  80. public <T> void persist(T t) {
  81. assert !oc.ext().isClosed() : "oc is not open";
  82. oc.set(t);
  83. assert oc.ext().isStored(t) : "Persisting object failed";
  84. }
  85. @Transactional
  86. public <T> boolean contains(T t) {
  87. return oc.ext().isStored(t);
  88. }
  89. }
  90. }