blob: 5cc5d98528fbfccf92dc872a9eaf163794f055d3 [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 org.apache.apex.malhar.stream.api.impl;
import java.util.Collection;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
import org.junit.Assert;
import org.junit.Test;
import com.datatorrent.api.Context;
import com.datatorrent.api.DAG;
import com.datatorrent.api.DefaultInputPort;
import com.datatorrent.api.DefaultOutputPort;
import com.datatorrent.common.util.BaseOperator;
import com.datatorrent.stram.plan.logical.LogicalPlan;
import com.datatorrent.stram.plan.logical.LogicalPlan.InputPortMeta;
import static org.apache.apex.malhar.stream.api.Option.Options.name;
/**
* Unit test to default implementation of ApexStream interface
*/
public class ApexStreamImplTest
{
@Test
public void testAddOperator()
{
LogicalPlan dag = new LogicalPlan();
TestOperator<String, Integer> firstOperator = new TestOperator<>();
TestOperator<Integer, Date> secondOperator = new TestOperator<>();
new ApexStreamImpl<String>().addOperator(firstOperator, null, firstOperator.output, name("first"))
.endWith(secondOperator, secondOperator.input, name("second"))
.with(DAG.Locality.THREAD_LOCAL)
.with(Context.OperatorContext.AUTO_RECORD, true)
.with("prop", "TestProp").populateDag(dag);
Assert.assertTrue(dag.getAllOperators().size() == 2);
Set<String> opNames = new HashSet<>();
opNames.add("first");
opNames.add("second");
for (LogicalPlan.OperatorMeta operatorMeta : dag.getAllOperators()) {
Assert.assertTrue(operatorMeta.getOperator() instanceof TestOperator);
Assert.assertTrue(opNames.contains(operatorMeta.getName()));
if (operatorMeta.getName().equals("second")) {
// Assert the Context.OperatorContext.AUTO_RECORD attribute has been set to true for second operator
Assert.assertTrue(operatorMeta.getAttributes().get(Context.OperatorContext.AUTO_RECORD));
// Assert the prop has been set to TestProp for second operator
Assert.assertEquals("TestProp", ((TestOperator)operatorMeta.getOperator()).prop);
} else {
// Assert the Context.OperatorContext.AUTO_RECORD attribute keeps as default false for first operator
Assert.assertNull(operatorMeta.getAttributes().get(Context.OperatorContext.AUTO_RECORD));
// Assert the prop has not been set for first operator
Assert.assertNull(((TestOperator)operatorMeta.getOperator()).prop);
}
}
Collection<LogicalPlan.StreamMeta> streams = dag.getAllStreams();
// Assert there is only one stream
Assert.assertTrue(streams.size() == 1);
for (LogicalPlan.StreamMeta stream : streams) {
// Assert the stream is from first operator to second operator
Assert.assertEquals("first", stream.getSource().getOperatorMeta().getName());
Collection<InputPortMeta> portMetaCollection = stream.getSinks();
Assert.assertTrue(1 == portMetaCollection.size());
for (InputPortMeta inputPortMeta : portMetaCollection) {
Assert.assertEquals("second", inputPortMeta.getOperatorMeta().getName());
}
// Assert the stream is thread local
Assert.assertTrue(stream.getLocality() == DAG.Locality.THREAD_LOCAL);
}
}
/**
* A mock operator for test
* @param <T>
* @param <O>
*/
public static class TestOperator<T, O> extends BaseOperator
{
private String prop = null;
public void setProp(String prop)
{
this.prop = prop;
}
public String getProp()
{
return prop;
}
public final transient InputPort<T> input = new DefaultInputPort<T>()
{
@Override
public void process(T o)
{
}
};
public final transient OutputPort<O> output = new DefaultOutputPort<>();
}
}