| # Licensed to the Apache Software Foundation (ASF) under one or more |
| # contributor license agreements. See the NOTICE file distributed with |
| # this work for additional information regarding copyright ownership. |
| # The ASF licenses this file to You under the Apache License, Version 2.0 |
| # (the "License"); you may not use this file except in compliance with |
| # the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| from ducktape.utils.util import wait_until |
| |
| from kafkatest.tests.kafka_test import KafkaTest |
| from kafkatest.services.zookeeper import ZookeeperService |
| from kafkatest.services.kafka import KafkaService |
| from kafkatest.services.verifiable_producer import VerifiableProducer |
| from kafkatest.services.verifiable_consumer import VerifiableConsumer |
| from kafkatest.services.kafka import TopicPartition |
| |
| class VerifiableConsumerTest(KafkaTest): |
| |
| def __init__(self, test_context, num_consumers=1, num_producers=0, |
| group_id="test_group_id", session_timeout_sec=10, **kwargs): |
| super(VerifiableConsumerTest, self).__init__(test_context, **kwargs) |
| self.num_consumers = num_consumers |
| self.num_producers = num_producers |
| self.group_id = group_id |
| self.session_timeout_sec = session_timeout_sec |
| |
| def _all_partitions(self, topic, num_partitions): |
| partitions = set() |
| for i in range(num_partitions): |
| partitions.add(TopicPartition(topic=topic, partition=i)) |
| return partitions |
| |
| def _partitions(self, assignment): |
| partitions = [] |
| for parts in assignment.itervalues(): |
| partitions += parts |
| return partitions |
| |
| def valid_assignment(self, topic, num_partitions, assignment): |
| all_partitions = self._all_partitions(topic, num_partitions) |
| partitions = self._partitions(assignment) |
| return len(partitions) == num_partitions and set(partitions) == all_partitions |
| |
| def min_cluster_size(self): |
| """Override this since we're adding services outside of the constructor""" |
| return super(VerifiableConsumerTest, self).min_cluster_size() + self.num_consumers + self.num_producers |
| |
| def setup_consumer(self, topic, enable_autocommit=False, assignment_strategy="org.apache.kafka.clients.consumer.RangeAssignor"): |
| return VerifiableConsumer(self.test_context, self.num_consumers, self.kafka, |
| topic, self.group_id, session_timeout_sec=self.session_timeout_sec, |
| assignment_strategy=assignment_strategy, enable_autocommit=enable_autocommit) |
| |
| def setup_producer(self, topic, max_messages=-1): |
| return VerifiableProducer(self.test_context, self.num_producers, self.kafka, topic, |
| max_messages=max_messages, throughput=500) |
| |
| def await_produced_messages(self, producer, min_messages=1000, timeout_sec=10): |
| current_acked = producer.num_acked |
| wait_until(lambda: producer.num_acked >= current_acked + min_messages, timeout_sec=timeout_sec, |
| err_msg="Timeout awaiting messages to be produced and acked") |
| |
| def await_consumed_messages(self, consumer, min_messages=1): |
| current_total = consumer.total_consumed() |
| wait_until(lambda: consumer.total_consumed() >= current_total + min_messages, |
| timeout_sec=self.session_timeout_sec*2, |
| err_msg="Timed out waiting for consumption") |
| |
| def await_members(self, consumer, num_consumers): |
| # Wait until all members have joined the group |
| wait_until(lambda: len(consumer.joined_nodes()) == num_consumers, |
| timeout_sec=self.session_timeout_sec*2, |
| err_msg="Consumers failed to join in a reasonable amount of time") |
| |
| def await_all_members(self, consumer): |
| self.await_members(consumer, self.num_consumers) |