Browse Source
This commit review the original upgrade to retain compatiblity with the deprecated Cassandra and ConfluentKafka containers. This commit also fixes the SSL Cassandra tests. The new container uses a custom wait strategy that uses plain text and does not work with an SSL container. Closes gh-42670 Co-authored-by: Moritz Halbritter <moritz.halbritter@broadcom.com>pull/42707/head
7 changed files with 336 additions and 0 deletions
@ -0,0 +1,69 @@
@@ -0,0 +1,69 @@
|
||||
/* |
||||
* Copyright 2012-2024 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.testcontainers.service.connection.cassandra; |
||||
|
||||
import com.datastax.oss.driver.api.core.CqlSession; |
||||
import org.junit.jupiter.api.Test; |
||||
import org.testcontainers.containers.CassandraContainer; |
||||
import org.testcontainers.junit.jupiter.Container; |
||||
import org.testcontainers.junit.jupiter.Testcontainers; |
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.boot.autoconfigure.ImportAutoConfiguration; |
||||
import org.springframework.boot.autoconfigure.cassandra.CassandraAutoConfiguration; |
||||
import org.springframework.boot.autoconfigure.cassandra.CassandraConnectionDetails; |
||||
import org.springframework.boot.testcontainers.service.connection.ServiceConnection; |
||||
import org.springframework.boot.testsupport.container.TestImage; |
||||
import org.springframework.context.annotation.Configuration; |
||||
import org.springframework.test.context.junit.jupiter.SpringJUnitConfig; |
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat; |
||||
|
||||
/** |
||||
* Tests for {@link DeprecatedCassandraContainerConnectionDetailsFactory}. |
||||
* |
||||
* @author Andy Wilkinson |
||||
* @deprecated since 3.4.0 for removal in 3.6.0 |
||||
*/ |
||||
@SpringJUnitConfig |
||||
@Testcontainers(disabledWithoutDocker = true) |
||||
@Deprecated(since = "3.4.0", forRemoval = true) |
||||
class DeprecatedCassandraContainerConnectionDetailsFactoryTests { |
||||
|
||||
@Container |
||||
@ServiceConnection |
||||
static final CassandraContainer<?> cassandra = TestImage.container(CassandraContainer.class); |
||||
|
||||
@Autowired(required = false) |
||||
private CassandraConnectionDetails connectionDetails; |
||||
|
||||
@Autowired |
||||
private CqlSession cqlSession; |
||||
|
||||
@Test |
||||
void connectionCanBeMadeToCassandraContainer() { |
||||
assertThat(this.connectionDetails).isNotNull(); |
||||
assertThat(this.cqlSession.getMetadata().getNodes()).hasSize(1); |
||||
} |
||||
|
||||
@Configuration(proxyBeanMethods = false) |
||||
@ImportAutoConfiguration(CassandraAutoConfiguration.class) |
||||
static class TestConfiguration { |
||||
|
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,97 @@
@@ -0,0 +1,97 @@
|
||||
/* |
||||
* Copyright 2012-2024 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.testcontainers.service.connection.kafka; |
||||
|
||||
import java.time.Duration; |
||||
import java.util.ArrayList; |
||||
import java.util.List; |
||||
|
||||
import org.awaitility.Awaitility; |
||||
import org.junit.jupiter.api.Test; |
||||
import org.testcontainers.containers.KafkaContainer; |
||||
import org.testcontainers.junit.jupiter.Container; |
||||
import org.testcontainers.junit.jupiter.Testcontainers; |
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.boot.autoconfigure.ImportAutoConfiguration; |
||||
import org.springframework.boot.autoconfigure.kafka.KafkaAutoConfiguration; |
||||
import org.springframework.boot.testcontainers.service.connection.ServiceConnection; |
||||
import org.springframework.boot.testsupport.container.TestImage; |
||||
import org.springframework.context.annotation.Bean; |
||||
import org.springframework.context.annotation.Configuration; |
||||
import org.springframework.kafka.annotation.KafkaListener; |
||||
import org.springframework.kafka.core.KafkaTemplate; |
||||
import org.springframework.test.context.TestPropertySource; |
||||
import org.springframework.test.context.junit.jupiter.SpringJUnitConfig; |
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat; |
||||
|
||||
/** |
||||
* Tests for {@link DeprecatedConfluentKafkaContainerConnectionDetailsFactory}. |
||||
* |
||||
* @author Moritz Halbritter |
||||
* @author Andy Wilkinson |
||||
* @author Phillip Webb |
||||
* @deprecated since 3.4.0 for removal in 3.6.0 |
||||
*/ |
||||
@SpringJUnitConfig |
||||
@Testcontainers(disabledWithoutDocker = true) |
||||
@TestPropertySource(properties = { "spring.kafka.consumer.group-id=test-group", |
||||
"spring.kafka.consumer.auto-offset-reset=earliest" }) |
||||
@Deprecated(since = "3.4.0", forRemoval = true) |
||||
class DeprecatedConfluentKafkaContainerConnectionDetailsFactoryIntegrationTests { |
||||
|
||||
@Container |
||||
@ServiceConnection |
||||
static final KafkaContainer kafka = TestImage.container(KafkaContainer.class); |
||||
|
||||
@Autowired |
||||
private KafkaTemplate<String, String> kafkaTemplate; |
||||
|
||||
@Autowired |
||||
private TestListener listener; |
||||
|
||||
@Test |
||||
void connectionCanBeMadeToKafkaContainer() { |
||||
this.kafkaTemplate.send("test-topic", "test-data"); |
||||
Awaitility.waitAtMost(Duration.ofMinutes(4)) |
||||
.untilAsserted(() -> assertThat(this.listener.messages).containsExactly("test-data")); |
||||
} |
||||
|
||||
@Configuration(proxyBeanMethods = false) |
||||
@ImportAutoConfiguration(KafkaAutoConfiguration.class) |
||||
static class TestConfiguration { |
||||
|
||||
@Bean |
||||
TestListener testListener() { |
||||
return new TestListener(); |
||||
} |
||||
|
||||
} |
||||
|
||||
static class TestListener { |
||||
|
||||
private final List<String> messages = new ArrayList<>(); |
||||
|
||||
@KafkaListener(topics = "test-topic") |
||||
void processMessage(String message) { |
||||
this.messages.add(message); |
||||
} |
||||
|
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,83 @@
@@ -0,0 +1,83 @@
|
||||
/* |
||||
* Copyright 2012-2023 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.testcontainers.service.connection.cassandra; |
||||
|
||||
import java.net.InetSocketAddress; |
||||
import java.util.List; |
||||
|
||||
import org.testcontainers.containers.CassandraContainer; |
||||
|
||||
import org.springframework.boot.autoconfigure.cassandra.CassandraConnectionDetails; |
||||
import org.springframework.boot.testcontainers.service.connection.ContainerConnectionDetailsFactory; |
||||
import org.springframework.boot.testcontainers.service.connection.ContainerConnectionSource; |
||||
import org.springframework.boot.testcontainers.service.connection.ServiceConnection; |
||||
|
||||
/** |
||||
* {@link ContainerConnectionDetailsFactory} to create {@link CassandraConnectionDetails} |
||||
* from a {@link ServiceConnection @ServiceConnection}-annotated |
||||
* {@link CassandraContainer}. |
||||
* |
||||
* @author Moritz Halbritter |
||||
* @author Andy Wilkinson |
||||
* @author Phillip Webb |
||||
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of |
||||
* {@link CassandraContainerConnectionDetailsFactory}. |
||||
*/ |
||||
@Deprecated(since = "3.4.0", forRemoval = true) |
||||
class DeprecatedCassandraContainerConnectionDetailsFactory |
||||
extends ContainerConnectionDetailsFactory<CassandraContainer<?>, CassandraConnectionDetails> { |
||||
|
||||
@Override |
||||
protected CassandraConnectionDetails getContainerConnectionDetails( |
||||
ContainerConnectionSource<CassandraContainer<?>> source) { |
||||
return new CassandraContainerConnectionDetails(source); |
||||
} |
||||
|
||||
/** |
||||
* {@link CassandraConnectionDetails} backed by a {@link ContainerConnectionSource}. |
||||
*/ |
||||
private static final class CassandraContainerConnectionDetails |
||||
extends ContainerConnectionDetails<CassandraContainer<?>> implements CassandraConnectionDetails { |
||||
|
||||
private CassandraContainerConnectionDetails(ContainerConnectionSource<CassandraContainer<?>> source) { |
||||
super(source); |
||||
} |
||||
|
||||
@Override |
||||
public List<Node> getContactPoints() { |
||||
InetSocketAddress contactPoint = getContainer().getContactPoint(); |
||||
return List.of(new Node(contactPoint.getHostString(), contactPoint.getPort())); |
||||
} |
||||
|
||||
@Override |
||||
public String getUsername() { |
||||
return getContainer().getUsername(); |
||||
} |
||||
|
||||
@Override |
||||
public String getPassword() { |
||||
return getContainer().getPassword(); |
||||
} |
||||
|
||||
@Override |
||||
public String getLocalDatacenter() { |
||||
return getContainer().getLocalDatacenter(); |
||||
} |
||||
|
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,64 @@
@@ -0,0 +1,64 @@
|
||||
/* |
||||
* Copyright 2012-2024 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.testcontainers.service.connection.kafka; |
||||
|
||||
import java.util.List; |
||||
|
||||
import org.testcontainers.containers.KafkaContainer; |
||||
|
||||
import org.springframework.boot.autoconfigure.kafka.KafkaConnectionDetails; |
||||
import org.springframework.boot.testcontainers.service.connection.ContainerConnectionDetailsFactory; |
||||
import org.springframework.boot.testcontainers.service.connection.ContainerConnectionSource; |
||||
import org.springframework.boot.testcontainers.service.connection.ServiceConnection; |
||||
|
||||
/** |
||||
* {@link ContainerConnectionDetailsFactory} to create {@link KafkaConnectionDetails} from |
||||
* a {@link ServiceConnection @ServiceConnection}-annotated {@link KafkaContainer}. |
||||
* |
||||
* @author Moritz Halbritter |
||||
* @author Andy Wilkinson |
||||
* @author Phillip Webb |
||||
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of |
||||
* {@link ConfluentKafkaContainerConnectionDetailsFactory}. |
||||
*/ |
||||
@Deprecated(since = "3.4.0", forRemoval = true) |
||||
class DeprecatedConfluentKafkaContainerConnectionDetailsFactory |
||||
extends ContainerConnectionDetailsFactory<KafkaContainer, KafkaConnectionDetails> { |
||||
|
||||
@Override |
||||
protected KafkaConnectionDetails getContainerConnectionDetails(ContainerConnectionSource<KafkaContainer> source) { |
||||
return new ConfluentKafkaContainerConnectionDetails(source); |
||||
} |
||||
|
||||
/** |
||||
* {@link KafkaConnectionDetails} backed by a {@link ContainerConnectionSource}. |
||||
*/ |
||||
private static final class ConfluentKafkaContainerConnectionDetails |
||||
extends ContainerConnectionDetails<KafkaContainer> implements KafkaConnectionDetails { |
||||
|
||||
private ConfluentKafkaContainerConnectionDetails(ContainerConnectionSource<KafkaContainer> source) { |
||||
super(source); |
||||
} |
||||
|
||||
@Override |
||||
public List<String> getBootstrapServers() { |
||||
return List.of(getContainer().getBootstrapServers()); |
||||
} |
||||
|
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue