blob: a3df0f1b663276be18ea50de6f6f6da6eb2680b1 [file] [log] [blame]
/**
* 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 com.datatorrent.contrib.kinesis;
import java.nio.ByteBuffer;
import com.amazonaws.services.kinesis.model.Record;
import org.junit.Assert;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.datatorrent.contrib.util.*;
import com.datatorrent.api.DAG;
import com.datatorrent.api.DefaultOutputPort;
import com.datatorrent.common.util.Pair;
import com.datatorrent.lib.util.FieldInfo;
@SuppressWarnings("rawtypes")
public class KinesisByteArrayOutputOperatorTest extends KinesisOutputOperatorTest<KinesisByteArrayOutputOperator, POJOTupleGenerateOperator>
{
public static class TestPOJOTupleGenerateOperator extends POJOTupleGenerateOperator<TestPOJO>
{
public TestPOJOTupleGenerateOperator()
{
super(TestPOJO.class);
setTupleNum(maxTuple);
}
}
private FieldValueSerializableGenerator fieldValueGenerator;
@Test
public void testKinesisOutputOperatorInternal() throws Exception
{
KinesisByteArrayOutputOperator operator = new KinesisByteArrayOutputOperator();
configureTestingOperator(operator);
operator.setBatchProcessing(false);
operator.setup(null);
TupleGenerator<TestPOJO> generator = new TupleGenerator<TestPOJO>(TestPOJO.class);
// read tuples
KinesisTestConsumer listener = createConsumerListener(streamName);
String iterator = listener.prepareIterator();
// save the tuples
for (int i = 0; i < maxTuple; ++i) {
if (i % 2 == 0)
iterator = listener.processNextIterator(iterator);
operator.processTuple(getNextTuple(generator));
}
listener.processNextIterator(iterator);
}
@SuppressWarnings("unchecked")
protected Pair<String, byte[]> getNextTuple(TupleGenerator<TestPOJO> generator)
{
TestPOJO obj = generator.getNextTuple();
if (fieldValueGenerator == null)
fieldValueGenerator = FieldValueSerializableGenerator.getFieldValueGenerator(TestPOJO.class, null);
return new Pair<String, byte[]>(obj.getRow(), fieldValueGenerator.serializeObject(obj));
}
@Override
protected POJOTupleGenerateOperator addGenerateOperator(DAG dag)
{
return dag.addOperator("TestPojoGenerator", TestPOJOTupleGenerateOperator.class);
}
@Override
protected DefaultOutputPort getOutputPortOfGenerator(POJOTupleGenerateOperator generator)
{
return generator.outputPort;
}
@Override
protected KinesisByteArrayOutputOperator addTestingOperator(DAG dag)
{
KinesisByteArrayOutputOperator operator = dag.addOperator("Test-KinesisByteArrayOutputOperator", KinesisByteArrayOutputOperator.class);
operator.setBatchProcessing(true);
return operator;
}
@Override
protected KinesisTestConsumer createConsumerListener(String streamName)
{
return new KinesisEmployeeConsumer(streamName);
}
public static class KinesisEmployeeConsumer extends KinesisTestConsumer
{
private static final Logger logger = LoggerFactory.getLogger(KinesisEmployeeConsumer.class);
protected FieldValueSerializableGenerator<FieldInfo> fieldValueGenerator = FieldValueSerializableGenerator.getFieldValueGenerator(TestPOJO.class, null);
public KinesisEmployeeConsumer(String streamNamem)
{
super(streamNamem);
}
@Override
protected void processRecord(Record record)
{
String partitionKey = record.getPartitionKey();
ByteBuffer data = record.getData();
logger.info("partitionKey={} ", partitionKey);
byte[] dataBytes = new byte[data.remaining()];
data.get(dataBytes, 0, dataBytes.length);
long key = Long.valueOf(partitionKey);
TestPOJO expected = new TestPOJO(key);
TestPOJO read = (TestPOJO) fieldValueGenerator.deserializeObject(dataBytes);
if (!read.outputFieldsEquals(expected)) {
logger.error("read is not same as expected. read={}, expected={}", read, expected);
Assert.assertTrue(false);
} else {
logger.info("read is same as expected. read={}, expected={}", read, expected);
}
}
}
}