/test/com/google/inject/testing/guiceberry/util/MutableSingletonScopeTest.java

http://guiceberry.googlecode.com/ · Java · 90 lines · 54 code · 15 blank · 21 comment · 0 complexity · 2dddc6bcc01a183d57a172cb241ba610 MD5 · raw file

  1. /*
  2. * Copyright (C) 2008 Google Inc.
  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.google.inject.testing.guiceberry.util;
  17. import com.google.common.testing.junit3.TearDownTestCase;
  18. import com.google.inject.AbstractModule;
  19. import com.google.inject.Guice;
  20. import com.google.inject.Inject;
  21. import com.google.inject.Injector;
  22. import com.google.inject.ScopeAnnotation;
  23. import java.lang.annotation.ElementType;
  24. import java.lang.annotation.Retention;
  25. import java.lang.annotation.RetentionPolicy;
  26. import java.lang.annotation.Target;
  27. /**
  28. * Tests the {@link MutableSingletonScope} class.
  29. *
  30. * @author Luiz-Otavio Zorzella
  31. * @author Danka Karwanska
  32. */
  33. public class MutableSingletonScopeTest extends TearDownTestCase {
  34. public void testBarServiceIsTheSameInstanceInMutableSingletonScope() {
  35. Something something = new Something();
  36. SomethingElse somethingElse = new SomethingElse();
  37. Injector injector = Guice.createInjector(new FooModule());
  38. assertNull(somethingElse.barService);
  39. assertNull(something.barService);
  40. injector.injectMembers(somethingElse);
  41. injector.injectMembers(something);
  42. assertSame(something.barService, somethingElse.barService);
  43. }
  44. public void testBarServiceIsDifferentInstanceAfterClearMutableSingletonScope() {
  45. Something something = new Something();
  46. SomethingElse somethingElse = new SomethingElse();
  47. Injector injector = Guice.createInjector(new FooModule());
  48. assertNull(something.barService);
  49. assertNull(something.barService);
  50. injector.injectMembers(somethingElse);
  51. injector.getInstance(MutableSingletonScope.class).clear();
  52. injector.injectMembers(something);
  53. assertNotSame(something.barService, somethingElse.barService);
  54. }
  55. private static class FooModule extends AbstractModule {
  56. @Override
  57. public void configure() {
  58. MutableSingletonScope mutableSingletonScope = new MutableSingletonScope();
  59. bind(MutableSingletonScope.class).toInstance(mutableSingletonScope);
  60. bindScope(MutableSingletonScoped.class, mutableSingletonScope);
  61. bind(BarService.class).in(MutableSingletonScoped.class);
  62. }
  63. }
  64. @Target(ElementType.TYPE)
  65. @Retention(RetentionPolicy.RUNTIME)
  66. @ScopeAnnotation
  67. private @interface MutableSingletonScoped {}
  68. private static class BarService { }
  69. private static class Something {
  70. @Inject BarService barService;
  71. }
  72. private static class SomethingElse {
  73. @Inject BarService barService;
  74. }
  75. }