X-Git-Url: http://juplo.de/gitweb/?a=blobdiff_plain;f=src%2Ftest%2Fjava%2Fde%2Fjuplo%2Fkafka%2FApplicationTests.java;h=c3fbe45724281fb38ab05cbc4de87b8b226472ac;hb=bf6e53f9941724fffeb9e254937bd261c028f666;hp=52ecc0f4d31056d693ab5a335f5113b3bece3351;hpb=37fce16f77b3833de727060137688ff176d9a577;p=demos%2Fkafka%2Ftraining diff --git a/src/test/java/de/juplo/kafka/ApplicationTests.java b/src/test/java/de/juplo/kafka/ApplicationTests.java index 52ecc0f..c3fbe45 100644 --- a/src/test/java/de/juplo/kafka/ApplicationTests.java +++ b/src/test/java/de/juplo/kafka/ApplicationTests.java @@ -1,12 +1,11 @@ package de.juplo.kafka; +import lombok.Value; import lombok.extern.slf4j.Slf4j; -import org.apache.kafka.clients.consumer.ConsumerRecord; import org.apache.kafka.clients.consumer.KafkaConsumer; import org.apache.kafka.clients.producer.KafkaProducer; import org.apache.kafka.clients.producer.ProducerRecord; import org.apache.kafka.common.TopicPartition; -import org.apache.kafka.common.errors.RecordDeserializationException; import org.apache.kafka.common.serialization.*; import org.apache.kafka.common.utils.Bytes; import org.junit.jupiter.api.*; @@ -18,18 +17,17 @@ import org.springframework.boot.test.context.TestConfiguration; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Import; import org.springframework.context.annotation.Primary; -import org.springframework.kafka.listener.MessageListenerContainer; +import org.springframework.kafka.listener.adapter.ConsumerRecordMetadata; import org.springframework.kafka.support.serializer.JsonSerializer; import org.springframework.kafka.test.context.EmbeddedKafka; import org.springframework.test.context.TestPropertySource; import org.springframework.test.context.junit.jupiter.SpringJUnitConfig; import java.time.Duration; +import java.time.LocalDateTime; import java.util.*; -import java.util.concurrent.ExecutionException; import java.util.function.BiConsumer; import java.util.function.BiFunction; -import java.util.function.Consumer; import java.util.stream.Collectors; import java.util.stream.IntStream; @@ -45,7 +43,6 @@ import static org.awaitility.Awaitility.*; EndlessConsumer.class, KafkaAutoConfiguration.class, ApplicationTests.Configuration.class }) -@TestMethodOrder(MethodOrderer.OrderAnnotation.class) @TestPropertySource( properties = { "spring.kafka.consumer.bootstrap-servers=${spring.embedded.kafka.brokers}", @@ -59,15 +56,11 @@ class ApplicationTests public static final int PARTITIONS = 10; - StringSerializer stringSerializer = new StringSerializer(); - @Autowired Serializer valueSerializer; @Autowired KafkaProducer kafkaProducer; @Autowired - org.apache.kafka.clients.consumer.Consumer kafkaConsumer; - @Autowired KafkaConsumer offsetConsumer; @Autowired ApplicationProperties applicationProperties; @@ -76,24 +69,51 @@ class ApplicationTests @Autowired EndlessConsumer endlessConsumer; @Autowired - RecordHandler recordHandler; + MessageHandler clientMessageHandler; + @Autowired + MessageHandler greetingsHandler; Map oldOffsets; Map newOffsets; - Set> receivedRecords; + Set received; /** Tests methods */ @Test - @Order(1) // << The poistion pill is not skipped. Hence, this test must run first - void commitsCurrentOffsetsOnSuccess() throws ExecutionException, InterruptedException + void commitsCurrentOffsetsOnSuccess() + { + send100Messages((key, counter) -> serializeAsClientMessage(key, counter)); + + await("100 records received") + .atMost(Duration.ofSeconds(30)) + .until(() -> received.size() == 100); + + await("Offsets committed") + .atMost(Duration.ofSeconds(10)) + .untilAsserted(() -> + { + checkSeenOffsetsForProgress(); + compareToCommitedOffsets(newOffsets); + }); + + assertThat(endlessConsumer.isRunning()) + .describedAs("Consumer should still be running") + .isTrue(); + } + + + @Test + void mixedMessages() { - send100Messages((key, counter) -> serialize(key, counter)); + send100Messages((key, counter) -> + counter%3 == 0 + ? serializeAsGreeting(key) + : serializeAsClientMessage(key, counter)); await("100 records received") .atMost(Duration.ofSeconds(30)) - .until(() -> receivedRecords.size() == 100); + .until(() -> received.size() == 100); await("Offsets committed") .atMost(Duration.ofSeconds(10)) @@ -109,17 +129,16 @@ class ApplicationTests } @Test - @Order(2) - void commitsCurrentOffsetsOnError() + void commitsCurrentOffsetsOnDeserializationError() { send100Messages((key, counter) -> counter == 77 - ? new Bytes(stringSerializer.serialize(TOPIC, "BOOM!")) - : serialize(key, counter)); + ? serializeString("BOOM!", "message") + : serializeAsClientMessage(key, counter)); await("99 records received") .atMost(Duration.ofSeconds(30)) - .until(() -> receivedRecords.size() == 99); + .until(() -> received.size() == 99); await("Offsets committed") .atMost(Duration.ofSeconds(10)) @@ -141,6 +160,35 @@ class ApplicationTests .isTrue(); } + @Test + void commitsOffsetOnProgramLogicErrorFoo() + { + clientMessageHandler.testHandler = (clientMessage, metadata) -> + { + if (Integer.parseInt(clientMessage.message)%10 ==0) + throw new RuntimeException("BOOM: " + clientMessage.message + "%10 == 0"); + }; + + send100Messages((key, counter) -> serializeAsClientMessage(key, counter)); + + await("80 records received") + .atMost(Duration.ofSeconds(30)) + .until(() -> received.size() == 100); + + await("Offsets committed") + .atMost(Duration.ofSeconds(10)) + .pollDelay(Duration.ofSeconds(1)) + .untilAsserted(() -> + { + checkSeenOffsetsForProgress(); + compareToCommitedOffsets(newOffsets); + }); + + assertThat(endlessConsumer.isRunning()) + .describedAs("Consumer should still be running") + .isTrue(); + } + /** Helper methods for the verification of expectations */ @@ -149,7 +197,7 @@ class ApplicationTests doForCurrentOffsets((tp, offset) -> { Long expected = offsetsToCheck.get(tp) + 1; - log.debug("Checking, if the offset for {} is {}", tp, expected); + log.debug("TEST: Comparing the expected offset of {} for {} to {}", expected, tp, offset); assertThat(offset) .describedAs("Committed offset corresponds to the offset of the consumer") .isEqualTo(expected); @@ -166,10 +214,11 @@ class ApplicationTests Long newOffset = newOffsets.get(tp); if (!oldOffset.equals(newOffset)) { - log.debug("Progress for {}: {} -> {}", tp, oldOffset, newOffset); + log.debug("TEST: Progress for {}: {} -> {}", tp, oldOffset, newOffset); withProgress.add(tp); } }); + log.debug("TEST: Offsets with progress: {}", withProgress); assertThat(withProgress) .describedAs("Some offsets must have changed, compared to the old offset-positions") .isNotEmpty(); @@ -195,7 +244,7 @@ class ApplicationTests } - void send100Messages(BiFunction messageGenerator) + void send100Messages(BiFunction recordGenerator) { long i = 0; @@ -203,22 +252,22 @@ class ApplicationTests { for (int key = 0; key < 10; key++) { - Bytes value = messageGenerator.apply(key, ++i); + BytesAndType bat = recordGenerator.apply(key, ++i); ProducerRecord record = new ProducerRecord<>( TOPIC, partition, Integer.toString(key%2), - value); + bat.getValue()); - record.headers().add("__TypeId__", "message".getBytes()); + record.headers().add("__TypeId__", bat.getType()); kafkaProducer.send(record, (metadata, e) -> { if (metadata != null) { log.debug( - "{}|{} - {}={}", + "TEST: Sending partition={}, offset={} - {}={}", metadata.partition(), metadata.offset(), record.key(), @@ -227,7 +276,7 @@ class ApplicationTests else { log.warn( - "Exception for {}={}: {}", + "TEST: Exception for {}={}: {}", record.key(), record.value(), e.toString()); @@ -237,11 +286,29 @@ class ApplicationTests } } - Bytes serialize(Integer key, Long value) + BytesAndType serializeAsClientMessage(Integer key, Long value) { ClientMessage message = new ClientMessage(); message.setClient(key.toString()); message.setMessage(value.toString()); + return new BytesAndType(serialize(message), "message"); + } + + BytesAndType serializeAsGreeting(Integer key) + { + Greeting greeting = new Greeting(); + greeting.setName(key.toString()); + greeting.setWhen(LocalDateTime.now()); + return new BytesAndType(serialize(greeting), "greeting"); + } + + BytesAndType serializeString(String message, String messageType) + { + return new BytesAndType(new Bytes(message.getBytes()), messageType); + } + + Bytes serialize(Object message) + { return new Bytes(valueSerializer.serialize(TOPIC, message)); } @@ -249,11 +316,12 @@ class ApplicationTests @BeforeEach public void init() { - recordHandler.testHandler = (record) -> {}; + clientMessageHandler.testHandler = (clientMessage, metadata) -> {}; + greetingsHandler.testHandler = (greeting, metadata) -> {}; oldOffsets = new HashMap<>(); newOffsets = new HashMap<>(); - receivedRecords = new HashSet<>(); + received = new HashSet<>(); doForCurrentOffsets((tp, offset) -> { @@ -261,15 +329,20 @@ class ApplicationTests newOffsets.put(tp, offset - 1); }); - recordHandler.captureOffsets = - record -> + BiConsumer captureOffsets = + (clientMessage, metadata) -> { - receivedRecords.add(record); + received.add(clientMessage); + log.debug("TEST: Processing record #{}: {}", received.size(), clientMessage); newOffsets.put( - new TopicPartition(record.topic(), record.partition()), - record.offset()); + new TopicPartition(metadata.topic(), metadata.partition()), metadata.offset()); }; + clientMessageHandler.captureOffsets = + (BiConsumer)captureOffsets; + greetingsHandler.captureOffsets = + (BiConsumer)captureOffsets; + endlessConsumer.start(); } @@ -282,22 +355,22 @@ class ApplicationTests } catch (Exception e) { - log.info("Exception while stopping the consumer: {}", e.toString()); + log.info("TEST: Exception while stopping the consumer: {}", e.toString()); } } - public static class RecordHandler implements Consumer> + public static class MessageHandler implements BiConsumer { - Consumer> captureOffsets; - Consumer> testHandler; + BiConsumer captureOffsets; + BiConsumer testHandler; @Override - public void accept(ConsumerRecord record) + public void accept(T message, ConsumerRecordMetadata metadata) { captureOffsets .andThen(testHandler) - .accept(record); + .accept(message, metadata); } } @@ -307,9 +380,16 @@ class ApplicationTests { @Primary @Bean - public Consumer> testHandler() + public MessageHandler messageHandler() + { + return new MessageHandler<>(); + } + + @Primary + @Bean + public MessageHandler greetingsHandler() { - return new RecordHandler(); + return new MessageHandler<>(); } @Bean @@ -343,4 +423,19 @@ class ApplicationTests return new KafkaConsumer<>(props); } } + + + @Value + static class BytesAndType + { + private final Bytes value; + private final byte[] type; + + + BytesAndType(Bytes value, String type) + { + this.value = value; + this.type = type.getBytes(); + } + } }