TestSocketIOWithTimeout.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.net;
  19. import java.io.IOException;
  20. import java.io.InputStream;
  21. import java.io.OutputStream;
  22. import java.net.SocketTimeoutException;
  23. import java.nio.channels.Pipe;
  24. import java.util.Arrays;
  25. import org.apache.commons.logging.Log;
  26. import org.apache.commons.logging.LogFactory;
  27. import junit.framework.TestCase;
  28. /**
  29.  * This tests timout out from SocketInputStream and
  30.  * SocketOutputStream using pipes.
  31.  * 
  32.  * Normal read and write using these streams are tested by pretty much
  33.  * every DFS unit test.
  34.  */
  35. public class TestSocketIOWithTimeout extends TestCase {
  36.   static Log LOG = LogFactory.getLog(TestSocketIOWithTimeout.class);
  37.   
  38.   private static int TIMEOUT = 1*1000; 
  39.   private static String TEST_STRING = "1234567890";
  40.   
  41.   private void doIO(InputStream in, OutputStream out) throws IOException {
  42.     /* Keep on writing or reading until we get SocketTimeoutException.
  43.      * It expects this exception to occur within 100 millis of TIMEOUT.
  44.      */
  45.     byte buf[] = new byte[4192];
  46.     
  47.     while (true) {
  48.       long start = System.currentTimeMillis();
  49.       try {
  50.         if (in != null) {
  51.           in.read(buf);
  52.         } else {
  53.           out.write(buf);
  54.         }
  55.       } catch (SocketTimeoutException e) {
  56.         long diff = System.currentTimeMillis() - start;
  57.         LOG.info("Got SocketTimeoutException as expected after " + 
  58.                  diff + " millis : " + e.getMessage());
  59.         assertTrue(Math.abs(TIMEOUT - diff) <= 200);
  60.         break;
  61.       }
  62.     }
  63.   }
  64.   
  65.   /**
  66.    * Just reads one byte from the input stream.
  67.    */
  68.   static class ReadRunnable implements Runnable {
  69.     private InputStream in;
  70.     public ReadRunnable(InputStream in) {
  71.       this.in = in;
  72.     }
  73.     public void run() {
  74.       try {
  75.         in.read();
  76.       } catch (IOException e) {
  77.         LOG.info("Got expection while reading as expected : " + 
  78.                  e.getMessage());
  79.         return;
  80.       }
  81.       assertTrue(false);
  82.     }
  83.   }
  84.   
  85.   public void testSocketIOWithTimeout() throws IOException {
  86.     
  87.     // first open pipe:
  88.     Pipe pipe = Pipe.open();
  89.     Pipe.SourceChannel source = pipe.source();
  90.     Pipe.SinkChannel sink = pipe.sink();
  91.     
  92.     try {
  93.       InputStream in = new SocketInputStream(source, TIMEOUT);
  94.       OutputStream out = new SocketOutputStream(sink, TIMEOUT);
  95.       
  96.       byte[] writeBytes = TEST_STRING.getBytes();
  97.       byte[] readBytes = new byte[writeBytes.length];
  98.       
  99.       out.write(writeBytes);
  100.       doIO(null, out);
  101.       
  102.       in.read(readBytes);
  103.       assertTrue(Arrays.equals(writeBytes, readBytes));
  104.       doIO(in, null);
  105.       
  106.       /*
  107.        * Verify that it handles interrupted threads properly.
  108.        * Use a large timeout and expect the thread to return quickly.
  109.        */
  110.       in = new SocketInputStream(source, 0);
  111.       Thread thread = new Thread(new ReadRunnable(in));
  112.       thread.start();
  113.       
  114.       try {
  115.         Thread.sleep(1000);
  116.       } catch (InterruptedException ignored) {}
  117.       
  118.       thread.interrupt();
  119.       
  120.       try {
  121.         thread.join();
  122.       } catch (InterruptedException e) {
  123.         throw new IOException("Unexpected InterruptedException : " + e);
  124.       }
  125.       
  126.       //make sure the channels are still open
  127.       assertTrue(source.isOpen());
  128.       assertTrue(sink.isOpen());
  129.       out.close();
  130.       assertFalse(sink.isOpen());
  131.       
  132.       // close sink and expect -1 from source.read()
  133.       assertEquals(-1, in.read());
  134.       
  135.       // make sure close() closes the underlying channel.
  136.       in.close();
  137.       assertFalse(source.isOpen());
  138.       
  139.     } finally {
  140.       if (source != null) {
  141.         source.close();
  142.       }
  143.       if (sink != null) {
  144.         sink.close();
  145.       }
  146.     }
  147.   }
  148. }