-
Notifications
You must be signed in to change notification settings - Fork 40.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prevent autoconfigure of ApplicationAvailability when already registered
Signed-off-by: Taeik Lim <[email protected]>
- Loading branch information
Showing
3 changed files
with
87 additions
and
44 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
82 changes: 82 additions & 0 deletions
82
...mework/boot/autoconfigure/availability/ApplicationAvailabilityAutoConfigurationTests.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,82 @@ | ||
/* | ||
* Copyright 2012-2020 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.autoconfigure.availability; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
import org.springframework.boot.autoconfigure.AutoConfigurations; | ||
import org.springframework.boot.availability.ApplicationAvailability; | ||
import org.springframework.boot.availability.AvailabilityChangeEvent; | ||
import org.springframework.boot.availability.AvailabilityState; | ||
import org.springframework.boot.test.context.runner.ApplicationContextRunner; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
/** | ||
* Tests for {@link ApplicationAvailabilityAutoConfiguration} | ||
* | ||
* @author Brian Clozel | ||
* @author Taeik Lim | ||
*/ | ||
class ApplicationAvailabilityAutoConfigurationTests { | ||
|
||
private final ApplicationContextRunner contextRunner = new ApplicationContextRunner() | ||
.withConfiguration(AutoConfigurations.of(ApplicationAvailabilityAutoConfiguration.class)); | ||
|
||
@Test | ||
void providerIsPresentWhenNotRegistered() { | ||
this.contextRunner.run(((context) -> assertThat(context) | ||
.hasSingleBean(ApplicationAvailability.class) | ||
.hasBean("applicationAvailability") | ||
)); | ||
} | ||
|
||
@Test | ||
void providerIsPresentWithRegisteredOne() { | ||
this.contextRunner.withUserConfiguration(ApplicationAvailabilityConfig.class) | ||
.run(((context) -> assertThat(context) | ||
.hasSingleBean(ApplicationAvailability.class) | ||
.hasBean("customApplicationAvailability") | ||
)); | ||
} | ||
|
||
@Configuration(proxyBeanMethods = false) | ||
static class ApplicationAvailabilityConfig { | ||
|
||
@Bean | ||
ApplicationAvailability customApplicationAvailability() { | ||
return new ApplicationAvailability() { | ||
@Override | ||
public <S extends AvailabilityState> S getState(Class<S> stateType, S defaultState) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public <S extends AvailabilityState> S getState(Class<S> stateType) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public <S extends AvailabilityState> AvailabilityChangeEvent<S> getLastChangeEvent(Class<S> stateType) { | ||
return null; | ||
} | ||
}; | ||
} | ||
} | ||
} |
43 changes: 0 additions & 43 deletions
43
...ramework/boot/autoconfigure/kubernetes/ApplicationAvailabilityAutoConfigurationTests.java
This file was deleted.
Oops, something went wrong.