clean-up in discovery implementation - part 2 (#1088)

This commit is contained in:
erabii
2022-09-28 15:59:41 +03:00
committed by GitHub
parent 9a215a925f
commit 4354d84c24
6 changed files with 175 additions and 11 deletions

View File

@@ -75,7 +75,7 @@ public class KubernetesClientPodUtils implements PodUtils<V1Pod> {
}
@Override
public Boolean isInsideKubernetes() {
public boolean isInsideKubernetes() {
return currentPod().get() != null;
}

View File

@@ -26,14 +26,14 @@ import java.util.function.Supplier;
public interface PodUtils<T> {
/**
* @return A supplier of the currentPod {@link Pod}. The supplier will hold the
* currentPod {@link Pod} if inside Kubernetes or false, otherwise.
* @return A supplier of the current Pod. The supplier will hold the current Pod if
* inside Kubernetes or null, otherwise.
*/
Supplier<T> currentPod();
/**
* @return true if called from within Kubernetes, false otherwise.
*/
Boolean isInsideKubernetes();
boolean isInsideKubernetes();
}

View File

@@ -25,7 +25,7 @@ import java.util.Map;
* Container that stores multiple sources, to be exact their names and their flattenned
* data. We force a LinkedHashSet on purpose, to preserve the order of sources.
*/
public final record MultipleSourcesContainer(LinkedHashSet<String> names, Map<String, Object> data) {
public record MultipleSourcesContainer(LinkedHashSet<String> names, Map<String, Object> data) {
private static final MultipleSourcesContainer EMPTY = new MultipleSourcesContainer(new LinkedHashSet<>(0),
Map.of());

View File

@@ -16,15 +16,21 @@
package org.springframework.cloud.kubernetes.commons.discovery;
import org.springframework.beans.factory.InitializingBean;
import jakarta.annotation.PostConstruct;
import org.apache.commons.logging.LogFactory;
import org.springframework.cloud.client.discovery.event.InstanceRegisteredEvent;
import org.springframework.cloud.kubernetes.commons.PodUtils;
import org.springframework.context.ApplicationEventPublisher;
import org.springframework.core.log.LogAccessor;
/**
* @author Ryan Baxter
*/
public final class KubernetesDiscoveryClientHealthIndicatorInitializer implements InitializingBean {
public final class KubernetesDiscoveryClientHealthIndicatorInitializer {
private static final LogAccessor LOG = new LogAccessor(
LogFactory.getLog(KubernetesDiscoveryClientHealthIndicatorInitializer.class));
private final PodUtils<?> podUtils;
@@ -36,9 +42,21 @@ public final class KubernetesDiscoveryClientHealthIndicatorInitializer implement
this.applicationEventPublisher = applicationEventPublisher;
}
@Override
public void afterPropertiesSet() {
this.applicationEventPublisher.publishEvent(new InstanceRegisteredEvent<>(podUtils.currentPod(), null));
@PostConstruct
private void postConstruct() {
LOG.debug(() -> "publishing InstanceRegisteredEvent");
this.applicationEventPublisher.publishEvent(new InstanceRegisteredEvent<>(
new RegisteredEventSource("kubernetes", podUtils.isInsideKubernetes(), podUtils.currentPod().get()),
null));
}
/**
* @param cloudPlatform "kubernetes" always
* @param inside inside kubernetes or not
* @param pod an actual pod or null, if we are outside kubernetes
*/
public record RegisteredEventSource(String cloudPlatform, boolean inside, Object pod) {
}
}

View File

@@ -0,0 +1,146 @@
/*
* Copyright 2013-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.cloud.kubernetes.commons.discovery;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.Test;
import org.mockito.ArgumentCaptor;
import org.mockito.Mockito;
import org.springframework.boot.test.context.runner.ApplicationContextRunner;
import org.springframework.cloud.client.discovery.event.InstanceRegisteredEvent;
import org.springframework.cloud.kubernetes.commons.PodUtils;
import org.springframework.context.ApplicationEventPublisher;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Primary;
import static org.assertj.core.api.Assertions.assertThat;
import static org.springframework.cloud.kubernetes.commons.discovery.KubernetesDiscoveryClientHealthIndicatorInitializer.RegisteredEventSource;
/**
* @author wind57
*
* Tests the
* {@link org.springframework.cloud.kubernetes.commons.discovery.KubernetesDiscoveryClientHealthIndicatorInitializer}
* with the fabric8 client.
*
*/
class KubernetesDiscoveryClientHealthIndicatorInitializerTests {
private static ApplicationEventPublisher publisher;
// we don't really need an actual Pod here (fabric8 or k8s-native), but only
// "something" we can assert for.
private static final Object POD = Mockito.mock(Object.class);
@AfterEach
void afterEach() {
Mockito.reset(publisher, POD);
}
@Test
@SuppressWarnings("unchecked")
void testInstanceRegistrationEventPublishedWhenInsideK8s() {
new ApplicationContextRunner()
.withUserConfiguration(InstanceRegistrationEventPublishedInsideK8sConfiguration.class)
.run(context -> assertThat(context).hasSingleBean(PodUtils.class));
ArgumentCaptor<InstanceRegisteredEvent<RegisteredEventSource>> captor = ArgumentCaptor
.forClass(InstanceRegisteredEvent.class);
Mockito.verify(publisher, Mockito.times(1)).publishEvent(captor.capture());
KubernetesDiscoveryClientHealthIndicatorInitializer.RegisteredEventSource source = (KubernetesDiscoveryClientHealthIndicatorInitializer.RegisteredEventSource) captor
.getValue().getSource();
assertThat(source.cloudPlatform()).isEqualTo("kubernetes");
assertThat(source.inside()).isTrue();
assertThat(source.pod()).isSameAs(POD);
}
@Test
@SuppressWarnings("unchecked")
void testInstanceRegistrationEventPublishedWhenOutsideK8s() {
new ApplicationContextRunner()
.withUserConfiguration(InstanceRegistrationEventPublishedOutsideK8sConfiguration.class)
.run(context -> assertThat(context).hasSingleBean(PodUtils.class));
ArgumentCaptor<InstanceRegisteredEvent<RegisteredEventSource>> captor = ArgumentCaptor
.forClass(InstanceRegisteredEvent.class);
Mockito.verify(publisher, Mockito.times(1)).publishEvent(captor.capture());
KubernetesDiscoveryClientHealthIndicatorInitializer.RegisteredEventSource source = (KubernetesDiscoveryClientHealthIndicatorInitializer.RegisteredEventSource) captor
.getValue().getSource();
assertThat(source.cloudPlatform()).isEqualTo("kubernetes");
assertThat(source.inside()).isFalse();
assertThat(source.pod()).isNotNull();
}
@Configuration
static class InstanceRegistrationEventPublishedInsideK8sConfiguration {
@Bean
@SuppressWarnings("unchecked")
PodUtils<Object> podUtils() {
PodUtils<Object> podUtils = Mockito.mock(PodUtils.class);
Mockito.when(podUtils.isInsideKubernetes()).thenReturn(true);
Mockito.when(podUtils.currentPod()).thenReturn(() -> POD);
return podUtils;
}
@Bean
@Primary
ApplicationEventPublisher publisher() {
publisher = Mockito.mock(ApplicationEventPublisher.class);
return publisher;
}
@Bean
KubernetesDiscoveryClientHealthIndicatorInitializer indicatorInitializer(PodUtils<Object> podUtils,
ApplicationEventPublisher publisher) {
return new KubernetesDiscoveryClientHealthIndicatorInitializer(podUtils, publisher);
}
}
@Configuration
static class InstanceRegistrationEventPublishedOutsideK8sConfiguration {
@Bean
@SuppressWarnings("unchecked")
PodUtils<Object> podUtils() {
PodUtils<Object> podUtils = Mockito.mock(PodUtils.class);
Mockito.when(podUtils.isInsideKubernetes()).thenReturn(false);
Mockito.when(podUtils.currentPod()).thenReturn(() -> POD);
return podUtils;
}
@Bean
@Primary
ApplicationEventPublisher publisher() {
publisher = Mockito.mock(ApplicationEventPublisher.class);
return publisher;
}
@Bean
KubernetesDiscoveryClientHealthIndicatorInitializer indicatorInitializer(PodUtils<Object> podUtils,
ApplicationEventPublisher publisher) {
return new KubernetesDiscoveryClientHealthIndicatorInitializer(podUtils, publisher);
}
}
}

View File

@@ -74,7 +74,7 @@ public class Fabric8PodUtils implements PodUtils<Pod> {
}
@Override
public Boolean isInsideKubernetes() {
public boolean isInsideKubernetes() {
return currentPod().get() != null;
}