6f58180f03c4a6a0a4741af5e43ba2c5e6155ca5
[demos/kafka/training] / src / test / java / de / juplo / kafka / ApplicationTests.java
1 package de.juplo.kafka;
2
3 import lombok.extern.slf4j.Slf4j;
4 import org.apache.kafka.clients.consumer.ConsumerRecord;
5 import org.apache.kafka.clients.consumer.KafkaConsumer;
6 import org.apache.kafka.clients.producer.KafkaProducer;
7 import org.apache.kafka.clients.producer.ProducerRecord;
8 import org.apache.kafka.common.TopicPartition;
9 import org.apache.kafka.common.serialization.BytesDeserializer;
10 import org.apache.kafka.common.serialization.BytesSerializer;
11 import org.apache.kafka.common.serialization.LongSerializer;
12 import org.apache.kafka.common.serialization.StringSerializer;
13 import org.apache.kafka.common.utils.Bytes;
14 import org.junit.jupiter.api.*;
15 import org.springframework.beans.factory.annotation.Autowired;
16 import org.springframework.boot.test.context.ConfigDataApplicationContextInitializer;
17 import org.springframework.boot.test.context.TestConfiguration;
18 import org.springframework.context.annotation.Bean;
19 import org.springframework.context.annotation.Import;
20 import org.springframework.kafka.test.context.EmbeddedKafka;
21 import org.springframework.test.context.TestPropertySource;
22 import org.springframework.test.context.junit.jupiter.SpringJUnitConfig;
23
24 import java.time.Duration;
25 import java.util.*;
26 import java.util.concurrent.ExecutionException;
27 import java.util.concurrent.ExecutorService;
28 import java.util.function.BiConsumer;
29 import java.util.function.Consumer;
30 import java.util.function.Function;
31 import java.util.stream.Collectors;
32 import java.util.stream.IntStream;
33
34 import static de.juplo.kafka.ApplicationTests.PARTITIONS;
35 import static de.juplo.kafka.ApplicationTests.TOPIC;
36 import static org.assertj.core.api.Assertions.assertThat;
37 import static org.awaitility.Awaitility.*;
38
39
40 @SpringJUnitConfig(initializers = ConfigDataApplicationContextInitializer.class)
41 @TestMethodOrder(MethodOrderer.OrderAnnotation.class)
42 @TestPropertySource(
43                 properties = {
44                                 "consumer.bootstrap-server=${spring.embedded.kafka.brokers}",
45                                 "consumer.topic=" + TOPIC })
46 @EmbeddedKafka(topics = TOPIC, partitions = PARTITIONS)
47 @Slf4j
48 class ApplicationTests
49 {
50         public static final String TOPIC = "FOO";
51         public static final int PARTITIONS = 10;
52
53
54         StringSerializer stringSerializer = new StringSerializer();
55         LongSerializer longSerializer = new LongSerializer();
56
57         @Autowired
58         KafkaProducer<String, Bytes> kafkaProducer;
59         @Autowired
60         KafkaConsumer<String, Long> kafkaConsumer;
61         @Autowired
62         KafkaConsumer<Bytes, Bytes> offsetConsumer;
63         @Autowired
64         ApplicationProperties properties;
65         @Autowired
66         ExecutorService executor;
67
68         Consumer<ConsumerRecord<String, Long>> testHandler;
69         EndlessConsumer<String, Long> endlessConsumer;
70         Map<TopicPartition, Long> oldOffsets;
71         Map<TopicPartition, Long> newOffsets;
72
73
74         /** Tests methods */
75
76         @Test
77         @Order(1) // << The poistion pill is not skipped. Hence, this test must run first
78         void commitsCurrentOffsetsOnSuccess() throws ExecutionException, InterruptedException
79         {
80                 send100Messages(i ->  new Bytes(longSerializer.serialize(TOPIC, i)));
81
82                 Set<ConsumerRecord<String, Long>> received = new HashSet<>();
83                 testHandler = record -> received.add(record);
84
85                 await("100 records received")
86                                 .atMost(Duration.ofSeconds(30))
87                                 .until(() -> received.size() >= 100);
88
89                 await("Offsets committed")
90                                 .atMost(Duration.ofSeconds(10))
91                                 .untilAsserted(() ->
92                                 {
93                                         checkSeenOffsetsForProgress();
94                                         compareToCommitedOffsets(newOffsets);
95                                 });
96         }
97
98         @Test
99         @Order(2)
100         void commitsOffsetOfErrorForReprocessingOnError()
101         {
102                 send100Messages(counter ->
103                                 counter == 77
104                                                 ? new Bytes(stringSerializer.serialize(TOPIC, "BOOM!"))
105                                                 : new Bytes(longSerializer.serialize(TOPIC, counter)));
106
107                 await("Consumer failed")
108                                 .atMost(Duration.ofSeconds(30))
109                                 .until(() -> !endlessConsumer.running());
110
111                 checkSeenOffsetsForProgress();
112                 compareToCommitedOffsets(newOffsets);
113
114                 endlessConsumer.start();
115                 await("Consumer failed")
116                                 .atMost(Duration.ofSeconds(30))
117                                 .until(() -> !endlessConsumer.running());
118
119                 checkSeenOffsetsForProgress();
120                 compareToCommitedOffsets(newOffsets);
121         }
122
123
124         /** Helper methods for the verification of expectations */
125
126         void compareToCommitedOffsets(Map<TopicPartition, Long> offsetsToCheck)
127         {
128                 doForCurrentOffsets((tp, offset) ->
129                 {
130                         Long expected = offsetsToCheck.get(tp) + 1;
131                         log.debug("Checking, if the offset for {} is {}", tp, expected);
132                         assertThat(offset).isEqualTo(expected);
133                 });
134         }
135
136         void checkSeenOffsetsForProgress()
137         {
138                 // Be sure, that some messages were consumed...!
139                 Set<TopicPartition> withProgress = new HashSet<>();
140                 partitions().forEach(tp ->
141                 {
142                         Long oldOffset = oldOffsets.get(tp);
143                         Long newOffset = newOffsets.get(tp);
144                         if (!oldOffset.equals(newOffset))
145                         {
146                                 log.debug("Progress for {}: {} -> {}", tp, oldOffset, newOffset);
147                                 withProgress.add(tp);
148                         }
149                 });
150                 assertThat(withProgress).isNotEmpty().describedAs("Found no partitions with any offset-progress");
151         }
152
153
154         /** Helper methods for setting up and running the tests */
155
156         void doForCurrentOffsets(BiConsumer<TopicPartition, Long> consumer)
157         {
158                 offsetConsumer.assign(partitions());
159                 partitions().forEach(tp -> consumer.accept(tp, offsetConsumer.position(tp)));
160                 offsetConsumer.unsubscribe();
161         }
162
163         List<TopicPartition> partitions()
164         {
165                 return
166                                 IntStream
167                                                 .range(0, PARTITIONS)
168                                                 .mapToObj(partition -> new TopicPartition(TOPIC, partition))
169                                                 .collect(Collectors.toList());
170         }
171
172
173         void send100Messages(Function<Long, Bytes> messageGenerator)
174         {
175                 long i = 0;
176
177                 for (int partition = 0; partition < 10; partition++)
178                 {
179                         for (int key = 0; key < 10; key++)
180                         {
181                                 Bytes value = messageGenerator.apply(++i);
182
183                                 ProducerRecord<String, Bytes> record =
184                                                 new ProducerRecord<>(
185                                                                 TOPIC,
186                                                                 partition,
187                                                                 Integer.toString(key%2),
188                                                                 value);
189
190                                 kafkaProducer.send(record, (metadata, e) ->
191                                 {
192                                         if (metadata != null)
193                                         {
194                                                 log.debug(
195                                                                 "{}|{} - {}={}",
196                                                                 metadata.partition(),
197                                                                 metadata.offset(),
198                                                                 record.key(),
199                                                                 record.value());
200                                         }
201                                         else
202                                         {
203                                                 log.warn(
204                                                                 "Exception for {}={}: {}",
205                                                                 record.key(),
206                                                                 record.value(),
207                                                                 e.toString());
208                                         }
209                                 });
210                         }
211                 }
212         }
213
214
215         @BeforeEach
216         public void init()
217         {
218                 testHandler = record -> {} ;
219
220                 oldOffsets = new HashMap<>();
221                 newOffsets = new HashMap<>();
222
223                 doForCurrentOffsets((tp, offset) ->
224                 {
225                         oldOffsets.put(tp, offset - 1);
226                         newOffsets.put(tp, offset - 1);
227                 });
228
229                 Consumer<ConsumerRecord<String, Long>> captureOffsetAndExecuteTestHandler =
230                                 record ->
231                                 {
232                                         newOffsets.put(
233                                                         new TopicPartition(record.topic(), record.partition()),
234                                                         record.offset());
235                                         testHandler.accept(record);
236                                 };
237
238                 endlessConsumer =
239                                 new EndlessConsumer<>(
240                                                 executor,
241                                                 properties.getClientId(),
242                                                 properties.getTopic(),
243                                                 kafkaConsumer,
244                                                 captureOffsetAndExecuteTestHandler);
245
246                 endlessConsumer.start();
247         }
248
249         @AfterEach
250         public void deinit()
251         {
252                 try
253                 {
254                         endlessConsumer.stop();
255                 }
256                 catch (Exception e)
257                 {
258                         log.info("Exception while stopping the consumer: {}", e.toString());
259                 }
260         }
261
262
263         @TestConfiguration
264         @Import(ApplicationConfiguration.class)
265         public static class Configuration
266         {
267                 @Bean
268                 KafkaProducer<String, Bytes> kafkaProducer(ApplicationProperties properties)
269                 {
270                         Properties props = new Properties();
271                         props.put("bootstrap.servers", properties.getBootstrapServer());
272                         props.put("linger.ms", 100);
273                         props.put("key.serializer", StringSerializer.class.getName());
274                         props.put("value.serializer", BytesSerializer.class.getName());
275
276                         return new KafkaProducer<>(props);
277                 }
278
279                 @Bean
280                 KafkaConsumer<Bytes, Bytes> offsetConsumer(ApplicationProperties properties)
281                 {
282                         Properties props = new Properties();
283                         props.put("bootstrap.servers", properties.getBootstrapServer());
284                         props.put("client.id", "OFFSET-CONSUMER");
285                         props.put("group.id", properties.getGroupId());
286                         props.put("key.deserializer", BytesDeserializer.class.getName());
287                         props.put("value.deserializer", BytesDeserializer.class.getName());
288
289                         return new KafkaConsumer<>(props);
290                 }
291         }
292 }