blob: a5469b0d7a7dc2e97eacfa20b7060bc697a460e8 [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.hadoop.mrunit;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapred.Mapper;
import org.apache.hadoop.mapred.Reducer;
import org.apache.hadoop.mapred.lib.IdentityMapper;
import org.apache.hadoop.mapred.lib.IdentityReducer;
import org.apache.hadoop.mapred.lib.LongSumReducer;
import org.apache.hadoop.mrunit.types.Pair;
import org.junit.Rule;
import org.junit.Test;
@SuppressWarnings("deprecation")
public class TestPipelineMapReduceDriver {
private static final int FOO_IN_A = 42;
private static final int FOO_IN_B = 10;
private static final int BAR_IN = 12;
private static final int FOO_OUT = 52;
private static final int BAR_OUT = 12;
@Rule
public final ExpectedSuppliedException thrown = ExpectedSuppliedException
.none();
@Test
public void testEmptyPipeline() throws IOException {
thrown.expectMessage(IllegalStateException.class,
"No Mappers or Reducers in pipeline");
final PipelineMapReduceDriver<Text, Text, Text, Text> driver = PipelineMapReduceDriver.newPipelineMapReduceDriver();
driver.withInput(new Text("foo"), new Text("bar")).runTest();
}
@Test
public void testNoInput() {
thrown.expectMessage(IllegalStateException.class, "No input was provided");
final PipelineMapReduceDriver<Text, Text, Text, Text> driver = PipelineMapReduceDriver.newPipelineMapReduceDriver();
driver.runTest();
}
@Test
public void testSingleIdentity() {
// Test that an identity mapper and identity reducer work
final PipelineMapReduceDriver<Text, Text, Text, Text> driver = PipelineMapReduceDriver.newPipelineMapReduceDriver();
driver
.withMapReduce(new IdentityMapper<Text, Text>(),
new IdentityReducer<Text, Text>())
.withInput(new Text("foo"), new Text("bar"))
.withOutput(new Text("foo"), new Text("bar")).runTest();
}
@Test
public void testMultipleIdentities() {
// Test that a pipeline of identity mapper and reducers work
final PipelineMapReduceDriver<Text, Text, Text, Text> driver = PipelineMapReduceDriver.newPipelineMapReduceDriver();
driver
.withMapReduce(new IdentityMapper<Text, Text>(),
new IdentityReducer<Text, Text>())
.withMapReduce(new IdentityMapper<Text, Text>(),
new IdentityReducer<Text, Text>())
.withMapReduce(new IdentityMapper<Text, Text>(),
new IdentityReducer<Text, Text>())
.withInput(new Text("foo"), new Text("bar"))
.withOutput(new Text("foo"), new Text("bar")).runTest();
}
@Test
public void testSumAtEnd() {
final PipelineMapReduceDriver<Text, LongWritable, Text, LongWritable> driver = PipelineMapReduceDriver.newPipelineMapReduceDriver();
driver
.withMapReduce(new IdentityMapper<Text, LongWritable>(),
new IdentityReducer<Text, LongWritable>())
.withMapReduce(new IdentityMapper<Text, LongWritable>(),
new IdentityReducer<Text, LongWritable>())
.withMapReduce(new IdentityMapper<Text, LongWritable>(),
new LongSumReducer<Text>())
.withInput(new Text("foo"), new LongWritable(FOO_IN_A))
.withInput(new Text("bar"), new LongWritable(BAR_IN))
.withInput(new Text("foo"), new LongWritable(FOO_IN_B))
.withOutput(new Text("bar"), new LongWritable(BAR_OUT))
.withOutput(new Text("foo"), new LongWritable(FOO_OUT)).runTest();
}
@Test
public void testSumInMiddle() {
final PipelineMapReduceDriver<Text, LongWritable, Text, LongWritable> driver = PipelineMapReduceDriver.newPipelineMapReduceDriver();
driver
.withMapReduce(new IdentityMapper<Text, LongWritable>(),
new IdentityReducer<Text, LongWritable>())
.withMapReduce(new IdentityMapper<Text, LongWritable>(),
new LongSumReducer<Text>())
.withMapReduce(new IdentityMapper<Text, LongWritable>(),
new IdentityReducer<Text, LongWritable>())
.withInput(new Text("foo"), new LongWritable(FOO_IN_A))
.withInput(new Text("bar"), new LongWritable(BAR_IN))
.withInput(new Text("foo"), new LongWritable(FOO_IN_B))
.withOutput(new Text("bar"), new LongWritable(BAR_OUT))
.withOutput(new Text("foo"), new LongWritable(FOO_OUT)).runTest();
}
@Test
public void testNoMapper() {
final PipelineMapReduceDriver<Text, Text, Text, Text> driver = PipelineMapReduceDriver.newPipelineMapReduceDriver();
thrown.expect(NullPointerException.class);
driver.addMapReduce(null, new IdentityReducer<Text, Text>());
driver.addInput(new Text("a"), new Text("b"));
driver.runTest();
}
@Test
public void testNoReducer() {
final List<Pair<Mapper, Reducer>> pipeline = new ArrayList<Pair<Mapper, Reducer>>();
pipeline.add(new Pair<Mapper, Reducer>(new IdentityMapper<Text, Text>(),
new IdentityReducer<Text, Text>()));
pipeline.add(null);
pipeline.add(new Pair<Mapper, Reducer>(new IdentityMapper<Text, Text>(),
new IdentityReducer<Text, Text>()));
thrown.expectMessage(NullPointerException.class, "entry 1 in list is null");
final PipelineMapReduceDriver<Text, Text, Text, Text> driver = PipelineMapReduceDriver
.newPipelineMapReduceDriver(pipeline);
driver.addInput(new Text("a"), new Text("b"));
driver.runTest();
}
@Test
public void testWithCounter() {
final PipelineMapReduceDriver<Text, Text, Text, Text> driver = PipelineMapReduceDriver.newPipelineMapReduceDriver();
driver.addMapReduce(
new TestMapDriver.MapperWithCounters<Text, Text, Text, Text>(),
new TestReduceDriver.ReducerWithCounters<Text, Text, Text, Text>());
driver.addMapReduce(
new TestMapDriver.MapperWithCounters<Text, Text, Text, Text>(),
new TestReduceDriver.ReducerWithCounters<Text, Text, Text, Text>());
driver.withInput(new Text("hie"), new Text("Hi"))
.withOutput(new Text("hie"), new Text("Hi"))
.withCounter(TestMapDriver.MapperWithCounters.Counters.X, 2)
.withCounter("category", "name", 2)
.withCounter(TestReduceDriver.ReducerWithCounters.Counters.COUNT, 2)
.withCounter(TestReduceDriver.ReducerWithCounters.Counters.SUM, 2)
.withCounter("category", "count", 2).withCounter("category", "sum", 2)
.runTest();
}
@Test
public void testWithFailedCounter() {
final PipelineMapReduceDriver<Text, Text, Text, Text> driver = PipelineMapReduceDriver.newPipelineMapReduceDriver();
driver.addMapReduce(
new TestMapDriver.MapperWithCounters<Text, Text, Text, Text>(),
new TestReduceDriver.ReducerWithCounters<Text, Text, Text, Text>());
driver.addMapReduce(
new TestMapDriver.MapperWithCounters<Text, Text, Text, Text>(),
new TestReduceDriver.ReducerWithCounters<Text, Text, Text, Text>());
thrown
.expectAssertionErrorMessage("2 Error(s): ("
+ "Counter org.apache.hadoop.mrunit.TestMapDriver.MapperWithCounters.Counters.X have value 2 instead of expected 20, "
+ "Counter with category category and name name have value 2 instead of expected 20)");
driver.withInput(new Text("hie"), new Text("Hi"))
.withOutput(new Text("hie"), new Text("Hi"))
.withCounter(TestMapDriver.MapperWithCounters.Counters.X, 20)
.withCounter("category", "name", 20).runTest();
}
@Test
public void testJavaSerialization() {
final Configuration conf = new Configuration();
conf.setStrings("io.serializations", conf.get("io.serializations"),
"org.apache.hadoop.io.serializer.JavaSerialization");
final PipelineMapReduceDriver<Integer, IntWritable, Integer, IntWritable> driver = PipelineMapReduceDriver
.newPipelineMapReduceDriver();
driver.addMapReduce(new IdentityMapper<Integer, IntWritable>(),
new IdentityReducer<Integer, IntWritable>());
driver.addMapReduce(new IdentityMapper<Integer, IntWritable>(),
new IdentityReducer<Integer, IntWritable>());
driver.withConfiguration(conf);
driver.addInput(1, new IntWritable(2));
driver.addOutput(1, new IntWritable(2));
driver.runTest();
}
}