TestTextOutputFormat.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:5k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.mapred;
  19. import java.io.*;
  20. import junit.framework.TestCase;
  21. import org.apache.hadoop.fs.*;
  22. import org.apache.hadoop.io.*;
  23. public class TestTextOutputFormat extends TestCase {
  24.   private static JobConf defaultConf = new JobConf();
  25.   private static FileSystem localFs = null;
  26.   static {
  27.     try {
  28.       localFs = FileSystem.getLocal(defaultConf);
  29.     } catch (IOException e) {
  30.       throw new RuntimeException("init failure", e);
  31.     }
  32.   }
  33.   // A random task attempt id for testing.
  34.   private static String attempt = "attempt_200707121733_0001_m_000000_0";
  35.   private static Path workDir = 
  36.     new Path(new Path(
  37.                       new Path(System.getProperty("test.build.data", "."), 
  38.                                "data"), 
  39.                       FileOutputCommitter.TEMP_DIR_NAME), "_" + attempt);
  40.   @SuppressWarnings("unchecked")
  41.   public void testFormat() throws Exception {
  42.     JobConf job = new JobConf();
  43.     job.set("mapred.task.id", attempt);
  44.     FileOutputFormat.setOutputPath(job, workDir.getParent().getParent());
  45.     FileOutputFormat.setWorkOutputPath(job, workDir);
  46.     FileSystem fs = workDir.getFileSystem(job);
  47.     if (!fs.mkdirs(workDir)) {
  48.       fail("Failed to create output directory");
  49.     }
  50.     String file = "test.txt";
  51.     // A reporter that does nothing
  52.     Reporter reporter = Reporter.NULL;
  53.     TextOutputFormat theOutputFormat = new TextOutputFormat();
  54.     RecordWriter theRecordWriter =
  55.       theOutputFormat.getRecordWriter(localFs, job, file, reporter);
  56.     Text key1 = new Text("key1");
  57.     Text key2 = new Text("key2");
  58.     Text val1 = new Text("val1");
  59.     Text val2 = new Text("val2");
  60.     NullWritable nullWritable = NullWritable.get();
  61.     try {
  62.       theRecordWriter.write(key1, val1);
  63.       theRecordWriter.write(null, nullWritable);
  64.       theRecordWriter.write(null, val1);
  65.       theRecordWriter.write(nullWritable, val2);
  66.       theRecordWriter.write(key2, nullWritable);
  67.       theRecordWriter.write(key1, null);
  68.       theRecordWriter.write(null, null);
  69.       theRecordWriter.write(key2, val2);
  70.     } finally {
  71.       theRecordWriter.close(reporter);
  72.     }
  73.     File expectedFile = new File(new Path(workDir, file).toString());
  74.     StringBuffer expectedOutput = new StringBuffer();
  75.     expectedOutput.append(key1).append('t').append(val1).append("n");
  76.     expectedOutput.append(val1).append("n");
  77.     expectedOutput.append(val2).append("n");
  78.     expectedOutput.append(key2).append("n");
  79.     expectedOutput.append(key1).append("n");
  80.     expectedOutput.append(key2).append('t').append(val2).append("n");
  81.     String output = UtilsForTests.slurp(expectedFile);
  82.     assertEquals(output, expectedOutput.toString());
  83.   }
  84.   @SuppressWarnings("unchecked")
  85.   public void testFormatWithCustomSeparator() throws Exception {
  86.     JobConf job = new JobConf();
  87.     String separator = "u0001";
  88.     job.set("mapred.textoutputformat.separator", separator);
  89.     job.set("mapred.task.id", attempt);
  90.     FileOutputFormat.setOutputPath(job, workDir.getParent().getParent());
  91.     FileOutputFormat.setWorkOutputPath(job, workDir);
  92.     FileSystem fs = workDir.getFileSystem(job);
  93.     if (!fs.mkdirs(workDir)) {
  94.       fail("Failed to create output directory");
  95.     }
  96.     String file = "test.txt";
  97.     // A reporter that does nothing
  98.     Reporter reporter = Reporter.NULL;
  99.     TextOutputFormat theOutputFormat = new TextOutputFormat();
  100.     RecordWriter theRecordWriter =
  101.       theOutputFormat.getRecordWriter(localFs, job, file, reporter);
  102.     Text key1 = new Text("key1");
  103.     Text key2 = new Text("key2");
  104.     Text val1 = new Text("val1");
  105.     Text val2 = new Text("val2");
  106.     NullWritable nullWritable = NullWritable.get();
  107.     try {
  108.       theRecordWriter.write(key1, val1);
  109.       theRecordWriter.write(null, nullWritable);
  110.       theRecordWriter.write(null, val1);
  111.       theRecordWriter.write(nullWritable, val2);
  112.       theRecordWriter.write(key2, nullWritable);
  113.       theRecordWriter.write(key1, null);
  114.       theRecordWriter.write(null, null);
  115.       theRecordWriter.write(key2, val2);
  116.     } finally {
  117.       theRecordWriter.close(reporter);
  118.     }
  119.     File expectedFile = new File(new Path(workDir, file).toString());
  120.     StringBuffer expectedOutput = new StringBuffer();
  121.     expectedOutput.append(key1).append(separator).append(val1).append("n");
  122.     expectedOutput.append(val1).append("n");
  123.     expectedOutput.append(val2).append("n");
  124.     expectedOutput.append(key2).append("n");
  125.     expectedOutput.append(key1).append("n");
  126.     expectedOutput.append(key2).append(separator).append(val2).append("n");
  127.     String output = UtilsForTests.slurp(expectedFile);
  128.     assertEquals(output, expectedOutput.toString());
  129.   }
  130.   public static void main(String[] args) throws Exception {
  131.     new TestTextOutputFormat().testFormat();
  132.   }
  133. }