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

网格计算

开发平台:

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. import org.apache.hadoop.mapred.*;
  27. import org.apache.hadoop.hdfs.MiniDFSCluster;
  28. /**
  29.  * This test case tests the symlink creation
  30.  * utility provided by distributed caching 
  31.  */
  32. public class TestSymLink extends TestCase
  33. {
  34.   String INPUT_FILE = "/testing-streaming/input.txt";
  35.   String OUTPUT_DIR = "/testing-streaming/out";
  36.   String CACHE_FILE = "/testing-streaming/cache.txt";
  37.   String input = "check to see if we can read this none reduce";
  38.   String map = "xargs cat ";
  39.   String reduce = "cat";
  40.   String mapString = "testlinkn";
  41.   String cacheString = "This is just the cache string";
  42.   StreamJob job;
  43.   public TestSymLink() throws IOException
  44.   {
  45.   }
  46.   public void testSymLink()
  47.   {
  48.     try {
  49.       boolean mayExit = false;
  50.       MiniMRCluster mr = null;
  51.       MiniDFSCluster dfs = null; 
  52.       try{
  53.         Configuration conf = new Configuration();
  54.         dfs = new MiniDFSCluster(conf, 1, true, null);
  55.         FileSystem fileSys = dfs.getFileSystem();
  56.         String namenode = fileSys.getName();
  57.         mr  = new MiniMRCluster(1, namenode, 3);
  58.         // During tests, the default Configuration will use a local mapred
  59.         // So don't specify -config or -cluster
  60.         String strJobtracker = "mapred.job.tracker=" + "localhost:" + mr.getJobTrackerPort();
  61.         String strNamenode = "fs.default.name=" + namenode;
  62.         String argv[] = new String[] {
  63.           "-input", INPUT_FILE,
  64.           "-output", OUTPUT_DIR,
  65.           "-mapper", map,
  66.           "-reducer", reduce,
  67.           //"-verbose",
  68.           //"-jobconf", "stream.debug=set"
  69.           "-jobconf", strNamenode,
  70.           "-jobconf", strJobtracker,
  71.           "-jobconf", "stream.tmpdir="+System.getProperty("test.build.data","/tmp"),
  72.           "-jobconf", "mapred.child.java.opts=-Dcontrib.name=" + System.getProperty("contrib.name") + " " +
  73.                       "-Dbuild.test=" + System.getProperty("build.test") + " " +
  74.                       conf.get("mapred.child.java.opts",""),
  75.           "-cacheFile", "hdfs://"+fileSys.getName()+CACHE_FILE + "#testlink"
  76.         };
  77.         fileSys.delete(new Path(OUTPUT_DIR));
  78.         
  79.         DataOutputStream file = fileSys.create(new Path(INPUT_FILE));
  80.         file.writeBytes(mapString);
  81.         file.close();
  82.         file = fileSys.create(new Path(CACHE_FILE));
  83.         file.writeBytes(cacheString);
  84.         file.close();
  85.           
  86.         job = new StreamJob(argv, mayExit);      
  87.         job.go();
  88.         fileSys = dfs.getFileSystem();
  89.         String line = null;
  90.         Path[] fileList = FileUtil.stat2Paths(fileSys.listStatus(
  91.                                                 new Path(OUTPUT_DIR),
  92.                                                 new OutputLogFilter()));
  93.         for (int i = 0; i < fileList.length; i++){
  94.           System.out.println(fileList[i].toString());
  95.           BufferedReader bread =
  96.             new BufferedReader(new InputStreamReader(fileSys.open(fileList[i])));
  97.           line = bread.readLine();
  98.           System.out.println(line);
  99.         }
  100.         assertEquals(cacheString + "t", line);
  101.       } finally{
  102.         if (dfs != null) { dfs.shutdown(); }
  103.         if (mr != null) { mr.shutdown();}
  104.       }
  105.       
  106.     } catch(Exception e) {
  107.       failTrace(e);
  108.     }
  109.   }
  110.   void failTrace(Exception e)
  111.   {
  112.     StringWriter sw = new StringWriter();
  113.     e.printStackTrace(new PrintWriter(sw));
  114.     fail(sw.toString());
  115.   }
  116.   public static void main(String[]args) throws Exception
  117.   {
  118.     new TestStreaming().testCommandLine();
  119.   }
  120. }