/dimdwarf-core/src/test/java/net/orfjackal/dimdwarf/entities/EntityIntegrationSpec.java

http://github.com/orfjackal/dimdwarf · Java · 154 lines · 129 code · 18 blank · 7 comment · 0 complexity · 429b1edecefa47cfad68ad2bb7e3ef84 MD5 · raw file

  1. // Copyright © 2008-2013 Esko Luontola <www.orfjackal.net>
  2. // This software is released under the Apache License 2.0.
  3. // The license text is at http://dimdwarf.sourceforge.net/LICENSE
  4. package net.orfjackal.dimdwarf.entities;
  5. import com.google.inject.*;
  6. import jdave.*;
  7. import jdave.junit4.JDaveRunner;
  8. import net.orfjackal.dimdwarf.api.*;
  9. import net.orfjackal.dimdwarf.api.internal.*;
  10. import net.orfjackal.dimdwarf.modules.CommonModules;
  11. import net.orfjackal.dimdwarf.tasks.TaskExecutor;
  12. import org.junit.runner.RunWith;
  13. import javax.inject.Provider;
  14. import java.util.concurrent.Executor;
  15. import java.util.concurrent.atomic.AtomicReference;
  16. @RunWith(JDaveRunner.class)
  17. @Group({"fast"})
  18. public class EntityIntegrationSpec extends Specification<Object> {
  19. private Injector injector;
  20. private Executor taskExecutor;
  21. private Provider<BindingRepository> bindings;
  22. private EntityApi entityApi = new DimdwarfEntityApi();
  23. public void create() throws Exception {
  24. injector = Guice.createInjector(
  25. new CommonModules()
  26. );
  27. taskExecutor = injector.getInstance(TaskExecutor.class);
  28. bindings = injector.getProvider(BindingRepository.class);
  29. }
  30. public class WhenTasksAreRun {
  31. public void entitiesCreatedInOneTaskCanBeReadInTheNextTask() {
  32. final AtomicReference<EntityId> id = new AtomicReference<>();
  33. taskExecutor.execute(new Runnable() {
  34. public void run() {
  35. EntityReferenceFactory factory = injector.getInstance(EntityReferenceFactory.class);
  36. EntityReference<DummyEntity> ref = factory.createReference(new DummyEntity("foo"));
  37. id.set(ref.getEntityId());
  38. }
  39. });
  40. taskExecutor.execute(new Runnable() {
  41. public void run() {
  42. AllEntities entities = injector.getInstance(AllEntities.class);
  43. DummyEntity entity = (DummyEntity) entities.getEntityById(id.get());
  44. specify(entity.getOther(), should.equal("foo"));
  45. }
  46. });
  47. }
  48. public void entityIdsAreUniqueOverAllTasks() {
  49. final Provider<EntityInfo> info = injector.getProvider(EntityInfo.class);
  50. final AtomicReference<EntityId> idInFirstTask = new AtomicReference<>();
  51. taskExecutor.execute(new Runnable() {
  52. public void run() {
  53. EntityId id1 = info.get().getEntityId(new DummyEntity());
  54. idInFirstTask.set(id1);
  55. }
  56. });
  57. taskExecutor.execute(new Runnable() {
  58. public void run() {
  59. EntityId id2 = info.get().getEntityId(new DummyEntity());
  60. EntityId id1 = idInFirstTask.get();
  61. specify(id2, should.not().equal(id1));
  62. }
  63. });
  64. }
  65. public void entityBindingsCreatedInOneTaskCanBeReadInTheNextTask() {
  66. taskExecutor.execute(new Runnable() {
  67. public void run() {
  68. bindings.get().update("bar", new DummyEntity("foo"));
  69. }
  70. });
  71. taskExecutor.execute(new Runnable() {
  72. public void run() {
  73. specify(bindings.get().firstKey(), should.equal("bar"));
  74. specify(bindings.get().nextKeyAfter("bar"), should.equal(null));
  75. DummyEntity entity = (DummyEntity) bindings.get().read("bar");
  76. specify(entity.getOther(), should.equal("foo"));
  77. }
  78. });
  79. }
  80. public void transparentReferencesAreCreatedAutomatically() {
  81. taskExecutor.execute(new Runnable() {
  82. public void run() {
  83. bindings.get().update("foo", new DummyEntity(new DummyEntity("other")));
  84. }
  85. });
  86. taskExecutor.execute(new Runnable() {
  87. public void run() {
  88. DummyEntity entity = (DummyEntity) bindings.get().read("foo");
  89. DummyInterface other = (DummyInterface) entity.getOther();
  90. specify(other.getOther(), should.equal("other"));
  91. specify(entityApi.isEntity(entity));
  92. specify(entityApi.isTransparentReference(other));
  93. }
  94. });
  95. }
  96. public void referenceFactoryAndEntityLoaderAreInSync() {
  97. taskExecutor.execute(new Runnable() {
  98. public void run() {
  99. EntityReferenceFactory factory = injector.getInstance(EntityReferenceFactory.class);
  100. AllEntities entities = injector.getInstance(AllEntities.class);
  101. DummyEntity entity = new DummyEntity();
  102. EntityReference<DummyEntity> ref = factory.createReference(entity);
  103. DummyEntity loaded = (DummyEntity) entities.getEntityById(ref.getEntityId());
  104. specify(loaded, should.equal(entity));
  105. }
  106. });
  107. }
  108. }
  109. public class BindingRepositoryBugfix {
  110. public void bindingsCanBeCreatedForTransparentReferenceProxies() {
  111. // TODO: move this test to a better place, maybe the tests of the future EntityBindings in public API
  112. // (the bug was in ConvertEntityToEntityId - it used AllEntities.getEntityId instead of EntityInfo.getEntityId
  113. // - check that the new tests will notice that bug)
  114. taskExecutor.execute(new Runnable() {
  115. public void run() {
  116. bindings.get().update("root", new DummyEntity(new DummyEntity("x")));
  117. }
  118. });
  119. taskExecutor.execute(new Runnable() {
  120. public void run() {
  121. DummyEntity root = (DummyEntity) bindings.get().read("root");
  122. DummyInterface tref = (DummyInterface) root.getOther();
  123. specify(entityApi.isTransparentReference(tref));
  124. bindings.get().update("tref", tref);
  125. }
  126. });
  127. taskExecutor.execute(new Runnable() {
  128. public void run() {
  129. DummyEntity e = (DummyEntity) bindings.get().read("tref");
  130. specify(e.getOther(), should.equal("x"));
  131. }
  132. });
  133. }
  134. }
  135. // TODO: check that entities from one task are not passed on to another task (using AOP)
  136. }