我们正在使用cucumber对out应用程序进行一些集成测试,在测试时遇到了一些问题 @KafkaListener
. 我们设法使用了一个嵌入式Kafka,并在其中生成数据。
但消费者从未收到任何数据,我们也不知道发生了什么。
这是我们的代码:
生产者配置
@Configuration
@Profile("test")
public class KafkaTestProducerConfig {
private static final String SCHEMA_REGISTRY_URL = "schema.registry.url";
@Autowired
protected EmbeddedKafkaBroker embeddedKafka;
@Bean
public Map<String, Object> producerConfig() {
Map<String, Object> props = new HashMap<>();
props.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG,
embeddedKafka.getBrokersAsString());
props.put(SCHEMA_REGISTRY_URL, "URL");
props.put(ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG, StringSerializer.class);
props.put(ProducerConfig.VALUE_SERIALIZER_CLASS_CONFIG, KafkaAvroSerializer.class);
return props;
}
@Bean
public ProducerFactory<String, GenericRecord> producerFactory() {
return new DefaultKafkaProducerFactory<>(producerConfig());
}
@Bean
public KafkaTemplate<String, GenericRecord> kafkaTemplate() {
return new KafkaTemplate<>(producerFactory());
}
}
消费者配置
@Configuration
@Profile("test")
@EnableKafka
public class KafkaTestConsumerConfig {
@Autowired
protected EmbeddedKafkaBroker embeddedKafka;
private static final String SCHEMA_REGISTRY_URL = "schema.registry.url";
@Bean
public Map<String, Object> consumerProperties() {
Map<String, Object> props = new HashMap<>();
props.put(ConsumerConfig.GROUP_ID_CONFIG, "groupId");
props.put(ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG, embeddedKafka.getBrokersAsString());
props.put(SCHEMA_REGISTRY_URL, "URL");
props.put(ConsumerConfig.ENABLE_AUTO_COMMIT_CONFIG, false);
props.put(ConsumerConfig.MAX_POLL_RECORDS_CONFIG, "1000");
props.put(ConsumerConfig.KEY_DESERIALIZER_CLASS_CONFIG, StringDeserializer.class.getName());
props.put(ConsumerConfig.VALUE_DESERIALIZER_CLASS_CONFIG, KafkaAvroDeserializer.class.getName());
props.put(ConsumerConfig.AUTO_OFFSET_RESET_CONFIG, "earliest");
props.put(ConsumerConfig.FETCH_MAX_WAIT_MS_CONFIG, 10000);
return props;
}
@Bean
public DefaultKafkaConsumerFactory<String, Object> consumerFactory() {
KafkaAvroDeserializer avroDeserializer = new KafkaAvroDeserializer();
avroDeserializer.configure(consumerProperties(), false);
return new DefaultKafkaConsumerFactory<>(consumerProperties(), new StringDeserializer(), avroDeserializer);
}
@Bean
public ConcurrentKafkaListenerContainerFactory<String, Object> kafkaListenerContainerFactory() {
ConcurrentKafkaListenerContainerFactory<String, Object> factory =
new ConcurrentKafkaListenerContainerFactory<>();
factory.setConsumerFactory(consumerFactory());
factory.setBatchListener(true);
factory.getContainerProperties().setAckMode(ContainerProperties.AckMode.MANUAL_IMMEDIATE);
return factory;
}
}
集成测试
@SpringBootTest(
webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT,
classes = Application.class)
@ActiveProfiles("test")
@EmbeddedKafka(topics = {"TOPIC1", "TOPIC2", "TOPIC3"})
public class CommonStepDefinitions implements En {
protected static final Logger LOGGER = LoggerFactory.getLogger(CommonStepDefinitions.class);
@Autowired
protected KafkaTemplate<String, GenericRecord> kafkaTemplate;
}
步骤定义
public class KafkaStepDefinitions extends CommonStepDefinitions {
private static final String TEMPLATE_TOPIC = "TOPIC1";
public KafkaStepDefinitions(){
Given("given statement", () -> {
OperationEntity operationEntity = new OperationEntity();
operationEntity.setFoo("foo");
kafkaTemplate.send(TEMPLATE_TOPIC, AvroPojoTransformer.pojoToRecord(operationEntity));
});
}
}
消费者同样的代码在生产引导服务器上运行良好,但是嵌入的kafka却无法实现
@KafkaListener(topics = "${kafka.topic1}", groupId = "groupId")
public void consume(List<GenericRecord> records, Acknowledgment ack) throws DDCException {
LOGGER.info("Batch of {} records received", records.size());
//do something with the data
ack.acknowledge();
}
日志里的一切看起来都很好,但我们不知道遗漏了什么。
提前谢谢。
2条答案
按热度按时间wkftcu5l1#
问题是消费者没有连接到嵌入式Kafka。您可以通过使用
test
配置文件并将以下内容添加到application-test.yml
.那你也不需要这个习惯
consumerProperties
,consumerFactory
以及kafkaListenerContainerFactory
豆。Spring Boot会为你自动接线。如果你真的想用这些豆子(不知道为什么),你应该仔细检查KafkaAutoConfiguration
以确保覆盖正确的名称和类型。tnkciper2#
你的考试在开始前就结束了;参见包含0-0-c-1的线程名称;耗电元件启动后不到一秒钟即停止。
我刚刚检查了,没有,我的测试正在执行,因为您可以在日志的第1174行中看到producerconfig值的日志。这个日志就出现在kafkatemplate.send(主题,实体)之后。我不使用
@Test
因为在 cucumber 里你有不同的定义。你可以在我的帖子里看到代码。好 啊;但是您需要在测试中使用某种闩锁来等待使用者实际分配主题/分区并接收数据。按照现在构建测试的方式,测试在使用者完全启动之前就被关闭了。请参阅我对这个问题的回答,了解一种 Package 侦听器的方法,这样您就可以等到收到记录(这使用普通的junit测试)。
另一种技术是以某种方式将服务注入到侦听器bean中,以倒计时闩锁。
作为快速测试添加
Thread.sleep(10_000)
到你的“台阶”。但是,据推测,您可能希望以某种方式Assert消费者实际上获得了数据。您需要在测试退出之前进行Assert,因为它是异步的,所以您需要某种机制来等待它发生(或超时)。