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

网格计算

开发平台:

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 java.io.*;
  20. import org.apache.hadoop.conf.Configuration;
  21. import org.apache.hadoop.fs.FileStatus;
  22. import org.apache.hadoop.fs.FileSystem;
  23. import org.apache.hadoop.fs.Path;
  24. public class TestDFSRename extends junit.framework.TestCase {
  25.   static int countLease(MiniDFSCluster cluster) {
  26.     return cluster.getNameNode().namesystem.leaseManager.countLease();
  27.   }
  28.   
  29.   final Path dir = new Path("/test/rename/");
  30.   void list(FileSystem fs, String name) throws IOException {
  31.     FileSystem.LOG.info("nn" + name);
  32.     for(FileStatus s : fs.listStatus(dir)) {
  33.       FileSystem.LOG.info("" + s.getPath());
  34.     }
  35.   }
  36.   public void testRename() throws Exception {
  37.     Configuration conf = new Configuration();
  38.     MiniDFSCluster cluster = new MiniDFSCluster(conf, 2, true, null);
  39.     try {
  40.       FileSystem fs = cluster.getFileSystem();
  41.       assertTrue(fs.mkdirs(dir));
  42.       
  43.       { //test lease
  44.         Path a = new Path(dir, "a");
  45.         Path aa = new Path(dir, "aa");
  46.         Path b = new Path(dir, "b");
  47.   
  48.         DataOutputStream a_out = fs.create(a);
  49.         a_out.writeBytes("something");
  50.         a_out.close();
  51.         
  52.         //should not have any lease
  53.         assertEquals(0, countLease(cluster)); 
  54.   
  55.         DataOutputStream aa_out = fs.create(aa);
  56.         aa_out.writeBytes("something");
  57.   
  58.         //should have 1 lease
  59.         assertEquals(1, countLease(cluster)); 
  60.         list(fs, "rename0");
  61.         fs.rename(a, b);
  62.         list(fs, "rename1");
  63.         aa_out.writeBytes(" more");
  64.         aa_out.close();
  65.         list(fs, "rename2");
  66.   
  67.         //should not have any lease
  68.         assertEquals(0, countLease(cluster));
  69.       }
  70.       { // test non-existent destination
  71.         Path dstPath = new Path("/c/d");
  72.         assertFalse(fs.exists(dstPath));
  73.         assertFalse(fs.rename(dir, dstPath));
  74.       }
  75.       { // test rename /a/b to /a/b/c
  76.         Path src = new Path("/a/b");
  77.         Path dst = new Path("/a/b/c");
  78.         DataOutputStream a_out = fs.create(new Path(src, "foo"));
  79.         a_out.writeBytes("something");
  80.         a_out.close();
  81.         
  82.         assertFalse(fs.rename(src, dst));
  83.       }
  84.       
  85.       fs.delete(dir, true);
  86.     } finally {
  87.       if (cluster != null) {cluster.shutdown();}
  88.     }
  89.   }
  90. }