11 changed files with 155 additions and 39 deletions
0
spring-boot-project/spring-boot-actuator-autoconfigure-all/src/test/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/MappingWebEndpointPathMapperTests.java → spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/MappingWebEndpointPathMapperTests.java
0
spring-boot-project/spring-boot-actuator-autoconfigure-all/src/test/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/MappingWebEndpointPathMapperTests.java → spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/MappingWebEndpointPathMapperTests.java
19
spring-boot-project/spring-boot-actuator-autoconfigure-all/src/test/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/ServletEndpointManagementContextConfigurationTests.java → spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/ServletEndpointManagementContextConfigurationTests.java
19
spring-boot-project/spring-boot-actuator-autoconfigure-all/src/test/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/ServletEndpointManagementContextConfigurationTests.java → spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/ServletEndpointManagementContextConfigurationTests.java
0
spring-boot-project/spring-boot-actuator-autoconfigure-all/src/test/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/WebEndpointAutoConfigurationTests.java → spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/WebEndpointAutoConfigurationTests.java
0
spring-boot-project/spring-boot-actuator-autoconfigure-all/src/test/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/WebEndpointAutoConfigurationTests.java → spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/WebEndpointAutoConfigurationTests.java
0
spring-boot-project/spring-boot-actuator-autoconfigure-all/src/test/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/WebEndpointPropertiesTests.java → spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/WebEndpointPropertiesTests.java
0
spring-boot-project/spring-boot-actuator-autoconfigure-all/src/test/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/WebEndpointPropertiesTests.java → spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/WebEndpointPropertiesTests.java
@ -0,0 +1,45 @@
@@ -0,0 +1,45 @@
|
||||
/* |
||||
* Copyright 2012-present 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.webmvc.actuate.autoconfigure.endpoint.web; |
||||
|
||||
import org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties; |
||||
import org.springframework.boot.actuate.autoconfigure.web.ManagementContextConfiguration; |
||||
import org.springframework.boot.actuate.endpoint.EndpointAccessResolver; |
||||
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass; |
||||
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication; |
||||
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication.Type; |
||||
import org.springframework.boot.webmvc.autoconfigure.DispatcherServletPath; |
||||
import org.springframework.context.annotation.Bean; |
||||
import org.springframework.web.servlet.DispatcherServlet; |
||||
|
||||
@ManagementContextConfiguration(proxyBeanMethods = false) |
||||
@ConditionalOnWebApplication(type = Type.SERVLET) |
||||
@ConditionalOnClass(DispatcherServlet.class) |
||||
class WebMvcEndpointManagementContextConfiguration { |
||||
|
||||
@Bean |
||||
@SuppressWarnings({ "deprecation", "removal" }) |
||||
org.springframework.boot.actuate.endpoint.web.ServletEndpointRegistrar servletEndpointRegistrar( |
||||
WebEndpointProperties properties, |
||||
org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier servletEndpointsSupplier, |
||||
DispatcherServletPath dispatcherServletPath, EndpointAccessResolver endpointAccessResolver) { |
||||
return new org.springframework.boot.actuate.endpoint.web.ServletEndpointRegistrar( |
||||
dispatcherServletPath.getRelativePath(properties.getBasePath()), |
||||
servletEndpointsSupplier.getEndpoints(), endpointAccessResolver); |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,20 @@
@@ -0,0 +1,20 @@
|
||||
/* |
||||
* Copyright 2012-present 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. |
||||
*/ |
||||
|
||||
/** |
||||
* Auto-configuration for Spring MVC-based actuator infrastructure. |
||||
*/ |
||||
package org.springframework.boot.webmvc.actuate.autoconfigure.endpoint.web; |
||||
@ -0,0 +1 @@
@@ -0,0 +1 @@
|
||||
org.springframework.boot.webmvc.actuate.autoconfigure.endpoint.web.WebMvcEndpointManagementContextConfiguration |
||||
@ -0,0 +1,87 @@
@@ -0,0 +1,87 @@
|
||||
/* |
||||
* Copyright 2012-present 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.webmvc.actuate.autoconfigure.endpoint.web; |
||||
|
||||
import java.util.Collections; |
||||
|
||||
import org.junit.jupiter.api.Test; |
||||
|
||||
import org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties; |
||||
import org.springframework.boot.actuate.endpoint.Access; |
||||
import org.springframework.boot.actuate.endpoint.EndpointAccessResolver; |
||||
import org.springframework.boot.actuate.endpoint.web.ServletEndpointRegistrar; |
||||
import org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; |
||||
import org.springframework.boot.context.properties.EnableConfigurationProperties; |
||||
import org.springframework.boot.test.context.runner.ApplicationContextRunner; |
||||
import org.springframework.boot.test.context.runner.WebApplicationContextRunner; |
||||
import org.springframework.boot.webmvc.autoconfigure.DispatcherServletPath; |
||||
import org.springframework.context.annotation.Bean; |
||||
import org.springframework.context.annotation.Configuration; |
||||
import org.springframework.context.annotation.Import; |
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat; |
||||
|
||||
/** |
||||
* Tests for {@link WebMvcEndpointManagementContextConfiguration}. |
||||
* |
||||
* @author Phillip Webb |
||||
* @author Madhura Bhave |
||||
*/ |
||||
@SuppressWarnings("removal") |
||||
class WebMvcEndpointManagementContextConfigurationTests { |
||||
|
||||
private final WebApplicationContextRunner contextRunner = new WebApplicationContextRunner() |
||||
.withUserConfiguration(TestConfig.class); |
||||
|
||||
@Test |
||||
void contextShouldContainServletEndpointRegistrar() { |
||||
this.contextRunner.run((context) -> { |
||||
assertThat(context).hasSingleBean(ServletEndpointRegistrar.class); |
||||
ServletEndpointRegistrar bean = context.getBean(ServletEndpointRegistrar.class); |
||||
assertThat(bean).hasFieldOrPropertyWithValue("basePath", "/test/actuator"); |
||||
}); |
||||
} |
||||
|
||||
@Test |
||||
void contextWhenNotServletBasedShouldNotContainServletEndpointRegistrar() { |
||||
new ApplicationContextRunner().withUserConfiguration(TestConfig.class) |
||||
.run((context) -> assertThat(context).doesNotHaveBean(ServletEndpointRegistrar.class)); |
||||
} |
||||
|
||||
@Configuration(proxyBeanMethods = false) |
||||
@Import(WebMvcEndpointManagementContextConfiguration.class) |
||||
@EnableConfigurationProperties(WebEndpointProperties.class) |
||||
static class TestConfig { |
||||
|
||||
@Bean |
||||
ServletEndpointsSupplier servletEndpointsSupplier() { |
||||
return Collections::emptyList; |
||||
} |
||||
|
||||
@Bean |
||||
DispatcherServletPath dispatcherServletPath() { |
||||
return () -> "/test"; |
||||
} |
||||
|
||||
@Bean |
||||
EndpointAccessResolver endpointAccessResolver() { |
||||
return (endpointId, defaultAccess) -> Access.UNRESTRICTED; |
||||
} |
||||
|
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue