TestSmallBlock.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.hdfs;
  19. import junit.framework.TestCase;
  20. import java.io.*;
  21. import java.util.Random;
  22. import org.apache.hadoop.conf.Configuration;
  23. import org.apache.hadoop.fs.FSDataInputStream;
  24. import org.apache.hadoop.fs.FSDataOutputStream;
  25. import org.apache.hadoop.fs.FileSystem;
  26. import org.apache.hadoop.fs.Path;
  27. import org.apache.hadoop.fs.BlockLocation;
  28. import org.apache.hadoop.hdfs.server.datanode.SimulatedFSDataset;
  29. /**
  30.  * This class tests the creation of files with block-size
  31.  * smaller than the default buffer size of 4K.
  32.  */
  33. public class TestSmallBlock extends TestCase {
  34.   static final long seed = 0xDEADBEEFL;
  35.   static final int blockSize = 1;
  36.   static final int fileSize = 20;
  37.   boolean simulatedStorage = false;
  38.   private void writeFile(FileSystem fileSys, Path name) throws IOException {
  39.     // create and write a file that contains three blocks of data
  40.     FSDataOutputStream stm = fileSys.create(name, true, 
  41.                                             fileSys.getConf().getInt("io.file.buffer.size", 4096),
  42.                                             (short)1, (long)blockSize);
  43.     byte[] buffer = new byte[fileSize];
  44.     Random rand = new Random(seed);
  45.     rand.nextBytes(buffer);
  46.     stm.write(buffer);
  47.     stm.close();
  48.   }
  49.   
  50.   private void checkAndEraseData(byte[] actual, int from, byte[] expected, String message) {
  51.     for (int idx = 0; idx < actual.length; idx++) {
  52.       this.assertEquals(message+" byte "+(from+idx)+" differs. expected "+
  53.                         expected[from+idx]+" actual "+actual[idx],
  54.                         actual[idx], expected[from+idx]);
  55.       actual[idx] = 0;
  56.     }
  57.   }
  58.   
  59.   private void checkFile(FileSystem fileSys, Path name) throws IOException {
  60.     BlockLocation[] locations = fileSys.getFileBlockLocations(
  61.         fileSys.getFileStatus(name), 0, fileSize);
  62.     assertEquals("Number of blocks", fileSize, locations.length);
  63.     FSDataInputStream stm = fileSys.open(name);
  64.     byte[] expected = new byte[fileSize];
  65.     if (simulatedStorage) {
  66.       for (int i = 0; i < expected.length; ++i) {  
  67.         expected[i] = SimulatedFSDataset.DEFAULT_DATABYTE;
  68.       }
  69.     } else {
  70.       Random rand = new Random(seed);
  71.       rand.nextBytes(expected);
  72.     }
  73.     // do a sanity check. Read the file
  74.     byte[] actual = new byte[fileSize];
  75.     stm.readFully(0, actual);
  76.     checkAndEraseData(actual, 0, expected, "Read Sanity Test");
  77.     stm.close();
  78.   }
  79.   
  80.   private void cleanupFile(FileSystem fileSys, Path name) throws IOException {
  81.     assertTrue(fileSys.exists(name));
  82.     fileSys.delete(name, true);
  83.     assertTrue(!fileSys.exists(name));
  84.   }
  85.   
  86.   /**
  87.    * Tests small block size in in DFS.
  88.    */
  89.   public void testSmallBlock() throws IOException {
  90.     Configuration conf = new Configuration();
  91.     if (simulatedStorage) {
  92.       conf.setBoolean("dfs.datanode.simulateddatastorage", true);
  93.     }
  94.     conf.set("io.bytes.per.checksum", "1");
  95.     MiniDFSCluster cluster = new MiniDFSCluster(conf, 1, true, null);
  96.     FileSystem fileSys = cluster.getFileSystem();
  97.     try {
  98.       Path file1 = new Path("smallblocktest.dat");
  99.       writeFile(fileSys, file1);
  100.       checkFile(fileSys, file1);
  101.       cleanupFile(fileSys, file1);
  102.     } finally {
  103.       fileSys.close();
  104.       cluster.shutdown();
  105.     }
  106.   }
  107.   public void testSmallBlockSimulatedStorage() throws IOException {
  108.     simulatedStorage = true;
  109.     testSmallBlock();
  110.     simulatedStorage = false;
  111.   }
  112. }