forked from spring-projects/spring-boot
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add auto-configuration for MockMvcTester
- Loading branch information
Showing
10 changed files
with
241 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
...plications/autoconfiguredspringrestdocs/withmockmvc/assertj/MyUserDocumentationTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* Copyright 2012-2024 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 | ||
* | ||
* https://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.docs.testing.springbootapplications.autoconfiguredspringrestdocs.withmockmvc.assertj; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.boot.docs.testing.springbootapplications.autoconfiguredspringrestdocs.withmockmvc.UserController; | ||
import org.springframework.boot.test.autoconfigure.restdocs.AutoConfigureRestDocs; | ||
import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; | ||
import org.springframework.http.MediaType; | ||
import org.springframework.test.web.servlet.assertj.MockMvcTester; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
import static org.springframework.restdocs.mockmvc.MockMvcRestDocumentation.document; | ||
|
||
@WebMvcTest(UserController.class) | ||
@AutoConfigureRestDocs | ||
class MyUserDocumentationTests { | ||
|
||
@Autowired | ||
private MockMvcTester mvc; | ||
|
||
@Test | ||
void listUsers() { | ||
assertThat(this.mvc.get().uri("/users").accept(MediaType.TEXT_PLAIN)) | ||
.hasStatusOk() | ||
.apply(document("list-users")); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
97 changes: 97 additions & 0 deletions
97
...in/java/org/springframework/boot/test/autoconfigure/web/servlet/MockMvcConfiguration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
/* | ||
* Copyright 2012-2024 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 | ||
* | ||
* https://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.test.autoconfigure.web.servlet; | ||
|
||
import java.util.List; | ||
|
||
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; | ||
import org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties; | ||
import org.springframework.boot.context.properties.ConfigurationProperties; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.test.web.servlet.DispatcherServletCustomizer; | ||
import org.springframework.test.web.servlet.MockMvc; | ||
import org.springframework.test.web.servlet.MockMvcBuilder; | ||
import org.springframework.test.web.servlet.setup.DefaultMockMvcBuilder; | ||
import org.springframework.test.web.servlet.setup.MockMvcBuilders; | ||
import org.springframework.web.context.WebApplicationContext; | ||
import org.springframework.web.servlet.DispatcherServlet; | ||
|
||
/** | ||
* Configuration for core {@link MockMvc}. | ||
* | ||
* @author Stephane Nicoll | ||
*/ | ||
@Configuration(proxyBeanMethods = false) | ||
class MockMvcConfiguration { | ||
|
||
private final WebApplicationContext context; | ||
|
||
private final WebMvcProperties webMvcProperties; | ||
|
||
MockMvcConfiguration(WebApplicationContext context, WebMvcProperties webMvcProperties) { | ||
this.context = context; | ||
this.webMvcProperties = webMvcProperties; | ||
} | ||
|
||
@Bean | ||
@ConditionalOnMissingBean(MockMvcBuilder.class) | ||
DefaultMockMvcBuilder mockMvcBuilder(List<MockMvcBuilderCustomizer> customizers) { | ||
DefaultMockMvcBuilder builder = MockMvcBuilders.webAppContextSetup(this.context); | ||
builder.addDispatcherServletCustomizer(new MockMvcDispatcherServletCustomizer(this.webMvcProperties)); | ||
for (MockMvcBuilderCustomizer customizer : customizers) { | ||
customizer.customize(builder); | ||
} | ||
return builder; | ||
} | ||
|
||
@Bean | ||
@ConfigurationProperties(prefix = "spring.test.mockmvc") | ||
SpringBootMockMvcBuilderCustomizer springBootMockMvcBuilderCustomizer() { | ||
return new SpringBootMockMvcBuilderCustomizer(this.context); | ||
} | ||
|
||
@Bean | ||
@ConditionalOnMissingBean | ||
MockMvc mockMvc(MockMvcBuilder builder) { | ||
return builder.build(); | ||
} | ||
|
||
private static class MockMvcDispatcherServletCustomizer implements DispatcherServletCustomizer { | ||
|
||
private final WebMvcProperties webMvcProperties; | ||
|
||
MockMvcDispatcherServletCustomizer(WebMvcProperties webMvcProperties) { | ||
this.webMvcProperties = webMvcProperties; | ||
} | ||
|
||
@Override | ||
public void customize(DispatcherServlet dispatcherServlet) { | ||
dispatcherServlet.setDispatchOptionsRequest(this.webMvcProperties.isDispatchOptionsRequest()); | ||
dispatcherServlet.setDispatchTraceRequest(this.webMvcProperties.isDispatchTraceRequest()); | ||
configureThrowExceptionIfNoHandlerFound(dispatcherServlet); | ||
} | ||
|
||
@SuppressWarnings({ "deprecation", "removal" }) | ||
private void configureThrowExceptionIfNoHandlerFound(DispatcherServlet dispatcherServlet) { | ||
dispatcherServlet | ||
.setThrowExceptionIfNoHandlerFound(this.webMvcProperties.isThrowExceptionIfNoHandlerFound()); | ||
} | ||
|
||
} | ||
|
||
} |
48 changes: 48 additions & 0 deletions
48
...a/org/springframework/boot/test/autoconfigure/web/servlet/MockMvcTesterConfiguration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
* Copyright 2012-2024 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 | ||
* | ||
* https://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.test.autoconfigure.web.servlet; | ||
|
||
import org.springframework.beans.factory.ObjectProvider; | ||
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass; | ||
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; | ||
import org.springframework.boot.autoconfigure.http.HttpMessageConverters; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.test.web.servlet.MockMvc; | ||
import org.springframework.test.web.servlet.assertj.MockMvcTester; | ||
|
||
/** | ||
* Configuration for {@link MockMvcTester}. | ||
* | ||
* @author Stephane Nicoll | ||
*/ | ||
@Configuration(proxyBeanMethods = false) | ||
@ConditionalOnClass(name = "org.assertj.core.api.Assert") | ||
class MockMvcTesterConfiguration { | ||
|
||
@Bean | ||
@ConditionalOnMissingBean | ||
MockMvcTester mockMvcTester(MockMvc mockMvc, ObjectProvider<HttpMessageConverters> httpMessageConverters) { | ||
MockMvcTester mockMvcTester = MockMvcTester.create(mockMvc); | ||
HttpMessageConverters converters = httpMessageConverters.getIfAvailable(); | ||
if (converters != null) { | ||
mockMvcTester = mockMvcTester.withHttpMessageConverters(converters); | ||
} | ||
return mockMvcTester; | ||
} | ||
|
||
} |
Oops, something went wrong.
I think we should say "
MockMvc
andMockMvcTester
in a non-@WebMvcTest
" here, otherwise it reads a little strangely that the example usesMockMvcTester
when the tip's only talked aboutMockMvc
.