TestChecksumFileSystem.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.fs;
  19. import java.net.URI;
  20. import org.apache.hadoop.fs.FileSystem;
  21. import org.apache.hadoop.fs.InMemoryFileSystem;
  22. import org.apache.hadoop.fs.FSDataOutputStream;
  23. import org.apache.hadoop.conf.Configuration;
  24. import junit.framework.TestCase;
  25. public class TestChecksumFileSystem extends TestCase {
  26.   public void testgetChecksumLength() throws Exception {
  27.     assertEquals(8, ChecksumFileSystem.getChecksumLength(0L, 512));
  28.     assertEquals(12, ChecksumFileSystem.getChecksumLength(1L, 512));
  29.     assertEquals(12, ChecksumFileSystem.getChecksumLength(512L, 512));
  30.     assertEquals(16, ChecksumFileSystem.getChecksumLength(513L, 512));
  31.     assertEquals(16, ChecksumFileSystem.getChecksumLength(1023L, 512));
  32.     assertEquals(16, ChecksumFileSystem.getChecksumLength(1024L, 512));
  33.     assertEquals(408, ChecksumFileSystem.getChecksumLength(100L, 1));
  34.     assertEquals(4000000000008L,
  35.                  ChecksumFileSystem.getChecksumLength(10000000000000L, 10));    
  36.   } 
  37.   
  38.   // cehck that the checksum file is deleted for Checksum file system.
  39.   public void testDeletionOfCheckSum() throws Exception {
  40.     Configuration conf = new Configuration();
  41.     URI uri = URI.create("ramfs://mapoutput" + "_tmp");
  42.     InMemoryFileSystem inMemFs =  (InMemoryFileSystem)FileSystem.get(uri, conf);
  43.     Path testPath = new Path("/file_1");
  44.     inMemFs.reserveSpaceWithCheckSum(testPath, 1024);
  45.     FSDataOutputStream fout = inMemFs.create(testPath);
  46.     fout.write("testing".getBytes());
  47.     fout.close();
  48.     assertTrue("checksum exists", inMemFs.exists(inMemFs.getChecksumFile(testPath)));
  49.     inMemFs.delete(testPath, true);
  50.     assertTrue("checksum deleted", !inMemFs.exists(inMemFs.getChecksumFile(testPath)));
  51.     // check for directories getting deleted.
  52.     testPath = new Path("/tesdir/file_1");
  53.     inMemFs.reserveSpaceWithCheckSum(testPath, 1024);
  54.     fout = inMemFs.create(testPath);
  55.     fout.write("testing".getBytes());
  56.     fout.close();
  57.     testPath = new Path("/testdir/file_2");
  58.     inMemFs.reserveSpaceWithCheckSum(testPath, 1024);
  59.     fout = inMemFs.create(testPath);
  60.     fout.write("testing".getBytes());
  61.     fout.close();
  62.     inMemFs.delete(testPath, true);
  63.     assertTrue("nothing in the namespace", inMemFs.listStatus(new Path("/")).length == 0);
  64.   }
  65.   
  66.   public void testVerifyChecksum() throws Exception {
  67.     String TEST_ROOT_DIR
  68.     = System.getProperty("test.build.data","build/test/data/work-dir/localfs");
  69.     
  70.     Configuration conf = new Configuration();
  71.     LocalFileSystem localFs = FileSystem.getLocal(conf);
  72.     Path testPath = new Path(TEST_ROOT_DIR, "testPath");
  73.     Path testPath11 = new Path(TEST_ROOT_DIR, "testPath11");
  74.     FSDataOutputStream fout = localFs.create(testPath);
  75.     fout.write("testing".getBytes());
  76.     fout.close();
  77.     
  78.     fout = localFs.create(testPath11);
  79.     fout.write("testing you".getBytes());
  80.     fout.close();
  81.     
  82.     localFs.delete(localFs.getChecksumFile(testPath), true);
  83.     assertTrue("checksum deleted", !localFs.exists(localFs.getChecksumFile(testPath)));
  84.     
  85.     //copying the wrong checksum file
  86.     FileUtil.copy(localFs, localFs.getChecksumFile(testPath11), localFs, 
  87.         localFs.getChecksumFile(testPath),false,true,conf);
  88.     assertTrue("checksum exists", localFs.exists(localFs.getChecksumFile(testPath)));
  89.     
  90.     boolean errorRead = false;
  91.     try {
  92.       TestLocalFileSystem.readFile(localFs, testPath);
  93.     }catch(ChecksumException ie) {
  94.       errorRead = true;
  95.     }
  96.     assertTrue("error reading", errorRead);
  97.     
  98.     //now setting verify false, the read should succeed
  99.     localFs.setVerifyChecksum(false);
  100.     String str = TestLocalFileSystem.readFile(localFs, testPath);
  101.     assertTrue("read", "testing".equals(str));
  102.     
  103.   }
  104. }