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

    https://github.com/apache/storm/pull/927#discussion_r47552629
  
    --- Diff: 
external/sql/storm-sql-kafka/src/test/org/apache/storm/sql/kafka/TestKafkaDataSourcesProvider.java
 ---
    @@ -0,0 +1,107 @@
    +/*
    + * 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
    + * <p>
    + * http://www.apache.org/licenses/LICENSE-2.0
    + * <p>
    + * 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.sql.kafka;
    +
    +import com.google.common.collect.ImmutableList;
    +import com.google.common.collect.Lists;
    +import kafka.javaapi.producer.Producer;
    +import kafka.producer.KeyedMessage;
    +import org.apache.kafka.clients.producer.KafkaProducer;
    +import org.apache.kafka.clients.producer.ProducerRecord;
    +import 
org.apache.storm.sql.kafka.KafkaDataSourcesProvider.KafkaTridentSink;
    +import org.apache.storm.sql.runtime.DataSourcesRegistry;
    +import org.apache.storm.sql.runtime.FieldInfo;
    +import org.apache.storm.sql.runtime.ISqlTridentDataSource;
    +import org.junit.Assert;
    +import org.junit.Test;
    +import org.mockito.ArgumentMatcher;
    +import org.mockito.internal.util.reflection.Whitebox;
    +import storm.kafka.trident.TridentKafkaState;
    +import storm.trident.tuple.TridentTuple;
    +
    +import java.net.URI;
    +import java.nio.ByteBuffer;
    +import java.util.ArrayList;
    +import java.util.Collections;
    +import java.util.List;
    +import java.util.concurrent.Future;
    +
    +import static org.mockito.Mockito.*;
    +
    +public class TestKafkaDataSourcesProvider {
    +  private static final List<FieldInfo> FIELDS = ImmutableList.of(
    +      new FieldInfo("ID", int.class, true),
    +      new FieldInfo("val", String.class, false));
    +  private static final List<String> FIELD_NAMES = ImmutableList.of("ID", 
"val");
    +  private static final JsonSerializer SERIALIZER = new 
JsonSerializer(FIELD_NAMES);
    +
    +  @SuppressWarnings("unchecked")
    +  @Test
    +  public void testKafkaSink() {
    +    ISqlTridentDataSource ds = 
DataSourcesRegistry.constructTridentDataSource(
    +        URI.create("kafka://mock?topic=foo"), null, null, FIELDS);
    +    Assert.assertNotNull(ds);
    +    KafkaTridentSink sink = (KafkaTridentSink) ds.getConsumer();
    +    sink.prepare(null, null);
    +    TridentKafkaState state = (TridentKafkaState) 
Whitebox.getInternalState(sink, "state");
    +    KafkaProducer producer = mock(KafkaProducer.class);
    +    
doReturn(mock(Future.class)).when(producer).send(any(ProducerRecord.class));
    +    Whitebox.setInternalState(state, "producer", producer);
    +    List<TridentTuple> tupleList = mockTupleList();
    +    for (TridentTuple t : tupleList) {
    +      state.updateState(Collections.singletonList(t), null);
    +      verify(producer).send(argThat(new KafkaMessageMatcher(t)));
    +    }
    +    verifyNoMoreInteractions(producer);
    +  }
    +
    +  private static List<TridentTuple> mockTupleList() {
    +    List<TridentTuple> tupleList = new ArrayList<>();
    +    TridentTuple t0 = mock(TridentTuple.class);
    +    TridentTuple t1 = mock(TridentTuple.class);
    +    doReturn(1).when(t0).get(0);
    +    doReturn(2).when(t1).get(0);
    +    doReturn(Lists.<Object>newArrayList(1, "2")).when(t0).getValues();
    +    doReturn(Lists.<Object>newArrayList(2, "3")).when(t1).getValues();
    +    tupleList.add(t0);
    +    tupleList.add(t1);
    +    return tupleList;
    +  }
    +
    +  private static class KafkaMessageMatcher extends 
ArgumentMatcher<ProducerRecord> {
    +    private static final int PRIMARY_INDEX = 0;
    +    private final TridentTuple tuple;
    +
    +    private KafkaMessageMatcher(TridentTuple tuple) {
    +      this.tuple = tuple;
    +    }
    +
    +    @SuppressWarnings("unchecked")
    +    @Override
    +    public boolean matches(Object o) {
    +      ProducerRecord<Object, ByteBuffer> m = 
(ProducerRecord<Object,ByteBuffer>)o;
    --- End diff --
    
    I highly suggest using more expressive variable names instead of m and b (a 
few lines below). 


---
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