Merge branch '3.2.x'

Closes gh-40467
This commit is contained in:
Andy Wilkinson 2024-04-22 12:11:04 +01:00
commit 4118de7f59
5 changed files with 46 additions and 24 deletions

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2012-2023 the original author or authors. * Copyright 2012-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -113,8 +113,10 @@ class PropertiesRedisConnectionDetails implements RedisConnectionDetails {
} }
private Node asNode(String node) { private Node asNode(String node) {
String[] components = node.split(":"); int portSeparatorIndex = node.lastIndexOf(':');
return new Node(components[0], Integer.parseInt(components[1])); String host = node.substring(0, portSeparatorIndex);
int port = Integer.parseInt(node.substring(portSeparatorIndex + 1));
return new Node(host, port);
} }
} }

View File

@ -123,8 +123,8 @@ abstract class RedisConnectionConfiguration {
} }
RedisProperties.Cluster clusterProperties = this.properties.getCluster(); RedisProperties.Cluster clusterProperties = this.properties.getCluster();
if (this.connectionDetails.getCluster() != null) { if (this.connectionDetails.getCluster() != null) {
RedisClusterConfiguration config = new RedisClusterConfiguration( RedisClusterConfiguration config = new RedisClusterConfiguration();
getNodes(this.connectionDetails.getCluster())); config.setClusterNodes(getNodes(this.connectionDetails.getCluster()));
if (clusterProperties != null && clusterProperties.getMaxRedirects() != null) { if (clusterProperties != null && clusterProperties.getMaxRedirects() != null) {
config.setMaxRedirects(clusterProperties.getMaxRedirects()); config.setMaxRedirects(clusterProperties.getMaxRedirects());
} }
@ -138,8 +138,12 @@ abstract class RedisConnectionConfiguration {
return null; return null;
} }
private List<String> getNodes(Cluster cluster) { private List<RedisNode> getNodes(Cluster cluster) {
return cluster.getNodes().stream().map((node) -> "%s:%d".formatted(node.host(), node.port())).toList(); return cluster.getNodes().stream().map(this::asRedisNode).toList();
}
private RedisNode asRedisNode(Node node) {
return new RedisNode(node.host(), node.port());
} }
protected final RedisProperties getProperties() { protected final RedisProperties getProperties() {
@ -162,7 +166,7 @@ abstract class RedisConnectionConfiguration {
private List<RedisNode> createSentinels(Sentinel sentinel) { private List<RedisNode> createSentinels(Sentinel sentinel) {
List<RedisNode> nodes = new ArrayList<>(); List<RedisNode> nodes = new ArrayList<>();
for (Node node : sentinel.getNodes()) { for (Node node : sentinel.getNodes()) {
nodes.add(new RedisNode(node.host(), node.port())); nodes.add(asRedisNode(node));
} }
return nodes; return nodes;
} }

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2012-2023 the original author or authors. * Copyright 2012-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2012-2023 the original author or authors. * Copyright 2012-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -20,6 +20,8 @@ import java.util.List;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
import org.springframework.boot.autoconfigure.data.redis.RedisConnectionDetails.Node;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
@ -119,12 +121,21 @@ class PropertiesRedisConnectionDetailsTests {
@Test @Test
void clusterIsConfigured() { void clusterIsConfigured() {
RedisProperties.Cluster cluster = new RedisProperties.Cluster(); RedisProperties.Cluster cluster = new RedisProperties.Cluster();
cluster.setNodes(List.of("first:1111", "second:2222", "third:3333")); cluster.setNodes(List.of("localhost:1111", "127.0.0.1:2222", "[::1]:3333"));
this.properties.setCluster(cluster); this.properties.setCluster(cluster);
PropertiesRedisConnectionDetails connectionDetails = new PropertiesRedisConnectionDetails(this.properties); PropertiesRedisConnectionDetails connectionDetails = new PropertiesRedisConnectionDetails(this.properties);
assertThat(connectionDetails.getCluster().getNodes()).containsExactly( assertThat(connectionDetails.getCluster().getNodes()).containsExactly(new Node("localhost", 1111),
new RedisConnectionDetails.Node("first", 1111), new RedisConnectionDetails.Node("second", 2222), new Node("127.0.0.1", 2222), new Node("[::1]", 3333));
new RedisConnectionDetails.Node("third", 3333)); }
@Test
void sentinelIsConfigured() {
RedisProperties.Sentinel sentinel = new RedisProperties.Sentinel();
sentinel.setNodes(List.of("localhost:1111", "127.0.0.1:2222", "[::1]:3333"));
this.properties.setSentinel(sentinel);
PropertiesRedisConnectionDetails connectionDetails = new PropertiesRedisConnectionDetails(this.properties);
assertThat(connectionDetails.getSentinel().getNodes()).containsExactly(new Node("localhost", 1111),
new Node("127.0.0.1", 2222), new Node("[::1]", 3333));
} }
} }

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2012-2023 the original author or authors. * Copyright 2012-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -312,8 +312,13 @@ class RedisAutoConfigurationTests {
this.contextRunner this.contextRunner
.withPropertyValues("spring.data.redis.sentinel.master:mymaster", .withPropertyValues("spring.data.redis.sentinel.master:mymaster",
"spring.data.redis.sentinel.nodes:" + StringUtils.collectionToCommaDelimitedString(sentinels)) "spring.data.redis.sentinel.nodes:" + StringUtils.collectionToCommaDelimitedString(sentinels))
.run((context) -> assertThat(context.getBean(LettuceConnectionFactory.class).isRedisSentinelAware()) .run((context) -> {
.isTrue()); LettuceConnectionFactory connectionFactory = context.getBean(LettuceConnectionFactory.class);
assertThat(connectionFactory.isRedisSentinelAware()).isTrue();
assertThat(connectionFactory.getSentinelConfiguration().getSentinels()).isNotNull()
.containsExactlyInAnyOrder(new RedisNode("[0:0:0:0:0:0:0:1]", 26379),
new RedisNode("[0:0:0:0:0:0:0:1]", 26380));
});
} }
@Test @Test
@ -398,19 +403,19 @@ class RedisAutoConfigurationTests {
@Test @Test
void testRedisConfigurationWithCluster() { void testRedisConfigurationWithCluster() {
List<String> clusterNodes = Arrays.asList("127.0.0.1:27379", "127.0.0.1:27380"); List<String> clusterNodes = Arrays.asList("127.0.0.1:27379", "127.0.0.1:27380", "[::1]:27381");
this.contextRunner this.contextRunner
.withPropertyValues("spring.data.redis.cluster.nodes[0]:" + clusterNodes.get(0), .withPropertyValues("spring.data.redis.cluster.nodes[0]:" + clusterNodes.get(0),
"spring.data.redis.cluster.nodes[1]:" + clusterNodes.get(1)) "spring.data.redis.cluster.nodes[1]:" + clusterNodes.get(1),
"spring.data.redis.cluster.nodes[2]:" + clusterNodes.get(2))
.run((context) -> { .run((context) -> {
RedisClusterConfiguration clusterConfiguration = context.getBean(LettuceConnectionFactory.class) RedisClusterConfiguration clusterConfiguration = context.getBean(LettuceConnectionFactory.class)
.getClusterConfiguration(); .getClusterConfiguration();
assertThat(clusterConfiguration.getClusterNodes()).hasSize(2); assertThat(clusterConfiguration.getClusterNodes()).hasSize(3);
assertThat(clusterConfiguration.getClusterNodes()) assertThat(clusterConfiguration.getClusterNodes()).containsExactlyInAnyOrder(
.extracting((node) -> node.getHost() + ":" + node.getPort()) new RedisNode("127.0.0.1", 27379), new RedisNode("127.0.0.1", 27380),
.containsExactlyInAnyOrder("127.0.0.1:27379", "127.0.0.1:27380"); new RedisNode("[::1]", 27381));
}); });
} }
@Test @Test