TestSpecialCharactersInOutputPath.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.DataOutputStream;
  20. import java.io.IOException;
  21. import junit.framework.TestCase;
  22. import org.apache.commons.logging.Log;
  23. import org.apache.commons.logging.LogFactory;
  24. import org.apache.hadoop.conf.Configuration;
  25. import org.apache.hadoop.hdfs.MiniDFSCluster;
  26. import org.apache.hadoop.fs.FileSystem;
  27. import org.apache.hadoop.fs.Path;
  28. import org.apache.hadoop.io.LongWritable;
  29. import org.apache.hadoop.io.Text;
  30. import org.apache.hadoop.mapred.lib.IdentityMapper;
  31. import org.apache.hadoop.mapred.lib.IdentityReducer;
  32. import org.apache.hadoop.util.Progressable;
  33. /**
  34.  * A JUnit test to test that jobs' output filenames are not HTML-encoded (cf HADOOP-1795).
  35.  */
  36. public class TestSpecialCharactersInOutputPath extends TestCase {
  37.   private static final Log LOG =
  38.     LogFactory.getLog(TestSpecialCharactersInOutputPath.class.getName());
  39.   
  40.   private static final String OUTPUT_FILENAME = "result[0]";
  41.   
  42.   public static boolean launchJob(String fileSys,
  43.                                        String jobTracker,
  44.                                        JobConf conf,
  45.                                        int numMaps,
  46.                                        int numReduces) throws IOException {
  47.     
  48.     final Path inDir = new Path("/testing/input");
  49.     final Path outDir = new Path("/testing/output");
  50.     FileSystem fs = FileSystem.getNamed(fileSys, conf);
  51.     fs.delete(outDir, true);
  52.     if (!fs.mkdirs(inDir)) {
  53.       LOG.warn("Can't create " + inDir);
  54.       return false;
  55.     }
  56.     // generate an input file
  57.     DataOutputStream file = fs.create(new Path(inDir, "part-0"));
  58.     file.writeBytes("foo foo2 foo3");
  59.     file.close();
  60.     // use WordCount example
  61.     FileSystem.setDefaultUri(conf, fileSys);
  62.     conf.set("mapred.job.tracker", jobTracker);
  63.     conf.setJobName("foo");
  64.     conf.setInputFormat(TextInputFormat.class);
  65.     conf.setOutputFormat(SpecialTextOutputFormat.class);
  66.     conf.setOutputKeyClass(LongWritable.class);
  67.     conf.setOutputValueClass(Text.class);
  68.     conf.setMapperClass(IdentityMapper.class);        
  69.     conf.setReducerClass(IdentityReducer.class);
  70.     FileInputFormat.setInputPaths(conf, inDir);
  71.     FileOutputFormat.setOutputPath(conf, outDir);
  72.     conf.setNumMapTasks(numMaps);
  73.     conf.setNumReduceTasks(numReduces);
  74.       
  75.     // run job and wait for completion
  76.     RunningJob runningJob = JobClient.runJob(conf);
  77.       
  78.     try {
  79.       assertTrue(runningJob.isComplete());
  80.       assertTrue(runningJob.isSuccessful());
  81.       assertTrue("Output folder not found!", fs.exists(new Path("/testing/output/" + OUTPUT_FILENAME)));
  82.     } catch (NullPointerException npe) {
  83.       // This NPE should no more happens
  84.       fail("A NPE should not have happened.");
  85.     }
  86.           
  87.     // return job result
  88.     LOG.info("job is complete: " + runningJob.isSuccessful());
  89.     return (runningJob.isSuccessful());
  90.   }
  91.   
  92.   public void testJobWithDFS() throws IOException {
  93.     String namenode = null;
  94.     MiniDFSCluster dfs = null;
  95.     MiniMRCluster mr = null;
  96.     FileSystem fileSys = null;
  97.     try {
  98.       final int taskTrackers = 4;
  99.       final int jobTrackerPort = 60050;
  100.       Configuration conf = new Configuration();
  101.       dfs = new MiniDFSCluster(conf, 1, true, null);
  102.       fileSys = dfs.getFileSystem();
  103.       namenode = fileSys.getName();
  104.       mr = new MiniMRCluster(taskTrackers, namenode, 2);
  105.       final String jobTrackerName = "localhost:" + mr.getJobTrackerPort();
  106.       JobConf jobConf = new JobConf();
  107.       boolean result;
  108.       result = launchJob(namenode, jobTrackerName, jobConf, 
  109.                               3, 1);
  110.       assertTrue(result);
  111.           
  112.     } finally {
  113.       if (dfs != null) { dfs.shutdown(); }
  114.       if (mr != null) { mr.shutdown(); }
  115.     }
  116.   }
  117.   /** generates output filenames with special characters */
  118.   static class SpecialTextOutputFormat<K,V> extends TextOutputFormat<K,V> {
  119.     @Override
  120.     public RecordWriter<K,V> getRecordWriter(FileSystem ignored, JobConf job,
  121.              String name, Progressable progress) throws IOException {
  122.         return super.getRecordWriter(ignored, job, OUTPUT_FILENAME, progress);
  123.     }
  124.   }
  125. }