TestRestartDFS.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 junit.framework.TestCase;
  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. /**
  25.  * A JUnit test for checking if restarting DFS preserves integrity.
  26.  */
  27. public class TestRestartDFS extends TestCase {
  28.   /** check if DFS remains in proper condition after a restart */
  29.   public void testRestartDFS() throws Exception {
  30.     final Configuration conf = new Configuration();
  31.     MiniDFSCluster cluster = null;
  32.     DFSTestUtil files = new DFSTestUtil("TestRestartDFS", 20, 3, 8*1024);
  33.     final String dir = "/srcdat";
  34.     final Path rootpath = new Path("/");
  35.     final Path dirpath = new Path(dir);
  36.     long rootmtime;
  37.     FileStatus rootstatus;
  38.     FileStatus dirstatus;
  39.     try {
  40.       cluster = new MiniDFSCluster(conf, 4, true, null);
  41.       FileSystem fs = cluster.getFileSystem();
  42.       files.createFiles(fs, dir);
  43.       rootmtime = fs.getFileStatus(rootpath).getModificationTime();
  44.       rootstatus = fs.getFileStatus(dirpath);
  45.       dirstatus = fs.getFileStatus(dirpath);
  46.       fs.setOwner(rootpath, rootstatus.getOwner() + "_XXX", null);
  47.       fs.setOwner(dirpath, null, dirstatus.getGroup() + "_XXX");
  48.     } finally {
  49.       if (cluster != null) { cluster.shutdown(); }
  50.     }
  51.     try {
  52.       // Here we restart the MiniDFScluster without formatting namenode
  53.       cluster = new MiniDFSCluster(conf, 4, false, null);
  54.       FileSystem fs = cluster.getFileSystem();
  55.       assertTrue("Filesystem corrupted after restart.",
  56.                  files.checkFiles(fs, dir));
  57.       final FileStatus newrootstatus = fs.getFileStatus(rootpath);
  58.       assertEquals(rootmtime, newrootstatus.getModificationTime());
  59.       assertEquals(rootstatus.getOwner() + "_XXX", newrootstatus.getOwner());
  60.       assertEquals(rootstatus.getGroup(), newrootstatus.getGroup());
  61.       final FileStatus newdirstatus = fs.getFileStatus(dirpath);
  62.       assertEquals(dirstatus.getOwner(), newdirstatus.getOwner());
  63.       assertEquals(dirstatus.getGroup() + "_XXX", newdirstatus.getGroup());
  64.       files.cleanup(fs, dir);
  65.     } finally {
  66.       if (cluster != null) { cluster.shutdown(); }
  67.     }
  68.   }
  69. }