24 changed files with 277 additions and 22 deletions
@ -0,0 +1,56 @@
@@ -0,0 +1,56 @@
|
||||
/* |
||||
* Copyright 2012-2022 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.actuate.autoconfigure.health; |
||||
|
||||
import org.springframework.boot.actuate.autoconfigure.health.CompositeHealthContributorConfigurationReflectionTests.TestHealthIndicator; |
||||
import org.springframework.boot.actuate.health.AbstractHealthIndicator; |
||||
import org.springframework.boot.actuate.health.Health.Builder; |
||||
import org.springframework.boot.actuate.health.HealthContributor; |
||||
|
||||
/** |
||||
* Tests for {@link CompositeHealthContributorConfiguration} using reflection to create |
||||
* indicator instances. |
||||
* |
||||
* @author Phillip Webb |
||||
*/ |
||||
@Deprecated(since = "3.0.0", forRemoval = true) |
||||
class CompositeHealthContributorConfigurationReflectionTests |
||||
extends AbstractCompositeHealthContributorConfigurationTests<HealthContributor, TestHealthIndicator> { |
||||
|
||||
@Override |
||||
protected AbstractCompositeHealthContributorConfiguration<HealthContributor, TestHealthIndicator, TestBean> newComposite() { |
||||
return new ReflectiveTestCompositeHealthContributorConfiguration(); |
||||
} |
||||
|
||||
static class ReflectiveTestCompositeHealthContributorConfiguration |
||||
extends CompositeHealthContributorConfiguration<TestHealthIndicator, TestBean> { |
||||
|
||||
} |
||||
|
||||
static class TestHealthIndicator extends AbstractHealthIndicator { |
||||
|
||||
TestHealthIndicator(TestBean testBean) { |
||||
} |
||||
|
||||
@Override |
||||
protected void doHealthCheck(Builder builder) throws Exception { |
||||
builder.up(); |
||||
} |
||||
|
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,59 @@
@@ -0,0 +1,59 @@
|
||||
/* |
||||
* Copyright 2012-2022 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.actuate.autoconfigure.health; |
||||
|
||||
import reactor.core.publisher.Mono; |
||||
|
||||
import org.springframework.boot.actuate.autoconfigure.health.CompositeReactiveHealthContributorConfigurationReflectionTests.TestReactiveHealthIndicator; |
||||
import org.springframework.boot.actuate.health.AbstractReactiveHealthIndicator; |
||||
import org.springframework.boot.actuate.health.Health; |
||||
import org.springframework.boot.actuate.health.Health.Builder; |
||||
import org.springframework.boot.actuate.health.ReactiveHealthContributor; |
||||
|
||||
/** |
||||
* Tests for {@link CompositeReactiveHealthContributorConfiguration} using reflection to |
||||
* create indicator instances. |
||||
* |
||||
* @author Phillip Webb |
||||
*/ |
||||
@Deprecated(since = "3.0.0", forRemoval = true) |
||||
class CompositeReactiveHealthContributorConfigurationReflectionTests extends |
||||
AbstractCompositeHealthContributorConfigurationTests<ReactiveHealthContributor, TestReactiveHealthIndicator> { |
||||
|
||||
@Override |
||||
protected AbstractCompositeHealthContributorConfiguration<ReactiveHealthContributor, TestReactiveHealthIndicator, TestBean> newComposite() { |
||||
return new TestCompositeReactiveHealthContributorConfiguration(); |
||||
} |
||||
|
||||
static class TestCompositeReactiveHealthContributorConfiguration |
||||
extends CompositeReactiveHealthContributorConfiguration<TestReactiveHealthIndicator, TestBean> { |
||||
|
||||
} |
||||
|
||||
static class TestReactiveHealthIndicator extends AbstractReactiveHealthIndicator { |
||||
|
||||
TestReactiveHealthIndicator(TestBean testBean) { |
||||
} |
||||
|
||||
@Override |
||||
protected Mono<Health> doHealthCheck(Builder builder) { |
||||
return Mono.just(builder.up().build()); |
||||
} |
||||
|
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue