/salve-depend-guice/src/test/java/salve/depend/guice/GuiceBeanLocatorTest.java

http://salve.googlecode.com/ · Java · 90 lines · 59 code · 15 blank · 16 comment · 0 complexity · 9e1dd467139a90ecffac3b37b754a1b0 MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. package salve.depend.guice;
  18. import junit.framework.Assert;
  19. import org.junit.BeforeClass;
  20. import org.junit.Test;
  21. import salve.depend.DependencyLibrary;
  22. import salve.depend.FieldKey;
  23. import salve.depend.Locator;
  24. import salve.depend.guice.model.Blue;
  25. import salve.depend.guice.model.Injected;
  26. import salve.depend.guice.model.MockService;
  27. import com.google.inject.AbstractModule;
  28. import com.google.inject.Guice;
  29. import com.google.inject.Injector;
  30. import com.google.inject.Key;
  31. import com.google.inject.Module;
  32. import com.google.inject.Scopes;
  33. public class GuiceBeanLocatorTest
  34. {
  35. private static Locator locator;
  36. @BeforeClass
  37. public static void init() throws Exception
  38. {
  39. Module module = new AbstractModule()
  40. {
  41. @Override
  42. protected void configure()
  43. {
  44. bind(MockService.class).in(Scopes.SINGLETON);
  45. Key<MockService> blueKey = Key.get(MockService.class, Blue.class);
  46. bind(blueKey).toInstance(new MockService("BlueTestService"));
  47. }
  48. };
  49. Injector injector = Guice.createInjector(module);
  50. locator = new GuiceBeanLocator(injector);
  51. DependencyLibrary.clear();
  52. DependencyLibrary.addLocator(locator);
  53. }
  54. @Test
  55. public void testLookupByType()
  56. {
  57. MockService ts = (MockService)DependencyLibrary.locate(new FieldKey(Injected.class,
  58. "testService"));
  59. Assert.assertNotNull(ts);
  60. Assert.assertEquals(ts.getName(), ts.getClass().getName());
  61. }
  62. @Test
  63. public void testLookupByTypeAndAnnot()
  64. {
  65. MockService ts = (MockService)DependencyLibrary.locate(new FieldKey(Injected.class,
  66. "blueTestService"));
  67. Assert.assertNotNull(ts);
  68. Assert.assertEquals(ts.getName(), "BlueTestService");
  69. }
  70. @Test
  71. public void testToString()
  72. {
  73. Assert.assertNotNull(locator.toString());
  74. }
  75. }