blob: 4d4d762427dc9c28cdc1831b4d7dae103f8ed490 [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.lib.multiwindow;
import java.util.ArrayList;
import java.util.List;
import org.junit.Assert;
import org.junit.Test;
import org.apache.apex.malhar.lib.testbench.CollectorTestSink;
import com.google.common.collect.Lists;
import com.datatorrent.api.DefaultOutputPort;
/**
* Unit tests for
* {@link org.apache.apex.malhar.lib.multiwindow.AbstractSlidingWindow}.
*/
public class SlidingWindowTest
{
public class TestSlidingWindow extends AbstractSlidingWindow<String, List<String>>
{
public final transient DefaultOutputPort<ArrayList<String>> out = new DefaultOutputPort<ArrayList<String>>();
ArrayList<String> tuples = new ArrayList<String>();
@Override
protected void processDataTuple(String tuple)
{
tuples.add(tuple);
}
@Override
public void endWindow()
{
out.emit(tuples);
tuples = new ArrayList<String>();
}
@Override
public List<String> createWindowState()
{
return tuples;
}
}
/**
* Test functional logic
*/
@SuppressWarnings({ "rawtypes", "unchecked" })
@Test
public void testNodeProcessing() throws InterruptedException
{
TestSlidingWindow oper = new TestSlidingWindow();
CollectorTestSink swinSink = new CollectorTestSink();
oper.out.setSink(swinSink);
oper.setWindowSize(3);
oper.setup(null);
oper.beginWindow(0);
oper.data.process("a0");
oper.data.process("b0");
oper.endWindow();
oper.beginWindow(1);
oper.data.process("a1");
oper.data.process("b1");
oper.endWindow();
oper.beginWindow(2);
oper.data.process("a2");
oper.data.process("b2");
oper.endWindow();
oper.beginWindow(3);
oper.data.process("a3");
oper.data.process("b3");
oper.endWindow();
Assert.assertEquals("number emitted tuples", 4, swinSink.collectedTuples.size());
Assert.assertEquals("Invalid second stream window state.", oper.getStreamingWindowState(1), Lists.newArrayList("a2", "b2"));
Assert.assertEquals("Invalid expired stream window state.", oper.lastExpiredWindowState, Lists.newArrayList("a0", "b0"));
}
}