Browse Source
* Add integration tests for /error view * Add "error" @Bean as default view for HTML Users may see side effects because now there will be a ContentNegotiatingViewResolver by default for the first time in a vanilla Actuator app. Should be interesting. [Fixes #54597932] [bs-273] Circular view reference for /errorpull/15/merge
4 changed files with 265 additions and 0 deletions
@ -0,0 +1,107 @@ |
|||||||
|
/* |
||||||
|
* 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.actuate.web; |
||||||
|
|
||||||
|
import java.util.Map; |
||||||
|
|
||||||
|
import javax.servlet.http.HttpServletRequest; |
||||||
|
import javax.servlet.http.HttpServletResponse; |
||||||
|
|
||||||
|
import org.junit.Before; |
||||||
|
import org.junit.Test; |
||||||
|
import org.junit.runner.RunWith; |
||||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||||
|
import org.springframework.boot.SpringApplication; |
||||||
|
import org.springframework.boot.actuate.web.BasicErrorControllerIntegrationTests.TestConfiguration; |
||||||
|
import org.springframework.boot.autoconfigure.EnableAutoConfiguration; |
||||||
|
import org.springframework.boot.context.initializer.LoggingApplicationContextInitializer; |
||||||
|
import org.springframework.context.annotation.Bean; |
||||||
|
import org.springframework.context.annotation.Configuration; |
||||||
|
import org.springframework.http.MediaType; |
||||||
|
import org.springframework.test.context.ContextConfiguration; |
||||||
|
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; |
||||||
|
import org.springframework.test.context.web.WebAppConfiguration; |
||||||
|
import org.springframework.test.web.servlet.MockMvc; |
||||||
|
import org.springframework.test.web.servlet.MvcResult; |
||||||
|
import org.springframework.test.web.servlet.setup.MockMvcBuilders; |
||||||
|
import org.springframework.web.context.WebApplicationContext; |
||||||
|
import org.springframework.web.servlet.View; |
||||||
|
import org.springframework.web.servlet.view.AbstractView; |
||||||
|
|
||||||
|
import static org.junit.Assert.assertTrue; |
||||||
|
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; |
||||||
|
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author Dave Syer |
||||||
|
*/ |
||||||
|
@ContextConfiguration(classes = TestConfiguration.class, initializers = { LoggingApplicationContextInitializer.class }) |
||||||
|
@RunWith(SpringJUnit4ClassRunner.class) |
||||||
|
@WebAppConfiguration |
||||||
|
public class BasicErrorControllerIntegrationTests { |
||||||
|
|
||||||
|
@Autowired |
||||||
|
private WebApplicationContext wac; |
||||||
|
|
||||||
|
private MockMvc mockMvc; |
||||||
|
|
||||||
|
@Before |
||||||
|
public void setup() { |
||||||
|
this.mockMvc = MockMvcBuilders.webAppContextSetup(this.wac).build(); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void testErrorForMachineClient() throws Exception { |
||||||
|
MvcResult response = this.mockMvc.perform(get("/error")) |
||||||
|
.andExpect(status().isOk()).andReturn(); |
||||||
|
String content = response.getResponse().getContentAsString(); |
||||||
|
assertTrue("Wrong content: " + content, content.contains("999")); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void testErrorForBrowserClient() throws Exception { |
||||||
|
MvcResult response = this.mockMvc |
||||||
|
.perform(get("/error").accept(MediaType.TEXT_HTML)) |
||||||
|
.andExpect(status().isOk()).andReturn(); |
||||||
|
String content = response.getResponse().getContentAsString(); |
||||||
|
assertTrue("Wrong content: " + content, content.contains("ERROR_BEAN")); |
||||||
|
} |
||||||
|
|
||||||
|
@Configuration |
||||||
|
@EnableAutoConfiguration |
||||||
|
public static class TestConfiguration { |
||||||
|
|
||||||
|
// For manual testing
|
||||||
|
public static void main(String[] args) { |
||||||
|
SpringApplication.run(TestConfiguration.class, args); |
||||||
|
} |
||||||
|
|
||||||
|
@Bean |
||||||
|
public View error() { |
||||||
|
return new AbstractView() { |
||||||
|
@Override |
||||||
|
protected void renderMergedOutputModel(Map<String, Object> model, |
||||||
|
HttpServletRequest request, HttpServletResponse response) |
||||||
|
throws Exception { |
||||||
|
response.getWriter().write("ERROR_BEAN"); |
||||||
|
} |
||||||
|
}; |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,80 @@ |
|||||||
|
/* |
||||||
|
* 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.actuate.web; |
||||||
|
|
||||||
|
import org.junit.Before; |
||||||
|
import org.junit.Test; |
||||||
|
import org.junit.runner.RunWith; |
||||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||||
|
import org.springframework.boot.SpringApplication; |
||||||
|
import org.springframework.boot.actuate.web.DefaultErrorViewIntegrationTests.TestConfiguration; |
||||||
|
import org.springframework.boot.autoconfigure.EnableAutoConfiguration; |
||||||
|
import org.springframework.boot.context.initializer.LoggingApplicationContextInitializer; |
||||||
|
import org.springframework.context.annotation.Configuration; |
||||||
|
import org.springframework.http.MediaType; |
||||||
|
import org.springframework.test.context.ContextConfiguration; |
||||||
|
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; |
||||||
|
import org.springframework.test.context.web.WebAppConfiguration; |
||||||
|
import org.springframework.test.web.servlet.MockMvc; |
||||||
|
import org.springframework.test.web.servlet.MvcResult; |
||||||
|
import org.springframework.test.web.servlet.setup.MockMvcBuilders; |
||||||
|
import org.springframework.web.context.WebApplicationContext; |
||||||
|
|
||||||
|
import static org.junit.Assert.assertTrue; |
||||||
|
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; |
||||||
|
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author Dave Syer |
||||||
|
*/ |
||||||
|
@ContextConfiguration(classes = TestConfiguration.class, initializers = { LoggingApplicationContextInitializer.class }) |
||||||
|
@RunWith(SpringJUnit4ClassRunner.class) |
||||||
|
@WebAppConfiguration |
||||||
|
public class DefaultErrorViewIntegrationTests { |
||||||
|
|
||||||
|
@Autowired |
||||||
|
private WebApplicationContext wac; |
||||||
|
|
||||||
|
private MockMvc mockMvc; |
||||||
|
|
||||||
|
@Before |
||||||
|
public void setup() { |
||||||
|
this.mockMvc = MockMvcBuilders.webAppContextSetup(this.wac).build(); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void testErrorForBrowserClient() throws Exception { |
||||||
|
MvcResult response = this.mockMvc |
||||||
|
.perform(get("/error").accept(MediaType.TEXT_HTML)) |
||||||
|
.andExpect(status().isOk()).andReturn(); |
||||||
|
String content = response.getResponse().getContentAsString(); |
||||||
|
assertTrue("Wrong content: " + content, content.contains("<html>")); |
||||||
|
assertTrue("Wrong content: " + content, content.contains("999")); |
||||||
|
} |
||||||
|
|
||||||
|
@Configuration |
||||||
|
@EnableAutoConfiguration |
||||||
|
public static class TestConfiguration { |
||||||
|
|
||||||
|
// For manual testing
|
||||||
|
public static void main(String[] args) { |
||||||
|
SpringApplication.run(TestConfiguration.class, args); |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
Loading…
Reference in new issue