/rabbit.data.xml.test/src/rabbit/data/internal/xml/store/StorerModuleTest.java

https://code.google.com/ · Java · 92 lines · 61 code · 11 blank · 20 comment · 0 complexity · ad738be4bdfea0b004d2d9795d40fb28 MD5 · raw file

  1. /*
  2. * Copyright 2010 The Rabbit Eclipse Plug-in Project
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  5. * use this file except in compliance with the License. You may obtain a copy of
  6. * 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, WITHOUT
  12. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  13. * License for the specific language governing permissions and limitations under
  14. * the License.
  15. */
  16. package rabbit.data.internal.xml.store;
  17. import rabbit.data.internal.xml.StoreNamesModule;
  18. import rabbit.data.internal.xml.convert.ConverterModule;
  19. import rabbit.data.internal.xml.merge.MergerModule;
  20. import rabbit.data.store.IStorer;
  21. import rabbit.data.store.model.CommandEvent;
  22. import rabbit.data.store.model.FileEvent;
  23. import rabbit.data.store.model.JavaEvent;
  24. import rabbit.data.store.model.LaunchEvent;
  25. import rabbit.data.store.model.PartEvent;
  26. import rabbit.data.store.model.PerspectiveEvent;
  27. import rabbit.data.store.model.SessionEvent;
  28. import rabbit.data.store.model.TaskFileEvent;
  29. import com.google.inject.Guice;
  30. import com.google.inject.Injector;
  31. import com.google.inject.Key;
  32. import com.google.inject.TypeLiteral;
  33. import static org.hamcrest.CoreMatchers.instanceOf;
  34. import static org.junit.Assert.assertSame;
  35. import static org.junit.Assert.assertThat;
  36. import org.junit.Test;
  37. import org.junit.runner.RunWith;
  38. import org.junit.runners.Parameterized;
  39. import org.junit.runners.Parameterized.Parameters;
  40. import java.util.Arrays;
  41. import java.util.Collection;
  42. /**
  43. * Tests for {@link StorerModule}.
  44. */
  45. @RunWith(Parameterized.class)
  46. public class StorerModuleTest {
  47. @Parameters
  48. public static Collection<Object[]> data() {
  49. // @formatter:off
  50. return Arrays.asList(new Object[][] {
  51. {new TypeLiteral<IStorer<CommandEvent>> () {}, CommandEventStorer .class},
  52. {new TypeLiteral<IStorer<FileEvent>> () {}, FileEventStorer .class},
  53. {new TypeLiteral<IStorer<JavaEvent>> () {}, JavaEventStorer .class},
  54. {new TypeLiteral<IStorer<LaunchEvent>> () {}, LaunchEventStorer .class},
  55. {new TypeLiteral<IStorer<PartEvent>> () {}, PartEventStorer .class},
  56. {new TypeLiteral<IStorer<PerspectiveEvent>> () {}, PerspectiveEventStorer .class},
  57. {new TypeLiteral<IStorer<SessionEvent>> () {}, SessionEventStorer .class},
  58. {new TypeLiteral<IStorer<TaskFileEvent>> () {}, TaskFileEventStorer .class},
  59. });
  60. // @formatter:on
  61. }
  62. private final Injector injector;
  63. private TypeLiteral<?> storerInterface;
  64. private Class<?> storerImplementation;
  65. public StorerModuleTest(TypeLiteral<?> storerInterface, Class<?> storerImplementation) {
  66. this.storerInterface = storerInterface;
  67. this.storerImplementation = storerImplementation;
  68. this.injector = Guice.createInjector(
  69. new StorerModule(), new StoreNamesModule(), new ConverterModule(), new MergerModule());
  70. }
  71. @Test
  72. public void shouldBindTheCorrectStorer() {
  73. assertThat(injector.getInstance(Key.get(storerInterface)), instanceOf(storerImplementation));
  74. }
  75. @Test
  76. public void shouldReturnTheSingletonInstance() {
  77. assertSame(
  78. injector.getInstance(Key.get(storerInterface)),
  79. injector.getInstance(Key.get(storerInterface)));
  80. }
  81. }