-
Notifications
You must be signed in to change notification settings - Fork 417
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Duy Le Van
committed
Oct 16, 2024
1 parent
b44442f
commit c50716e
Showing
10 changed files
with
300 additions
and
74 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
43 changes: 43 additions & 0 deletions
43
common-library/src/it/java/common/container/ContainerFactory.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,43 @@ | ||
package common.container; | ||
|
||
import dasniko.testcontainers.keycloak.KeycloakContainer; | ||
import org.springframework.test.context.DynamicPropertyRegistry; | ||
import org.testcontainers.containers.KafkaContainer; | ||
import org.testcontainers.utility.DockerImageName; | ||
|
||
public final class ContainerFactory { | ||
|
||
private ContainerFactory() {} | ||
|
||
public static KeycloakContainer keycloakContainer(DynamicPropertyRegistry registry) { | ||
KeycloakContainer keycloak = new KeycloakContainer() | ||
.withRealmImportFiles("/test-realm.json") | ||
.withReuse(true); | ||
|
||
registry.add( | ||
"spring.security.oauth2.resourceserver.jwt.issuer-uri", | ||
() -> "%s%s".formatted(keycloak.getAuthServerUrl(), "/realms/quarkus") | ||
); | ||
registry.add( | ||
"spring.security.oauth2.resourceserver.jwt.jwk-set-uri", | ||
() -> "%s%s".formatted(keycloak.getAuthServerUrl(), "/realms/quarkus/protocol/openid-connect/certs") | ||
); | ||
return keycloak; | ||
} | ||
|
||
public static KafkaContainer kafkaContainer(DynamicPropertyRegistry registry, String version) { | ||
var kafkaContainer = new KafkaContainer( | ||
DockerImageName.parse("confluentinc/cp-kafka:%s".formatted(version)) | ||
); | ||
registry.add("spring.kafka.bootstrap-servers", kafkaContainer::getBootstrapServers); | ||
|
||
// Consumer properties | ||
registry.add("auto.offset.reset", () -> "earliest"); | ||
registry.add("spring.kafka.producer.bootstrap-servers", kafkaContainer::getBootstrapServers); | ||
|
||
// Producer properties | ||
registry.add("spring.kafka.consumer.bootstrap-servers", kafkaContainer::getBootstrapServers); | ||
return kafkaContainer; | ||
} | ||
|
||
} |
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
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
32 changes: 32 additions & 0 deletions
32
search/src/it/java/com/yas/search/config/KafkaIntegrationTestConfiguration.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,32 @@ | ||
package com.yas.search.config; | ||
|
||
import common.container.ContainerFactory; | ||
import org.springframework.beans.factory.annotation.Value; | ||
import org.springframework.boot.test.context.TestConfiguration; | ||
import org.springframework.boot.testcontainers.service.connection.ServiceConnection; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.test.context.DynamicPropertyRegistry; | ||
import org.testcontainers.containers.KafkaContainer; | ||
|
||
@TestConfiguration | ||
public class KafkaIntegrationTestConfiguration { | ||
|
||
@Value("${kafka.version}") | ||
private String kafkaVersion; | ||
|
||
@Value("${elasticsearch.version}") | ||
private String elasticSearchVersion; | ||
|
||
@Bean | ||
@ServiceConnection | ||
public KafkaContainer kafkaContainer(DynamicPropertyRegistry registry) { | ||
return ContainerFactory.kafkaContainer(registry, kafkaVersion); | ||
} | ||
|
||
@Bean | ||
@ServiceConnection | ||
public ElasticTestContainer elasticTestContainer() { | ||
return new ElasticTestContainer(elasticSearchVersion); | ||
} | ||
|
||
} |
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
70 changes: 70 additions & 0 deletions
70
search/src/it/java/com/yas/search/kafka/CdcConsumerTest.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,70 @@ | ||
package com.yas.search.kafka; | ||
|
||
import com.yas.search.config.KafkaIntegrationTestConfiguration; | ||
import java.util.HashMap; | ||
import java.util.Map; | ||
import java.util.concurrent.ExecutionException; | ||
import java.util.concurrent.TimeUnit; | ||
import java.util.concurrent.TimeoutException; | ||
import lombok.Getter; | ||
import org.apache.kafka.clients.producer.ProducerConfig; | ||
import org.apache.kafka.common.serialization.StringSerializer; | ||
import org.jetbrains.annotations.NotNull; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.context.annotation.Import; | ||
import org.springframework.kafka.core.DefaultKafkaProducerFactory; | ||
import org.springframework.kafka.core.KafkaTemplate; | ||
import org.springframework.kafka.support.serializer.JsonSerializer; | ||
import org.testcontainers.containers.KafkaContainer; | ||
|
||
@Getter | ||
@Import(KafkaIntegrationTestConfiguration.class) | ||
public abstract class CdcConsumerTest<M> { | ||
|
||
private final Logger logger = LoggerFactory.getLogger(CdcConsumerTest.class); | ||
|
||
private final Class<M> messageType; | ||
|
||
@Autowired | ||
private KafkaContainer kafkaContainer; | ||
|
||
private KafkaTemplate<String, M> kafkaTemplate; | ||
|
||
public abstract String getCdcTopic(); | ||
|
||
public CdcConsumerTest(Class<M> messageType) { | ||
this.messageType = messageType; | ||
} | ||
|
||
public synchronized KafkaTemplate<String, M> getKafkaTemplate() { | ||
// Now, we haven't had any process need Kafka Producer, then just temporary config producer like this for testing | ||
if (kafkaTemplate == null) { | ||
synchronized (this) { | ||
final Map<String, Object> props = getProducerProps(); | ||
kafkaTemplate = new KafkaTemplate<>(new DefaultKafkaProducerFactory<String, M>(props)); | ||
} | ||
} | ||
return kafkaTemplate; | ||
} | ||
|
||
protected void sendMsg(M message) | ||
throws InterruptedException, ExecutionException, TimeoutException { | ||
var rs = getKafkaTemplate() | ||
.send(getCdcTopic(), message) | ||
.get(10, TimeUnit.SECONDS); | ||
logger.info("Sent message completed: {}", rs); | ||
} | ||
|
||
private @NotNull Map<String, Object> getProducerProps() { | ||
final Map<String, Object> props = new HashMap<>(); | ||
props.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, kafkaContainer.getBootstrapServers()); | ||
props.put(ProducerConfig.ACKS_CONFIG, "all"); | ||
props.put(ProducerConfig.RETRIES_CONFIG, 0); | ||
props.put(ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG, StringSerializer.class); | ||
props.put(ProducerConfig.VALUE_SERIALIZER_CLASS_CONFIG, JsonSerializer.class); | ||
return props; | ||
} | ||
} | ||
|
Oops, something went wrong.