blob: d6797321b39f3b52eeb18af985f51cb3ce0f8412 [file] [log] [blame]
/*
* Copyright (c) 2013 DataTorrent, Inc. ALL Rights Reserved.
*
* Licensed 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.lib.algo;
import org.junit.Assert;
import org.junit.Test;
import com.datatorrent.lib.testbench.CountTestSink;
/**
*
* Functional tests for {@link com.datatorrent.lib.algo.Sampler}<p>
*
*/
public class SamplerTest
{
/**
* Test node logic emits correct results
*/
@SuppressWarnings({ "rawtypes", "unchecked" })
@Test
public void testNodeProcessing() throws Exception
{
Sampler<String> oper = new Sampler<String>();
CountTestSink sink = new CountTestSink<String>();
oper.sample.setSink(sink);
oper.setPassrate(10);
oper.setTotalrate(100);
String tuple = "a";
int numTuples = 10000;
oper.beginWindow(0);
for (int i = 0; i < numTuples; i++) {
oper.data.process(tuple);
}
oper.endWindow();
int lowerlimit = 5;
int upperlimit = 15;
int actual = (100 * sink.count) / numTuples;
Assert.assertEquals("number emitted tuples", true, lowerlimit < actual);
Assert.assertEquals("number emitted tuples", true, upperlimit > actual);
}
}