Github user hmcl commented on a diff in the pull request:

    https://github.com/apache/storm/pull/1679#discussion_r86895288
  
    --- Diff: 
external/storm-kafka-client/src/test/java/org/apache/storm/kafka/spout/SingleTopicKafkaSpoutTest.java
 ---
    @@ -0,0 +1,250 @@
    +/*
    + * 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.
    + */
    +package org.apache.storm.kafka.spout;
    +
    +import info.batey.kafka.unit.KafkaUnitRule;
    +import kafka.producer.KeyedMessage;
    +import org.apache.kafka.clients.consumer.OffsetAndMetadata;
    +import 
org.apache.storm.kafka.spout.builders.SingleTopicKafkaSpoutConfiguration;
    +import org.apache.storm.spout.SpoutOutputCollector;
    +import org.apache.storm.task.TopologyContext;
    +import org.apache.storm.tuple.Values;
    +import org.junit.Rule;
    +import org.junit.Test;
    +import org.mockito.ArgumentCaptor;
    +
    +import static org.junit.Assert.*;
    +
    +import java.util.Map;
    +import java.util.stream.IntStream;
    +import static org.mockito.Mockito.*;
    +import static 
org.apache.storm.kafka.spout.builders.SingleTopicKafkaSpoutConfiguration.*;
    +
    +public class SingleTopicKafkaSpoutTest {
    --- End diff --
    
    The blocks of code 
[B1](https://github.com/jfenc91/storm/blob/01f0c35a91251180266fe90b71ed4f34ca3339d6/external/storm-kafka-client/src/test/java/org/apache/storm/kafka/spout/SingleTopicKafkaSpoutTest.java#L75-L85),
 
[B2](https://github.com/jfenc91/storm/blob/01f0c35a91251180266fe90b71ed4f34ca3339d6/external/storm-kafka-client/src/test/java/org/apache/storm/kafka/spout/SingleTopicKafkaSpoutTest.java#L118-L128),
 
[B3](https://github.com/jfenc91/storm/blob/01f0c35a91251180266fe90b71ed4f34ca3339d6/external/storm-kafka-client/src/test/java/org/apache/storm/kafka/spout/SingleTopicKafkaSpoutTest.java#L150-L160),
 
[B4](https://github.com/jfenc91/storm/blob/01f0c35a91251180266fe90b71ed4f34ca3339d6/external/storm-kafka-client/src/test/java/org/apache/storm/kafka/spout/SingleTopicKafkaSpoutTest.java#L201-L211)
 have pretty much the same initialization code, with exception of perhaps one 
or two values that can be parameterized. Can you please create an 
initialization or setup method with this co
 de, and avoid all of the code duplication.
    
    I didn't look in particular detail in other parts of this code, but it may 
also be easy to do the same thing for the multiple play and verify blocks of 
code in this class. If that's the case, that would be ideal.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to