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

网格计算

开发平台:

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 org.apache.hadoop.conf.Configuration;
  20. import org.apache.hadoop.fs.permission.*;
  21. import org.apache.hadoop.util.StringUtils;
  22. import org.apache.hadoop.util.Shell;
  23. import java.io.*;
  24. import java.util.*;
  25. import junit.framework.*;
  26. /**
  27.  * This class tests the local file system via the FileSystem abstraction.
  28.  */
  29. public class TestLocalFileSystemPermission extends TestCase {
  30.   static final String TEST_PATH_PREFIX = new Path(System.getProperty(
  31.       "test.build.data", "/tmp")).toString().replace(' ', '_')
  32.       + "/" + TestLocalFileSystemPermission.class.getSimpleName() + "_";
  33.   {
  34.     try {
  35.       ((org.apache.commons.logging.impl.Log4JLogger)FileSystem.LOG).getLogger()
  36.       .setLevel(org.apache.log4j.Level.DEBUG);
  37.     }
  38.     catch(Exception e) {
  39.       System.out.println("Cannot change log leveln"
  40.           + StringUtils.stringifyException(e));
  41.     }
  42.   }
  43.   private Path writeFile(FileSystem fs, String name) throws IOException {
  44.     Path f = new Path(TEST_PATH_PREFIX + name);
  45.     FSDataOutputStream stm = fs.create(f);
  46.     stm.writeBytes("42n");
  47.     stm.close();
  48.     return f;
  49.   }
  50.   private void cleanupFile(FileSystem fs, Path name) throws IOException {
  51.     assertTrue(fs.exists(name));
  52.     fs.delete(name, true);
  53.     assertTrue(!fs.exists(name));
  54.   }
  55.   /** Test LocalFileSystem.setPermission */
  56.   public void testLocalFSsetPermission() throws IOException {
  57.     if (Path.WINDOWS) {
  58.       System.out.println("Cannot run test for Windows");
  59.       return;
  60.     }
  61.     Configuration conf = new Configuration();
  62.     LocalFileSystem localfs = FileSystem.getLocal(conf);
  63.     String filename = "foo";
  64.     Path f = writeFile(localfs, filename);
  65.     try {
  66.       System.out.println(filename + ": " + getPermission(localfs, f));
  67.     }
  68.     catch(Exception e) {
  69.       System.out.println(StringUtils.stringifyException(e));
  70.       System.out.println("Cannot run test");
  71.       return;
  72.     }
  73.     try {
  74.       // create files and manipulate them.
  75.       FsPermission all = new FsPermission((short)0777);
  76.       FsPermission none = new FsPermission((short)0);
  77.       localfs.setPermission(f, none);
  78.       assertEquals(none, getPermission(localfs, f));
  79.       localfs.setPermission(f, all);
  80.       assertEquals(all, getPermission(localfs, f));
  81.     }
  82.     finally {cleanupFile(localfs, f);}
  83.   }
  84.   FsPermission getPermission(LocalFileSystem fs, Path p) throws IOException {
  85.     return fs.getFileStatus(p).getPermission();
  86.   }
  87.   /** Test LocalFileSystem.setOwner */
  88.   public void testLocalFSsetOwner() throws IOException {
  89.     if (Path.WINDOWS) {
  90.       System.out.println("Cannot run test for Windows");
  91.       return;
  92.     }
  93.     Configuration conf = new Configuration();
  94.     LocalFileSystem localfs = FileSystem.getLocal(conf);
  95.     String filename = "bar";
  96.     Path f = writeFile(localfs, filename);
  97.     List<String> groups = null;
  98.     try {
  99.       groups = getGroups();
  100.       System.out.println(filename + ": " + getPermission(localfs, f));
  101.     }
  102.     catch(IOException e) {
  103.       System.out.println(StringUtils.stringifyException(e));
  104.       System.out.println("Cannot run test");
  105.       return;
  106.     }
  107.     if (groups == null || groups.size() < 1) {
  108.       System.out.println("Cannot run test: need at least one group.  groups="
  109.                          + groups);
  110.       return;
  111.     }
  112.     // create files and manipulate them.
  113.     try {
  114.       String g0 = groups.get(0);
  115.       localfs.setOwner(f, null, g0);
  116.       assertEquals(g0, getGroup(localfs, f));
  117.       if (groups.size() > 1) {
  118.         String g1 = groups.get(1);
  119.         localfs.setOwner(f, null, g1);
  120.         assertEquals(g1, getGroup(localfs, f));
  121.       } else {
  122.         System.out.println("Not testing changing the group since user " +
  123.                            "belongs to only one group.");
  124.       }
  125.     } 
  126.     finally {cleanupFile(localfs, f);}
  127.   }
  128.   static List<String> getGroups() throws IOException {
  129.     List<String> a = new ArrayList<String>();
  130.     String s = Shell.execCommand(Shell.getGROUPS_COMMAND());
  131.     for(StringTokenizer t = new StringTokenizer(s); t.hasMoreTokens(); ) {
  132.       a.add(t.nextToken());
  133.     }
  134.     return a;
  135.   }
  136.   String getGroup(LocalFileSystem fs, Path p) throws IOException {
  137.     return fs.getFileStatus(p).getGroup();
  138.   }
  139. }