I am writing test cases for kafka consumer components and mocking kafkaConsumer.poll()
which returns instance of ConsumerRecords<String,String>
. I want to initialize ConsumerRecords
and use that in mock but the constructors of ConsumerRecords
expect actual kafka topic which I don't have in tests.
One way I think for this is by keeping a serialized copy of object and deserialize to initialize ConsumerRecords
.
Is there any other way to achieve the same.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
Here is some example code (Kafka clients lib version 0.10.1.1):
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import org.apache.kafka.clients.consumer.ConsumerRecord;
import org.apache.kafka.clients.consumer.MockConsumer;
import org.apache.kafka.clients.consumer.OffsetResetStrategy;
import org.apache.kafka.common.TopicPartition;
...
String topic = "MyTopic";
Collection<TopicPartition> partitions = new ArrayList<TopicPartition>();
Collection<String> topicsCollection = new ArrayList<String>();
partitions.add(new TopicPartition(topic, 1));
Map<TopicPartition, Long> partitionsBeginningMap = new HashMap<TopicPartition, Long>();
Map<TopicPartition, Long> partitionsEndMap = new HashMap<TopicPartition, Long>();
long records = 10;
for (TopicPartition partition : partitions) {
partitionsBeginningMap.put(partition, 0l);
partitionsEndMap.put(partition, records);
topicsCollection.add(partition.topic());
}
MockConsumer<String, MyObject> second = new MockConsumer<String, MyObject>(
OffsetResetStrategy.EARLIEST);
second.subscribe(topicsCollection);
second.rebalance(partitions);
second.updateBeginningOffsets(partitionsBeginningMap);
second.updateEndOffsets(partitionsEndMap);
for (long i = 0; i < 10; i++) {
MyObject value = Generator.generate();
ConsumerRecord<String, MyObject> record = new ConsumerRecord<String, MyObject>(
topic, 1, i, null,value);
second.addRecord(record);
}
...