MAPREDUCE-6645. TestWordStats outputs logs under directories other than target/test-dir. Contributed by Gabor Liptak.

(cherry picked from commit 80fa70c4e1)
(cherry picked from commit 365d236175)
This commit is contained in:
Akira Ajisaka 2016-03-17 18:08:31 +09:00
parent d21bee170b
commit 73ab502271
1 changed files with 12 additions and 3 deletions

View File

@ -31,15 +31,18 @@
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.util.ToolRunner;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.Test;
public class TestWordStats {
private final static String INPUT = "src/test/java/org/apache/hadoop/examples/pi/math";
private final static String MEAN_OUTPUT = "build/data/mean_output";
private final static String MEDIAN_OUTPUT = "build/data/median_output";
private final static String STDDEV_OUTPUT = "build/data/stddev_output";
private final static String BASEDIR = System.getProperty("test.build.data",
"target/test-dir");
private final static String MEAN_OUTPUT = BASEDIR + "/mean_output";
private final static String MEDIAN_OUTPUT = BASEDIR + "/median_output";
private final static String STDDEV_OUTPUT = BASEDIR + "/stddev_output";
/**
* Modified internal test class that is designed to read all the files in the
@ -286,4 +289,10 @@ public static boolean deleteDir(File dir) {
assertEquals(stddev, wr.read(INPUT), 0.0);
}
@AfterClass public static void cleanup() throws Exception {
deleteDir(new File(MEAN_OUTPUT));
deleteDir(new File(MEDIAN_OUTPUT));
deleteDir(new File(STDDEV_OUTPUT));
}
}