Browse Source
The ErrorPageFilter exposes a wrapped response to the downstream chain and unless more care is taken the chain will be able to set the response status, but not inspect it. Fixes gh-2367pull/2707/head
3 changed files with 205 additions and 4 deletions
@ -0,0 +1,175 @@
@@ -0,0 +1,175 @@
|
||||
/* |
||||
* Copyright 2012-2013 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.boot.context.web; |
||||
|
||||
import java.net.URI; |
||||
import java.util.concurrent.CountDownLatch; |
||||
import java.util.concurrent.TimeUnit; |
||||
|
||||
import javax.servlet.http.HttpServletRequest; |
||||
import javax.servlet.http.HttpServletResponse; |
||||
|
||||
import org.junit.After; |
||||
import org.junit.Test; |
||||
import org.junit.runner.RunWith; |
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext; |
||||
import org.springframework.boot.context.embedded.EmbeddedServletContainerFactory; |
||||
import org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainerFactory; |
||||
import org.springframework.boot.context.web.ErrorPageFilterIntegrationTests.TomcatConfig; |
||||
import org.springframework.boot.test.IntegrationTest; |
||||
import org.springframework.boot.test.SpringApplicationConfiguration; |
||||
import org.springframework.boot.test.TestRestTemplate; |
||||
import org.springframework.context.annotation.Bean; |
||||
import org.springframework.context.annotation.Configuration; |
||||
import org.springframework.http.HttpStatus; |
||||
import org.springframework.http.ResponseEntity; |
||||
import org.springframework.stereotype.Controller; |
||||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; |
||||
import org.springframework.test.context.web.WebAppConfiguration; |
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
import org.springframework.web.bind.annotation.ResponseBody; |
||||
import org.springframework.web.bind.annotation.ResponseStatus; |
||||
import org.springframework.web.servlet.DispatcherServlet; |
||||
import org.springframework.web.servlet.ModelAndView; |
||||
import org.springframework.web.servlet.config.annotation.EnableWebMvc; |
||||
import org.springframework.web.servlet.config.annotation.InterceptorRegistry; |
||||
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; |
||||
import org.springframework.web.servlet.handler.HandlerInterceptorAdapter; |
||||
|
||||
import static org.hamcrest.Matchers.equalTo; |
||||
import static org.junit.Assert.assertThat; |
||||
|
||||
/** |
||||
* |
||||
* @author Dave Syer |
||||
*/ |
||||
@RunWith(SpringJUnit4ClassRunner.class) |
||||
@SpringApplicationConfiguration(classes = TomcatConfig.class) |
||||
@IntegrationTest |
||||
@WebAppConfiguration |
||||
public class ErrorPageFilterIntegrationTests { |
||||
|
||||
@Autowired |
||||
private HelloWorldController controller; |
||||
|
||||
@Autowired |
||||
private AnnotationConfigEmbeddedWebApplicationContext context; |
||||
|
||||
@After |
||||
public void init() { |
||||
this.controller.reset(); |
||||
} |
||||
|
||||
@Test |
||||
public void created() throws Exception { |
||||
doTest(this.context, "/create", HttpStatus.CREATED); |
||||
assertThat(this.controller.getStatus(), equalTo(201)); |
||||
} |
||||
|
||||
@Test |
||||
public void ok() throws Exception { |
||||
doTest(this.context, "/hello", HttpStatus.OK); |
||||
assertThat(this.controller.getStatus(), equalTo(200)); |
||||
} |
||||
|
||||
private void doTest(AnnotationConfigEmbeddedWebApplicationContext context, |
||||
String resourcePath, HttpStatus status) throws Exception { |
||||
int port = context.getEmbeddedServletContainer().getPort(); |
||||
TestRestTemplate template = new TestRestTemplate(); |
||||
ResponseEntity<String> entity = template.getForEntity(new URI("http://localhost:" |
||||
+ port + resourcePath), String.class); |
||||
assertThat(entity.getBody(), equalTo("Hello World")); |
||||
assertThat(entity.getStatusCode(), equalTo(status)); |
||||
} |
||||
|
||||
@Configuration |
||||
@EnableWebMvc |
||||
public static class TomcatConfig { |
||||
|
||||
@Bean |
||||
public EmbeddedServletContainerFactory containerFactory() { |
||||
return new TomcatEmbeddedServletContainerFactory(0); |
||||
} |
||||
|
||||
@Bean |
||||
public ErrorPageFilter errorPageFilter() { |
||||
return new ErrorPageFilter(); |
||||
} |
||||
|
||||
@Bean |
||||
public DispatcherServlet dispatcherServlet() { |
||||
return new DispatcherServlet(); |
||||
} |
||||
|
||||
@Bean |
||||
public HelloWorldController helloWorldController() { |
||||
return new HelloWorldController(); |
||||
} |
||||
} |
||||
|
||||
@Controller |
||||
public static class HelloWorldController extends WebMvcConfigurerAdapter { |
||||
|
||||
private int status; |
||||
|
||||
private CountDownLatch latch = new CountDownLatch(1); |
||||
|
||||
public int getStatus() throws InterruptedException { |
||||
assertThat("Timed out waiting for latch", |
||||
this.latch.await(1, TimeUnit.SECONDS), equalTo(true)); |
||||
return this.status; |
||||
} |
||||
|
||||
public void setStatus(int status) { |
||||
this.status = status; |
||||
} |
||||
|
||||
public void reset() { |
||||
this.status = 0; |
||||
this.latch = new CountDownLatch(1); |
||||
} |
||||
|
||||
@Override |
||||
public void addInterceptors(InterceptorRegistry registry) { |
||||
registry.addInterceptor(new HandlerInterceptorAdapter() { |
||||
@Override |
||||
public void postHandle(HttpServletRequest request, |
||||
HttpServletResponse response, Object handler, |
||||
ModelAndView modelAndView) throws Exception { |
||||
HelloWorldController.this.setStatus(response.getStatus()); |
||||
HelloWorldController.this.latch.countDown(); |
||||
} |
||||
}); |
||||
} |
||||
|
||||
@RequestMapping("/hello") |
||||
@ResponseBody |
||||
public String sayHello() { |
||||
return "Hello World"; |
||||
} |
||||
|
||||
@RequestMapping("/create") |
||||
@ResponseBody |
||||
@ResponseStatus(HttpStatus.CREATED) |
||||
public String created() { |
||||
return "Hello World"; |
||||
} |
||||
|
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue