/MOVED_TO_GITHUB/mycila-event/tags/mycila-event-1.0/src/test/java/com/mycila/event/integration/GuiceTest.java

http://mycila.googlecode.com/ · Java · 137 lines · 102 code · 17 blank · 18 comment · 0 complexity · 3ba924e16a2864f3571f8f9314e485a7 MD5 · raw file

  1. /**
  2. * Copyright (C) 2009 Mathieu Carbou <mathieu.carbou@gmail.com>
  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.mycila.event.integration;
  17. import com.google.inject.Binder;
  18. import com.google.inject.Guice;
  19. import com.google.inject.Inject;
  20. import com.google.inject.Injector;
  21. import com.google.inject.Module;
  22. import com.google.inject.Provider;
  23. import com.google.inject.Singleton;
  24. import com.google.inject.binder.AnnotatedBindingBuilder;
  25. import com.google.inject.binder.ScopedBindingBuilder;
  26. import com.mycila.event.api.AnnotationProcessor;
  27. import com.mycila.event.api.Dispatcher;
  28. import com.mycila.event.api.Event;
  29. import com.mycila.event.api.Publisher;
  30. import com.mycila.event.api.Reachability;
  31. import com.mycila.event.api.annotation.Multiple;
  32. import com.mycila.event.api.annotation.Publish;
  33. import com.mycila.event.api.annotation.Reference;
  34. import com.mycila.event.api.annotation.Subscribe;
  35. import com.mycila.event.integration.guice.MycilaEventGuiceModule;
  36. import com.mycila.event.spi.AnnotationProcessors;
  37. import com.mycila.event.spi.Dispatchers;
  38. import com.mycila.event.spi.ErrorHandlers;
  39. import org.junit.Test;
  40. import org.junit.runner.RunWith;
  41. import org.junit.runners.JUnit4;
  42. import java.util.Arrays;
  43. import static com.mycila.event.integration.guice.MycilaEventGuice.*;
  44. /**
  45. * @author Mathieu Carbou (mathieu.carbou@gmail.com)
  46. */
  47. @RunWith(JUnit4.class)
  48. public final class GuiceTest implements Module {
  49. Publisher<String> publisher;
  50. @Override
  51. public void configure(Binder binder) {
  52. binder.bind(GuiceTest.class).toInstance(this);
  53. bindPublisher(binder, MyCustomPublisher.class).in(Singleton.class);
  54. bindPublisher(binder, MyCustomPublisher2.class).in(Singleton.class);
  55. bindPublisher(binder, MyCustomPublisher3.class).in(Singleton.class);
  56. }
  57. @Test
  58. public void test() throws Exception {
  59. Module m = new MycilaEventGuiceModule() {
  60. @Override
  61. protected ScopedBindingBuilder bindAnnotationProcessor(AnnotatedBindingBuilder<AnnotationProcessor> bindAnnotationProcessor) {
  62. return bindAnnotationProcessor.toProvider(new Provider<AnnotationProcessor>() {
  63. @Inject
  64. Provider<Dispatcher> dispatcher;
  65. @Override
  66. public AnnotationProcessor get() {
  67. return AnnotationProcessors.create(dispatcher.get());
  68. }
  69. });
  70. }
  71. @Override
  72. protected ScopedBindingBuilder bindDispatcher(AnnotatedBindingBuilder<Dispatcher> bindDispatcher) {
  73. return bindDispatcher.toProvider(new Provider<Dispatcher>() {
  74. @Override
  75. public Dispatcher get() {
  76. return Dispatchers.synchronousUnsafe(ErrorHandlers.rethrowErrorsImmediately());
  77. }
  78. });
  79. }
  80. };
  81. Injector injector = Guice.createInjector(this, m);
  82. injector.getInstance(GuiceTest.class).publisher.publish("Hello world !");
  83. injector.getInstance(MyCustomPublisher.class).send("A", "cut", "message", "containing", "bad words");
  84. injector.getInstance(MyCustomPublisher2.class).send(1, "A", "cut", "message", "containing", "bad words", "in varg");
  85. injector.getInstance(MyCustomPublisher3.class).send(1, Arrays.asList("A", "cut", "message", "containing", "bad words", "in list"));
  86. }
  87. @Subscribe(topics = "a/topic/path", eventType = String.class)
  88. void subscribe(Event<String> event) {
  89. System.out.println("(subscribe) Got: " + event);
  90. }
  91. @Subscribe(topics = "a/topic/path", eventType = String[].class)
  92. void subscribeToList(Event<String[]> event) {
  93. System.out.println("(subscribeToList) Got: " + Arrays.toString(event.getSource()));
  94. }
  95. @Subscribe(topics = "a/topic/path", eventType = Integer.class)
  96. void subscribeToInts(Event<Integer> event) {
  97. System.out.println("(subscribeToInts) Got: " + event.getSource());
  98. }
  99. @Publish(topics = "a/topic/path")
  100. void publisher(Publisher<String> publisher) {
  101. System.out.println("Publisher injected");
  102. publisher.publish("Hello from publisher !");
  103. this.publisher = publisher;
  104. }
  105. @Reference(Reachability.WEAK)
  106. static interface MyCustomPublisher {
  107. @Publish(topics = "a/topic/path")
  108. void send(String... messages);
  109. }
  110. static abstract class MyCustomPublisher2 {
  111. @Publish(topics = "a/topic/path")
  112. @Multiple
  113. abstract void send(int event1, String... otherEvents);
  114. }
  115. static abstract class MyCustomPublisher3 {
  116. @Publish(topics = "a/topic/path")
  117. @Multiple
  118. abstract void send(int event1, Iterable<String> events);
  119. }
  120. }