blob: 70006141f9e9752cbb313918972a76d549fcc977 [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.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mrunit.types.Pair;
/**
* Harness that allows you to test a Mapper instance. You provide the input
* (k, v)* pairs that should be sent to the Mapper, and outputs you expect to be
* sent by the Mapper to the collector for those inputs. By calling runTest(),
* the harness will deliver the input to the Mapper and will check its outputs
* against the expected results.
*/
public abstract class MapDriverBase<K1, V1, K2, V2> extends
TestDriver<K1, V1, K2, V2> {
public static final Log LOG = LogFactory.getLog(MapDriverBase.class);
protected List<Pair<K1, V1>> inputs = new ArrayList<Pair<K1, V1>>();
@Deprecated
protected K1 inputKey;
@Deprecated
protected V1 inputVal;
/**
* Sets the input key to send to the mapper
*
* @param key
*/
@Deprecated
public void setInputKey(final K1 key) {
inputKey = copy(key);
}
@Deprecated
public K1 getInputKey() {
return inputKey;
}
/**
* Sets the input value to send to the mapper
*
* @param val
*/
@Deprecated
public void setInputValue(final V1 val) {
inputVal = copy(val);
}
@Deprecated
public V1 getInputValue() {
return inputVal;
}
/**
* Sets the input to send to the mapper
*
*/
public void setInput(final K1 key, final V1 val) {
setInput(new Pair<K1, V1>(key, val));
}
/**
* Sets the input to send to the mapper
*
* @param inputRecord
* a (key, val) pair
*/
public void setInput(final Pair<K1, V1> inputRecord) {
setInputKey(inputRecord.getFirst());
setInputValue(inputRecord.getSecond());
clearInput();
addInput(inputRecord);
}
/**
* Adds an input to send to the mapper
*
* @param key
* @param val
*/
public void addInput(final K1 key, final V1 val) {
inputs.add(copyPair(key, val));
}
/**
* Adds an input to send to the mapper
*
* @param input
* a (K, V) pair
*/
public void addInput(final Pair<K1, V1> input) {
addInput(input.getFirst(), input.getSecond());
}
/**
* Adds list of inputs to send to the mapper
*
* @param inputs
* list of (K, V) pairs
*/
public void addAll(final List<Pair<K1, V1>> inputs) {
for (Pair<K1, V1> input : inputs) {
addInput(input);
}
}
/**
* Clears the list of inputs to send to the mapper
*/
public void clearInput() {
inputs.clear();
}
/**
* Adds output (k, v)* pairs we expect from the Mapper
*
* @param outputRecords
* The (k, v)* pairs to add
*/
public void addAllOutput(final List<Pair<K2, V2>> outputRecords) {
for (Pair<K2, V2> output : outputRecords) {
addOutput(output);
}
}
/**
* Adds an output (k, v) pair we expect from the Mapper
*
* @param outputRecord
* The (k, v) pair to add
*/
public void addOutput(final Pair<K2, V2> outputRecord) {
addOutput(outputRecord.getFirst(), outputRecord.getSecond());
}
/**
* Adds a (k, v) pair we expect as output from the mapper
*
*/
public void addOutput(final K2 key, final V2 val) {
expectedOutputs.add(copyPair(key, val));
}
/**
* Expects an input of the form "key \t val" Forces the Mapper input types to
* Text.
*
* @param input
* A string of the form "key \t val".
* @deprecated No replacement due to lack of type safety and incompatibility
* with non Text Writables
*/
@Deprecated
@SuppressWarnings("unchecked")
public void setInputFromString(final String input) {
final Pair<Text, Text> inputPair = parseTabbedPair(input);
setInputKey((K1) inputPair.getFirst());
setInputValue((V1) inputPair.getSecond());
}
/**
* Expects an input of the form "key \t val" Forces the Mapper output types to
* Text.
*
* @param output
* A string of the form "key \t val". Trims any whitespace.
* @deprecated No replacement due to lack of type safety and incompatibility
* with non Text Writables
*/
@Deprecated
@SuppressWarnings("unchecked")
public void addOutputFromString(final String output) {
addOutput((Pair<K2, V2>) parseTabbedPair(output));
}
@Override
public abstract List<Pair<K2, V2>> run() throws IOException;
@Override
public void runTest(final boolean orderMatters) throws IOException {
for (Pair<K1, V1> input : inputs) {
LOG.debug("Mapping input (" + input.getFirst() + ", " + input.getSecond() + ")");
}
final List<Pair<K2, V2>> outputs = run();
validate(outputs, orderMatters);
validate(counterWrapper);
}
}