/modules/org.restlet.test/src/main/java/org/restlet/test/ext/guice/GuiceWrappedFinderTestCase.java

http://github.com/restlet/restlet-framework-java · Java · 185 lines · 131 code · 31 blank · 23 comment · 3 complexity · 211e669a81e1337f99728be63abf57f8 MD5 · raw file

  1. /**
  2. * Copyright 2005-2020 Talend
  3. *
  4. * The contents of this file are subject to the terms of one of the following
  5. * open source licenses: Apache 2.0 or or EPL 1.0 (the "Licenses"). You can
  6. * select the license that you prefer but you may not use this file except in
  7. * compliance with one of these Licenses.
  8. *
  9. * You can obtain a copy of the Apache 2.0 license at
  10. * http://www.opensource.org/licenses/apache-2.0
  11. *
  12. * You can obtain a copy of the EPL 1.0 license at
  13. * http://www.opensource.org/licenses/eclipse-1.0
  14. *
  15. * See the Licenses for the specific language governing permissions and
  16. * limitations under the Licenses.
  17. *
  18. * Alternatively, you can obtain a royalty free commercial license with less
  19. * limitations, transferable or non-transferable, directly at
  20. * https://restlet.talend.com/
  21. *
  22. * Restlet is a registered trademark of Talend S.A.
  23. */
  24. package org.restlet.test.ext.guice;
  25. import javax.inject.Inject;
  26. import javax.inject.Named;
  27. import org.restlet.Client;
  28. import org.restlet.Component;
  29. import org.restlet.Restlet;
  30. import org.restlet.data.MediaType;
  31. import org.restlet.data.Protocol;
  32. import org.restlet.ext.guice.ResourceInjectingApplication;
  33. import org.restlet.ext.guice.SelfInjectingServerResource;
  34. import org.restlet.ext.guice.SelfInjectingServerResourceModule;
  35. import org.restlet.resource.ClientResource;
  36. import org.restlet.resource.Get;
  37. import org.restlet.resource.ServerResource;
  38. import org.restlet.routing.Router;
  39. import org.restlet.test.RestletTestCase;
  40. import com.google.inject.AbstractModule;
  41. import com.google.inject.Guice;
  42. import com.google.inject.Injector;
  43. import com.google.inject.Provides;
  44. public class GuiceWrappedFinderTestCase extends RestletTestCase {
  45. public interface HelloResource {
  46. @Get
  47. String getMessage();
  48. }
  49. public static class HelloServerResource extends SelfInjectingServerResource
  50. implements HelloResource {
  51. @Inject
  52. @Named(HELLO_KEY)
  53. private String msg;
  54. @Override
  55. protected void doInit() {
  56. System.out.println("Hello: before doInit: msg=" + msg);
  57. try {
  58. super.doInit();
  59. } finally {
  60. System.out.println("Hello: after doInit: msg=" + msg);
  61. }
  62. }
  63. @Override
  64. public String getMessage() {
  65. return msg;
  66. }
  67. }
  68. public static class HiServerResource extends ServerResource implements
  69. HelloResource {
  70. @Inject
  71. @Named(HELLO_KEY)
  72. private String msg;
  73. @Override
  74. protected void doInit() {
  75. System.out.println("Hi: before doInit: msg=" + msg);
  76. try {
  77. super.doInit();
  78. } finally {
  79. System.out.println("Hi: after doInit: msg=" + msg);
  80. }
  81. }
  82. @Override
  83. public String getMessage() {
  84. return _HI_PREFIX + msg;
  85. }
  86. }
  87. public static final class MyApp extends ResourceInjectingApplication {
  88. @Override
  89. public Restlet createInboundRoot() {
  90. Router router = newRouter();
  91. router.setFinderClass(null);
  92. router.attach("/hello", HelloServerResource.class);
  93. router.attach("/hi", HiServerResource.class);
  94. return router;
  95. }
  96. }
  97. public static final class MyComponent extends Component {
  98. @Inject
  99. MyComponent(MyApp myApp) {
  100. getServers().add(Protocol.HTTP, TEST_PORT);
  101. getDefaultHost().attachDefault(myApp);
  102. }
  103. }
  104. static class TestModule extends AbstractModule {
  105. protected void configure() {
  106. }
  107. @Provides
  108. @Named(HELLO_KEY)
  109. String helloMessage() {
  110. return HELLO_MSG;
  111. }
  112. }
  113. static final String _HI_PREFIX = "Hi, there: ";
  114. static final String HELLO_KEY = "hello.message";
  115. static final String HELLO_MSG = "This resource was injected by Guice!";
  116. static final String HI_MSG = _HI_PREFIX + HELLO_MSG;
  117. private volatile Client client;
  118. private volatile Component component;
  119. @Override
  120. protected void setUp() throws Exception {
  121. super.setUp();
  122. Injector injector = Guice.createInjector(new TestModule(),
  123. new SelfInjectingServerResourceModule());
  124. this.client = new Client(Protocol.HTTP);
  125. if (component == null) {
  126. component = injector.getInstance(MyComponent.class);
  127. }
  128. if (!this.component.isStarted()) {
  129. this.component.start();
  130. }
  131. }
  132. @Override
  133. public void tearDown() throws Exception {
  134. this.client.stop();
  135. this.component.stop();
  136. this.component = null;
  137. super.tearDown();
  138. }
  139. public void testHiReturnsMessage() {
  140. ClientResource client = new ClientResource("http://localhost:"
  141. + TEST_PORT);
  142. client.accept(MediaType.TEXT_PLAIN);
  143. String msg = client.getChild("/hi", HelloResource.class).getMessage();
  144. assertEquals(HI_MSG, msg);
  145. }
  146. public void testReturnsMessage() {
  147. ClientResource client = new ClientResource("http://localhost:"
  148. + TEST_PORT);
  149. client.accept(MediaType.TEXT_PLAIN);
  150. String msg = client.getChild("/hello", HelloResource.class)
  151. .getMessage();
  152. assertEquals(HELLO_MSG, msg);
  153. }
  154. }