blob: 22534005e001533c841e45aabaa7df1a01bc0b04 [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.fs;
import java.io.File;
import java.io.IOException;
import org.junit.Assert;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TestWatcher;
import org.junit.runner.Description;
import org.apache.apex.malhar.lib.testbench.CollectorTestSink;
import org.apache.commons.io.FileUtils;
import org.apache.hadoop.fs.Path;
import com.datatorrent.api.Attribute;
import com.datatorrent.api.Context;
import com.datatorrent.api.DAG;
import static org.apache.apex.malhar.lib.helper.OperatorContextTestHelper.mockOperatorContext;
public class FSRecordCompactionOperatorTest
{
private class TestMeta extends TestWatcher
{
FSRecordCompactionOperator<byte[]> underTest;
Context.OperatorContext context;
String outputPath;
@Override
protected void starting(Description description)
{
super.starting(description);
outputPath = new File("target/" + description.getClassName() + "/" + description.getMethodName()).getPath();
Attribute.AttributeMap attributes = new Attribute.AttributeMap.DefaultAttributeMap();
attributes.put(DAG.DAGContext.APPLICATION_ID, description.getClassName());
attributes.put(DAG.DAGContext.APPLICATION_PATH, outputPath);
context = mockOperatorContext(1, attributes);
underTest = new FSRecordCompactionOperator<byte[]>();
underTest.setConverter(new GenericFileOutputOperator.NoOpConverter());
underTest.setup(context);
underTest.setMaxIdleWindows(10);
}
@Override
protected void finished(Description description)
{
this.underTest.teardown();
try {
FileUtils.deleteDirectory(new File("target" + Path.SEPARATOR + description.getClassName()));
} catch (IOException e) {
throw new RuntimeException(e);
}
}
}
@Rule
public TestMeta testMeta = new TestMeta();
@Test
public void testRotate() throws Exception
{
CollectorTestSink<FSRecordCompactionOperator.OutputMetaData> sink = new CollectorTestSink<FSRecordCompactionOperator.OutputMetaData>();
testMeta.underTest.output.setSink((CollectorTestSink)sink);
for (int i = 0; i < 60; i++) {
testMeta.underTest.beginWindow(i);
if (i < 10) {
testMeta.underTest.input.process(("Record" + Integer.toString(i)).getBytes());
}
testMeta.underTest.endWindow();
}
testMeta.underTest.committed(59);
for (int i = 60; i < 70; i++) {
testMeta.underTest.beginWindow(i);
testMeta.underTest.endWindow();
}
Assert.assertEquals("tuples-" + testMeta.context.getAttributes().get(DAG.DAGContext.APPLICATION_ID)
+ "_1.0", sink.collectedTuples.get(0).getFileName());
}
}