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

    
https://github.com/apache/incubator-apex-malhar/pull/134#discussion_r48452284
  
    --- Diff: 
kafka/src/test/java/org/apache/apex/malhar/kafka/KafkaInputOperatorTest.java ---
    @@ -0,0 +1,221 @@
    +/**
    + * 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.apex.malhar.kafka;
    +
    +import java.util.Arrays;
    +import java.util.Collection;
    +import java.util.LinkedList;
    +import java.util.List;
    +import java.util.Properties;
    +import java.util.concurrent.CountDownLatch;
    +import java.util.concurrent.TimeUnit;
    +
    +import org.junit.Assert;
    +import org.junit.Test;
    +import org.junit.runner.RunWith;
    +import org.junit.runners.Parameterized;
    +import org.slf4j.LoggerFactory;
    +
    +import org.apache.kafka.clients.consumer.ConsumerConfig;
    +import org.apache.kafka.common.serialization.Deserializer;
    +import org.apache.kafka.common.serialization.StringDeserializer;
    +
    +import com.datatorrent.api.Context;
    +import com.datatorrent.api.DAG;
    +import com.datatorrent.api.DAG.Locality;
    +import com.datatorrent.api.DefaultInputPort;
    +import com.datatorrent.api.LocalMode;
    +import com.datatorrent.common.util.BaseOperator;
    +
    +/**
    + * A bunch of test to verify the input operator will be automatically 
partitioned per kafka partition This test is launching its
    + * own Kafka cluster.
    + */
    +@RunWith(Parameterized.class)
    +public class KafkaInputOperatorTest extends KafkaOperatorTestBase
    +{
    +
    +  private int totalBrokers = 0;
    +
    +
    +
    +  @Parameterized.Parameters(name = "multi-cluster: {0}, multi-partition: 
{1}")
    +  public static Collection<Boolean[]> testScenario()
    +  {
    +    return Arrays.asList(new Boolean[][]{{true, false}, // multi cluster 
with single partition
    +      {true, true}, // multi cluster with multi partitions
    +      {false, true}, // single cluster with multi partitions
    +      {false, false}, // single cluster with single partitions
    +    });
    +  }
    +
    +  public KafkaInputOperatorTest(boolean hasMultiCluster, boolean 
hasMultiPartition)
    +  {
    +    // This class want to initialize several kafka brokers for multiple 
partitions
    +    this.hasMultiCluster = hasMultiCluster;
    +    this.hasMultiPartition = hasMultiPartition;
    +    int cluster = 1 + (hasMultiCluster ? 1 : 0);
    +    totalBrokers = (1 + (hasMultiPartition ? 1 : 0)) * cluster;
    +
    +  }
    +
    +  static final org.slf4j.Logger logger = 
LoggerFactory.getLogger(KafkaInputOperatorTest.class);
    --- End diff --
    
    Why not private?


---
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 [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to