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

网格计算

开发平台:

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.streaming;
  19. import junit.framework.TestCase;
  20. import java.io.*;
  21. import java.util.*;
  22. import org.apache.hadoop.conf.Configuration;
  23. import org.apache.hadoop.fs.FileSystem;
  24. import org.apache.hadoop.fs.FileUtil;
  25. import org.apache.hadoop.fs.Path;
  26. /**
  27.  * This class tests if hadoopStreaming returns Exception 
  28.  * on failure when submitted an invalid/failed job
  29.  * The test case provides an invalid input file for map/reduce job as
  30.  * a unit test case
  31.  */
  32. public class TestStreamingFailure extends TestStreaming
  33. {
  34.   protected File INVALID_INPUT_FILE;// = new File("invalid_input.txt");
  35.   private StreamJob job;
  36.   public TestStreamingFailure() throws IOException
  37.   {
  38.     INVALID_INPUT_FILE = new File("invalid_input.txt");
  39.   }
  40.   protected String[] genArgs() {
  41.     return new String[] {
  42.       "-input", INVALID_INPUT_FILE.getAbsolutePath(),
  43.       "-output", OUTPUT_DIR.getAbsolutePath(),
  44.       "-mapper", map,
  45.       "-reducer", reduce,
  46.       //"-verbose",
  47.       //"-jobconf", "stream.debug=set"
  48.       "-jobconf", "keep.failed.task.files=true",
  49.       "-jobconf", "stream.tmpdir="+System.getProperty("test.build.data","/tmp")
  50.     };
  51.   }
  52.   public void testCommandLine()
  53.   {
  54.     try {
  55.       try {
  56.         FileUtil.fullyDelete(OUTPUT_DIR.getAbsoluteFile());
  57.       } catch (Exception e) {
  58.       }
  59.       boolean mayExit = false;
  60.       int returnStatus = 0;
  61.       // During tests, the default Configuration will use a local mapred
  62.       // So don't specify -config or -cluster
  63.       job = new StreamJob(genArgs(), mayExit);      
  64.       returnStatus = job.go();
  65.       assertEquals("Streaming Job Failure code expected", 5, returnStatus);
  66.     } catch(Exception e) {
  67.       // Expecting an exception
  68.     } finally {
  69.       OUTPUT_DIR.getAbsoluteFile().delete();
  70.     }
  71.   }
  72.   public static void main(String[]args) throws Exception
  73.   {
  74.       new TestStreamingFailure().testCommandLine();
  75.   }
  76. }