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

网格计算

开发平台:

Java

  1. /* Licensed to the Apache Software Foundation (ASF) under one
  2.  * or more contributor license agreements.  See the NOTICE file
  3.  * distributed with this work for additional information
  4.  * regarding copyright ownership.  The ASF licenses this file
  5.  * to you under the Apache License, Version 2.0 (the
  6.  * "License"); you may not use this file except in compliance
  7.  * with the License.  You may obtain a copy of the License at
  8.  *
  9.  *     http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.apache.hadoop.mapred;
  18. import java.io.File;
  19. import java.io.FileOutputStream;
  20. import junit.framework.TestCase;
  21. import org.apache.hadoop.conf.Configuration;
  22. import org.apache.hadoop.fs.*;
  23. import org.apache.hadoop.util.ToolRunner;
  24. import org.apache.hadoop.hdfs.MiniDFSCluster;
  25. /**
  26.  * check for the job submission  options of 
  27.  * -libjars -files -archives
  28.  */
  29. public class TestCommandLineJobSubmission extends TestCase {
  30.   // Input output paths for this.. 
  31.   // these are all dummy and does not test
  32.   // much in map reduce except for the command line
  33.   // params 
  34.   static final Path input = new Path("/test/input/");
  35.   static final Path output = new Path("/test/output");
  36.   File buildDir = new File(System.getProperty("test.build.data", "/tmp"));
  37.   public void testJobShell() throws Exception {
  38.     MiniDFSCluster dfs = null;
  39.     MiniMRCluster mr = null;
  40.     FileSystem fs = null;
  41.     Path testFile = new Path(input, "testfile");
  42.     try {
  43.       Configuration conf = new Configuration();
  44.       //start the mini mr and dfs cluster.
  45.       dfs = new MiniDFSCluster(conf, 2 , true, null);
  46.       fs = dfs.getFileSystem();
  47.       FSDataOutputStream stream = fs.create(testFile);
  48.       stream.write("teststring".getBytes());
  49.       stream.close();
  50.       mr = new MiniMRCluster(2, fs.getUri().toString(), 1);
  51.       File thisbuildDir = new File(buildDir, "jobCommand");
  52.       assertTrue("create build dir", thisbuildDir.mkdirs()); 
  53.       File f = new File(thisbuildDir, "files_tmp");
  54.       FileOutputStream fstream = new FileOutputStream(f);
  55.       fstream.write("somestrings".getBytes());
  56.       fstream.close();
  57.       String[] args = new String[6];
  58.       args[0] = "-files";
  59.       args[1] = f.toString();
  60.       args[2] = "-libjars";
  61.       // the testjob.jar as a temporary jar file 
  62.       // rather than creating its own
  63.       args[3] = "build/test/testjar/testjob.jar";
  64.       args[4] = input.toString();
  65.       args[5] = output.toString();
  66.       
  67.       JobConf jobConf = mr.createJobConf();
  68.       //before running the job, verify that libjar is not in client classpath
  69.       assertTrue("libjar not in client classpath", loadLibJar(jobConf)==null);
  70.       int ret = ToolRunner.run(jobConf,
  71.                                new testshell.ExternalMapReduce(), args);
  72.       //after running the job, verify that libjar is in the client classpath
  73.       assertTrue("libjar added to client classpath", loadLibJar(jobConf)!=null);
  74.       
  75.       assertTrue("not failed ", ret != -1);
  76.       f.delete();
  77.       thisbuildDir.delete();
  78.     } finally {
  79.       if (dfs != null) {dfs.shutdown();};
  80.       if (mr != null) {mr.shutdown();};
  81.     }
  82.   }
  83.   
  84.   @SuppressWarnings("unchecked")
  85.   private Class loadLibJar(JobConf jobConf) {
  86.     try {
  87.       return jobConf.getClassByName("testjar.ClassWordCount");
  88.     } catch (ClassNotFoundException e) {
  89.       return null;
  90.     }
  91.   }
  92. }