/extensions/servlet/test/com/google/inject/servlet/ServletDispatchIntegrationTest.java

https://code.google.com/ · Java · 268 lines · 182 code · 58 blank · 28 comment · 12 complexity · b06aaa70d2e840a3b21254c45187d42c 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.servlet;
  17. import static com.google.inject.servlet.ManagedServletPipeline.REQUEST_DISPATCHER_REQUEST;
  18. import static org.easymock.EasyMock.createMock;
  19. import static org.easymock.EasyMock.expect;
  20. import static org.easymock.EasyMock.replay;
  21. import static org.easymock.EasyMock.verify;
  22. import com.google.inject.Guice;
  23. import com.google.inject.Injector;
  24. import com.google.inject.Key;
  25. import com.google.inject.Singleton;
  26. import junit.framework.TestCase;
  27. import java.io.IOException;
  28. import javax.servlet.Filter;
  29. import javax.servlet.FilterChain;
  30. import javax.servlet.FilterConfig;
  31. import javax.servlet.ServletConfig;
  32. import javax.servlet.ServletException;
  33. import javax.servlet.ServletRequest;
  34. import javax.servlet.ServletResponse;
  35. import javax.servlet.http.HttpServlet;
  36. import javax.servlet.http.HttpServletRequest;
  37. import javax.servlet.http.HttpServletResponse;
  38. /**
  39. * Tests the FilterPipeline that dispatches to guice-managed servlets,
  40. * is a full integration test, with a real injector.
  41. *
  42. * @author Dhanji R. Prasanna (dhanji gmail com)
  43. */
  44. public class ServletDispatchIntegrationTest extends TestCase {
  45. private static int inits, services, destroys, doFilters;
  46. @Override
  47. public void setUp() {
  48. inits = 0;
  49. services = 0;
  50. destroys = 0;
  51. doFilters = 0;
  52. GuiceFilter.reset();
  53. }
  54. public final void testDispatchRequestToManagedPipelineServlets()
  55. throws ServletException, IOException {
  56. final Injector injector = Guice.createInjector(new ServletModule() {
  57. @Override
  58. protected void configureServlets() {
  59. serve("/*").with(TestServlet.class);
  60. // These servets should never fire... (ordering test)
  61. serve("*.html").with(NeverServlet.class);
  62. serve("/test/*").with(Key.get(NeverServlet.class));
  63. serve("/index/*").with(Key.get(NeverServlet.class));
  64. serve("*.jsp").with(Key.get(NeverServlet.class));
  65. }
  66. });
  67. final FilterPipeline pipeline = injector.getInstance(FilterPipeline.class);
  68. pipeline.initPipeline(null);
  69. //create ourselves a mock request with test URI
  70. HttpServletRequest requestMock = createMock(HttpServletRequest.class);
  71. expect(requestMock.getRequestURI())
  72. .andReturn("/index.html")
  73. .times(1);
  74. expect(requestMock.getContextPath())
  75. .andReturn("")
  76. .anyTimes();
  77. //dispatch request
  78. replay(requestMock);
  79. pipeline.dispatch(requestMock, null, createMock(FilterChain.class));
  80. pipeline.destroyPipeline();
  81. verify(requestMock);
  82. assertTrue("lifecycle states did not fire correct number of times-- inits: " + inits + "; dos: "
  83. + services + "; destroys: " + destroys,
  84. inits == 2 && services == 1 && destroys == 2);
  85. }
  86. public final void testDispatchRequestToManagedPipelineWithFilter()
  87. throws ServletException, IOException {
  88. final Injector injector = Guice.createInjector(new ServletModule() {
  89. @Override
  90. protected void configureServlets() {
  91. filter("/*").through(TestFilter.class);
  92. serve("/*").with(TestServlet.class);
  93. // These servets should never fire...
  94. serve("*.html").with(NeverServlet.class);
  95. serve("/test/*").with(Key.get(NeverServlet.class));
  96. serve("/index/*").with(Key.get(NeverServlet.class));
  97. serve("*.jsp").with(Key.get(NeverServlet.class));
  98. }
  99. });
  100. final FilterPipeline pipeline = injector.getInstance(FilterPipeline.class);
  101. pipeline.initPipeline(null);
  102. //create ourselves a mock request with test URI
  103. HttpServletRequest requestMock = createMock(HttpServletRequest.class);
  104. expect(requestMock.getRequestURI())
  105. .andReturn("/index.html")
  106. .times(2);
  107. expect(requestMock.getContextPath())
  108. .andReturn("")
  109. .anyTimes();
  110. //dispatch request
  111. replay(requestMock);
  112. pipeline.dispatch(requestMock, null, createMock(FilterChain.class));
  113. pipeline.destroyPipeline();
  114. verify(requestMock);
  115. assertTrue("lifecycle states did not fire correct number of times-- inits: " + inits + "; dos: "
  116. + services + "; destroys: " + destroys + "; doFilters: " + doFilters,
  117. inits == 3 && services == 1 && destroys == 3 && doFilters == 1);
  118. }
  119. @Singleton
  120. public static class TestServlet extends HttpServlet {
  121. public void init(ServletConfig filterConfig) throws ServletException {
  122. inits++;
  123. }
  124. public void service(ServletRequest servletRequest, ServletResponse servletResponse)
  125. throws IOException, ServletException {
  126. services++;
  127. }
  128. public void destroy() {
  129. destroys++;
  130. }
  131. }
  132. @Singleton
  133. public static class NeverServlet extends HttpServlet {
  134. public void init(ServletConfig filterConfig) throws ServletException {
  135. inits++;
  136. }
  137. public void service(ServletRequest servletRequest, ServletResponse servletResponse)
  138. throws IOException, ServletException {
  139. assertTrue("NeverServlet was fired, when it should not have been.", false);
  140. }
  141. public void destroy() {
  142. destroys++;
  143. }
  144. }
  145. @Singleton
  146. public static class TestFilter implements Filter {
  147. public void init(FilterConfig filterConfig) throws ServletException {
  148. inits++;
  149. }
  150. public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse,
  151. FilterChain filterChain) throws IOException, ServletException {
  152. doFilters++;
  153. filterChain.doFilter(servletRequest, servletResponse);
  154. }
  155. public void destroy() {
  156. destroys++;
  157. }
  158. }
  159. @Singleton
  160. public static class ForwardingServlet extends HttpServlet {
  161. public void service(ServletRequest servletRequest, ServletResponse servletResponse)
  162. throws IOException, ServletException {
  163. final HttpServletRequest request = (HttpServletRequest) servletRequest;
  164. request.getRequestDispatcher("/blah.jsp")
  165. .forward(servletRequest, servletResponse);
  166. }
  167. }
  168. @Singleton
  169. public static class ForwardedServlet extends HttpServlet {
  170. static int forwardedTo = 0;
  171. // Reset for test.
  172. public ForwardedServlet() {
  173. forwardedTo = 0;
  174. }
  175. public void service(ServletRequest servletRequest, ServletResponse servletResponse)
  176. throws IOException, ServletException {
  177. final HttpServletRequest request = (HttpServletRequest) servletRequest;
  178. assertTrue((Boolean) request.getAttribute(REQUEST_DISPATCHER_REQUEST));
  179. forwardedTo++;
  180. }
  181. }
  182. public void testForwardUsingRequestDispatcher() throws IOException, ServletException {
  183. Guice.createInjector(new ServletModule() {
  184. @Override
  185. protected void configureServlets() {
  186. serve("/").with(ForwardingServlet.class);
  187. serve("/blah.jsp").with(ForwardedServlet.class);
  188. }
  189. });
  190. final HttpServletRequest requestMock = createMock(HttpServletRequest.class);
  191. HttpServletResponse responseMock = createMock(HttpServletResponse.class);
  192. expect(requestMock.getRequestURI())
  193. .andReturn("/")
  194. .anyTimes();
  195. expect(requestMock.getContextPath())
  196. .andReturn("")
  197. .anyTimes();
  198. requestMock.setAttribute(REQUEST_DISPATCHER_REQUEST, true);
  199. expect(requestMock.getAttribute(REQUEST_DISPATCHER_REQUEST)).andReturn(true);
  200. requestMock.removeAttribute(REQUEST_DISPATCHER_REQUEST);
  201. expect(responseMock.isCommitted()).andReturn(false);
  202. responseMock.resetBuffer();
  203. replay(requestMock, responseMock);
  204. new GuiceFilter()
  205. .doFilter(requestMock, responseMock,
  206. createMock(FilterChain.class));
  207. assertEquals("Incorrect number of forwards", 1, ForwardedServlet.forwardedTo);
  208. verify(requestMock, responseMock);
  209. }
  210. }