Browse Source
* pr/46975: Polish "Auto-configure observation of Redis with Lettuce" Auto-configure observation of Redis with Lettuce Closes gh-46975pull/47395/head
7 changed files with 77 additions and 124 deletions
@ -1,102 +0,0 @@ |
|||||||
/* |
|
||||||
* 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.data.redis.autoconfigure.metrics; |
|
||||||
|
|
||||||
import io.lettuce.core.metrics.MicrometerCommandLatencyRecorder; |
|
||||||
import io.lettuce.core.metrics.MicrometerOptions; |
|
||||||
import io.lettuce.core.resource.ClientResources; |
|
||||||
import io.micrometer.core.instrument.simple.SimpleMeterRegistry; |
|
||||||
import org.junit.jupiter.api.Test; |
|
||||||
|
|
||||||
import org.springframework.boot.autoconfigure.AutoConfigurations; |
|
||||||
import org.springframework.boot.data.redis.autoconfigure.DataRedisAutoConfiguration; |
|
||||||
import org.springframework.boot.test.context.runner.ApplicationContextRunner; |
|
||||||
import org.springframework.context.annotation.Bean; |
|
||||||
import org.springframework.context.annotation.Configuration; |
|
||||||
import org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory; |
|
||||||
|
|
||||||
import static org.assertj.core.api.Assertions.assertThat; |
|
||||||
|
|
||||||
/** |
|
||||||
* Tests for {@link LettuceMetricsAutoConfiguration}. |
|
||||||
* |
|
||||||
* @author Antonin Arquey |
|
||||||
*/ |
|
||||||
class LettuceMetricsAutoConfigurationTests { |
|
||||||
|
|
||||||
private final ApplicationContextRunner contextRunner = new ApplicationContextRunner() |
|
||||||
.withConfiguration(AutoConfigurations.of(LettuceMetricsAutoConfiguration.class)); |
|
||||||
|
|
||||||
@Test |
|
||||||
void whenThereIsAMeterRegistryThenCommandLatencyRecorderIsAdded() { |
|
||||||
this.contextRunner.withBean(SimpleMeterRegistry.class) |
|
||||||
.withConfiguration(AutoConfigurations.of(DataRedisAutoConfiguration.class)) |
|
||||||
.run((context) -> { |
|
||||||
ClientResources clientResources = context.getBean(LettuceConnectionFactory.class).getClientResources(); |
|
||||||
assertThat(clientResources.commandLatencyRecorder()) |
|
||||||
.isInstanceOf(MicrometerCommandLatencyRecorder.class); |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
@Test |
|
||||||
void autoConfiguredMicrometerOptionsUsesLettucesDefaults() { |
|
||||||
this.contextRunner.withBean(SimpleMeterRegistry.class) |
|
||||||
.withConfiguration(AutoConfigurations.of(DataRedisAutoConfiguration.class)) |
|
||||||
.run((context) -> { |
|
||||||
MicrometerOptions micrometerOptions = context.getBean(MicrometerOptions.class); |
|
||||||
assertThat(micrometerOptions.isEnabled()).isTrue(); |
|
||||||
assertThat(micrometerOptions.isHistogram()).isFalse(); |
|
||||||
assertThat(micrometerOptions.localDistinction()).isFalse(); |
|
||||||
assertThat(micrometerOptions.maxLatency()).isEqualTo(MicrometerOptions.DEFAULT_MAX_LATENCY); |
|
||||||
assertThat(micrometerOptions.minLatency()).isEqualTo(MicrometerOptions.DEFAULT_MIN_LATENCY); |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
@Test |
|
||||||
void whenUserDefinesAMicrometerOptionsBeanThenCommandLatencyRecorderUsesIt() { |
|
||||||
this.contextRunner.withBean(SimpleMeterRegistry.class) |
|
||||||
.withConfiguration(AutoConfigurations.of(DataRedisAutoConfiguration.class)) |
|
||||||
.withUserConfiguration(CustomMicrometerOptionsConfiguration.class) |
|
||||||
.run((context) -> { |
|
||||||
ClientResources clientResources = context.getBean(LettuceConnectionFactory.class).getClientResources(); |
|
||||||
assertThat(clientResources.commandLatencyRecorder()) |
|
||||||
.isInstanceOf(MicrometerCommandLatencyRecorder.class); |
|
||||||
assertThat(clientResources.commandLatencyRecorder()).hasFieldOrPropertyWithValue("options", |
|
||||||
context.getBean("customMicrometerOptions")); |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
@Test |
|
||||||
void whenThereIsNoMeterRegistryThenClientResourcesCustomizationBacksOff() { |
|
||||||
this.contextRunner.withConfiguration(AutoConfigurations.of(DataRedisAutoConfiguration.class)).run((context) -> { |
|
||||||
ClientResources clientResources = context.getBean(LettuceConnectionFactory.class).getClientResources(); |
|
||||||
assertThat(clientResources.commandLatencyRecorder()) |
|
||||||
.isNotInstanceOf(MicrometerCommandLatencyRecorder.class); |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
@Configuration(proxyBeanMethods = false) |
|
||||||
static class CustomMicrometerOptionsConfiguration { |
|
||||||
|
|
||||||
@Bean |
|
||||||
MicrometerOptions customMicrometerOptions() { |
|
||||||
return MicrometerOptions.create(); |
|
||||||
} |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
} |
|
||||||
@ -0,0 +1,61 @@ |
|||||||
|
/* |
||||||
|
* 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.data.redis.autoconfigure.observation; |
||||||
|
|
||||||
|
import io.lettuce.core.resource.ClientResources; |
||||||
|
import io.lettuce.core.tracing.MicrometerTracing; |
||||||
|
import io.micrometer.observation.tck.TestObservationRegistry; |
||||||
|
import org.junit.jupiter.api.Test; |
||||||
|
|
||||||
|
import org.springframework.boot.autoconfigure.AutoConfigurations; |
||||||
|
import org.springframework.boot.data.redis.autoconfigure.DataRedisAutoConfiguration; |
||||||
|
import org.springframework.boot.test.context.runner.ApplicationContextRunner; |
||||||
|
import org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory; |
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat; |
||||||
|
|
||||||
|
/** |
||||||
|
* Tests for {@link LettuceObservationAutoConfiguration}. |
||||||
|
* |
||||||
|
* @author Antonin Arquey |
||||||
|
* @author Stephane Nicoll |
||||||
|
*/ |
||||||
|
class LettuceObservationAutoConfigurationTests { |
||||||
|
|
||||||
|
private final ApplicationContextRunner contextRunner = new ApplicationContextRunner() |
||||||
|
.withConfiguration(AutoConfigurations.of(LettuceObservationAutoConfiguration.class)); |
||||||
|
|
||||||
|
@Test |
||||||
|
void whenThereIsAnObservationRegistryThenMicrometerTracingIsAdded() { |
||||||
|
this.contextRunner.withBean(TestObservationRegistry.class, TestObservationRegistry::create) |
||||||
|
.withConfiguration(AutoConfigurations.of(DataRedisAutoConfiguration.class)) |
||||||
|
.run((context) -> { |
||||||
|
ClientResources clientResources = context.getBean(LettuceConnectionFactory.class).getClientResources(); |
||||||
|
assertThat(clientResources.tracing()).isInstanceOf(MicrometerTracing.class); |
||||||
|
}); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
void whenThereIsNoObservationRegistryThenClientResourcesCustomizationBacksOff() { |
||||||
|
this.contextRunner.withConfiguration(AutoConfigurations.of(DataRedisAutoConfiguration.class)).run((context) -> { |
||||||
|
ClientResources clientResources = context.getBean(LettuceConnectionFactory.class).getClientResources(); |
||||||
|
assertThat(clientResources.tracing()).isNotInstanceOf(MicrometerTracing.class); |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
Loading…
Reference in new issue