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

网格计算

开发平台:

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.ipc;
  19. import java.io.IOException;
  20. import java.net.InetSocketAddress;
  21. import java.net.Socket;
  22. import java.net.SocketAddress;
  23. import junit.framework.TestCase;
  24. import org.apache.hadoop.conf.Configuration;
  25. import org.apache.hadoop.hdfs.DistributedFileSystem;
  26. import org.apache.hadoop.hdfs.MiniDFSCluster;
  27. import org.apache.hadoop.fs.FileSystem;
  28. import org.apache.hadoop.fs.Path;
  29. import org.apache.hadoop.mapred.JobClient;
  30. import org.apache.hadoop.mapred.JobConf;
  31. import org.apache.hadoop.mapred.JobStatus;
  32. import org.apache.hadoop.mapred.MiniMRCluster;
  33. import org.apache.hadoop.net.StandardSocketFactory;
  34. /**
  35.  * This class checks that RPCs can use specialized socket factories.
  36.  */
  37. public class TestSocketFactory extends TestCase {
  38.   /**
  39.    * Check that we can reach a NameNode or a JobTracker using a specific
  40.    * socket factory
  41.    */
  42.   public void testSocketFactory() throws IOException {
  43.     // Create a standard mini-cluster
  44.     Configuration sconf = new Configuration();
  45.     MiniDFSCluster cluster = new MiniDFSCluster(sconf, 1, true, null);
  46.     final int nameNodePort = cluster.getNameNodePort();
  47.     // Get a reference to its DFS directly
  48.     FileSystem fs = cluster.getFileSystem();
  49.     assertTrue(fs instanceof DistributedFileSystem);
  50.     DistributedFileSystem directDfs = (DistributedFileSystem) fs;
  51.     // Get another reference via network using a specific socket factory
  52.     Configuration cconf = new Configuration();
  53.     FileSystem.setDefaultUri(cconf, String.format("hdfs://localhost:%s/",
  54.         nameNodePort + 10));
  55.     cconf.set("hadoop.rpc.socket.factory.class.default",
  56.         "org.apache.hadoop.ipc.DummySocketFactory");
  57.     cconf.set("hadoop.rpc.socket.factory.class.ClientProtocol",
  58.         "org.apache.hadoop.ipc.DummySocketFactory");
  59.     cconf.set("hadoop.rpc.socket.factory.class.JobSubmissionProtocol",
  60.         "org.apache.hadoop.ipc.DummySocketFactory");
  61.     fs = FileSystem.get(cconf);
  62.     assertTrue(fs instanceof DistributedFileSystem);
  63.     DistributedFileSystem dfs = (DistributedFileSystem) fs;
  64.     JobClient client = null;
  65.     MiniMRCluster mr = null;
  66.     try {
  67.       // This will test RPC to the NameNode only.
  68.       // could we test Client-DataNode connections?
  69.       Path filePath = new Path("/dir");
  70.       assertFalse(directDfs.exists(filePath));
  71.       assertFalse(dfs.exists(filePath));
  72.       directDfs.mkdirs(filePath);
  73.       assertTrue(directDfs.exists(filePath));
  74.       assertTrue(dfs.exists(filePath));
  75.       // This will test TPC to a JobTracker
  76.       fs = FileSystem.get(sconf);
  77.       mr = new MiniMRCluster(1, fs.getUri().toString(), 1);
  78.       final int jobTrackerPort = mr.getJobTrackerPort();
  79.       JobConf jconf = new JobConf(cconf);
  80.       jconf.set("mapred.job.tracker", String.format("localhost:%d",
  81.           jobTrackerPort + 10));
  82.       client = new JobClient(jconf);
  83.       JobStatus[] jobs = client.jobsToComplete();
  84.       assertTrue(jobs.length == 0);
  85.     } finally {
  86.       try {
  87.         if (client != null)
  88.           client.close();
  89.       } catch (Exception ignored) {
  90.         // nothing we can do
  91.         ignored.printStackTrace();
  92.       }
  93.       try {
  94.         if (dfs != null)
  95.           dfs.close();
  96.       } catch (Exception ignored) {
  97.         // nothing we can do
  98.         ignored.printStackTrace();
  99.       }
  100.       try {
  101.         if (directDfs != null)
  102.           directDfs.close();
  103.       } catch (Exception ignored) {
  104.         // nothing we can do
  105.         ignored.printStackTrace();
  106.       }
  107.       try {
  108.         if (cluster != null)
  109.           cluster.shutdown();
  110.       } catch (Exception ignored) {
  111.         // nothing we can do
  112.         ignored.printStackTrace();
  113.       }
  114.       if (mr != null) {
  115.         try {
  116.           mr.shutdown();
  117.         } catch (Exception ignored) {
  118.           ignored.printStackTrace();
  119.         }
  120.       }
  121.     }
  122.   }
  123. }
  124. /**
  125.  * Dummy socket factory which shift TPC ports by subtracting 10 when
  126.  * establishing a connection
  127.  */
  128. class DummySocketFactory extends StandardSocketFactory {
  129.   /**
  130.    * Default empty constructor (for use with the reflection API).
  131.    */
  132.   public DummySocketFactory() {
  133.   }
  134.   /* @inheritDoc */
  135.   @Override
  136.   public Socket createSocket() throws IOException {
  137.     return new Socket() {
  138.       @Override
  139.       public void connect(SocketAddress addr, int timeout)
  140.           throws IOException {
  141.         assert (addr instanceof InetSocketAddress);
  142.         InetSocketAddress iaddr = (InetSocketAddress) addr;
  143.         SocketAddress newAddr = null;
  144.         if (iaddr.isUnresolved())
  145.           newAddr =
  146.               new InetSocketAddress(iaddr.getHostName(),
  147.                   iaddr.getPort() - 10);
  148.         else
  149.           newAddr =
  150.               new InetSocketAddress(iaddr.getAddress(), iaddr.getPort() - 10);
  151.         System.out.printf("Test socket: rerouting %s to %sn", iaddr,
  152.             newAddr);
  153.         super.connect(newAddr, timeout);
  154.       }
  155.     };
  156.   }
  157.   /* @inheritDoc */
  158.   @Override
  159.   public boolean equals(Object obj) {
  160.     if (this == obj)
  161.       return true;
  162.     if (obj == null)
  163.       return false;
  164.     if (!(obj instanceof DummySocketFactory))
  165.       return false;
  166.     return true;
  167.   }
  168.   /* @inheritDoc */
  169.   @Override
  170.   public int hashCode() {
  171.     // Dummy hash code (to make find bugs happy)
  172.     return 53;
  173.   }
  174. }