b7d3e7fa2abbfe5e731143411fecdd7506c9d54c
[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.junit.jupiter.api.*;
6 import org.springframework.beans.factory.annotation.Autowired;
7 import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
8 import org.springframework.boot.test.context.SpringBootTest;
9 import org.springframework.boot.test.context.TestConfiguration;
10 import org.springframework.context.annotation.Bean;
11 import org.springframework.http.MediaType;
12 import org.springframework.kafka.annotation.KafkaListener;
13 import org.springframework.kafka.test.context.EmbeddedKafka;
14 import org.springframework.test.web.servlet.MockMvc;
15
16 import java.time.Duration;
17 import java.util.LinkedList;
18 import java.util.List;
19
20 import static de.juplo.kafka.ApplicationTests.PARTITIONS;
21 import static de.juplo.kafka.ApplicationTests.TOPIC;
22 import static org.awaitility.Awaitility.*;
23 import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post;
24 import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
25
26
27 @SpringBootTest(
28                 properties = {
29                                 "spring.kafka.consumer.bootstrap-servers=${spring.embedded.kafka.brokers}",
30                                 "sumup.gateway.bootstrap-server=${spring.embedded.kafka.brokers}",
31                                 "sumup.gateway.topic=" + TOPIC})
32 @AutoConfigureMockMvc
33 @EmbeddedKafka(topics = TOPIC, partitions = PARTITIONS)
34 @Slf4j
35 public class ApplicationTests
36 {
37         static final String TOPIC = "FOO";
38         static final int PARTITIONS = 10;
39
40         @Autowired
41         MockMvc mockMvc;
42         @Autowired
43         Consumer consumer;
44
45
46         @BeforeEach
47         public void clear()
48         {
49                 consumer.received.clear();
50         }
51
52
53         @Test
54         void testSendMessage() throws Exception
55         {
56                 mockMvc
57                                 .perform(post("/peter")
58                                                 .content("66")
59                                                 .contentType(MediaType.APPLICATION_JSON))
60                                 .andExpect(status().isOk());
61                 await("Message was send")
62                                 .atMost(Duration.ofSeconds(5))
63                                 .until(() -> consumer.received.size() == 1);
64         }
65
66
67         static class Consumer
68         {
69                 final List<ConsumerRecord<String, String>> received = new LinkedList<>();
70
71                 @KafkaListener(groupId = "TEST", topics = TOPIC)
72                 public void receive(ConsumerRecord<String, String> record)
73                 {
74                         log.debug("Received message: {}", record);
75                         received.add(record);
76                 }
77         }
78
79         @TestConfiguration
80         static class Configuration
81         {
82                 @Bean
83                 Consumer consumer()
84                 {
85                         return new Consumer();
86                 }
87         }
88 }