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

网格计算

开发平台:

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.permission;
  19. import junit.framework.TestCase;
  20. import static org.apache.hadoop.fs.permission.FsAction.*;
  21. public class TestFsPermission extends TestCase {
  22.   public void testFsAction() {
  23.     //implies
  24.     for(FsAction a : FsAction.values()) {
  25.       assertTrue(ALL.implies(a));
  26.     }
  27.     for(FsAction a : FsAction.values()) {
  28.       assertTrue(a == NONE? NONE.implies(a): !NONE.implies(a));
  29.     }
  30.     for(FsAction a : FsAction.values()) {
  31.       assertTrue(a == READ_EXECUTE || a == READ || a == EXECUTE || a == NONE?
  32.           READ_EXECUTE.implies(a): !READ_EXECUTE.implies(a));
  33.     }
  34.     //masks
  35.     assertEquals(EXECUTE, EXECUTE.and(READ_EXECUTE));
  36.     assertEquals(READ, READ.and(READ_EXECUTE));
  37.     assertEquals(NONE, WRITE.and(READ_EXECUTE));
  38.     assertEquals(READ, READ_EXECUTE.and(READ_WRITE));
  39.     assertEquals(NONE, READ_EXECUTE.and(WRITE));
  40.     assertEquals(WRITE_EXECUTE, ALL.and(WRITE_EXECUTE));
  41.   }
  42.   public void testFsPermission() {
  43.     for(short s = 0; s < (1<<9); s++) {
  44.       assertEquals(s, new FsPermission(s).toShort());
  45.     }
  46.     String symbolic = "-rwxrwxrwx";
  47.     StringBuilder b = new StringBuilder("-123456789");
  48.     for(int i = 0; i < (1<<9); i++) {
  49.       for(int j = 1; j < 10; j++) {
  50.         b.setCharAt(j, '-');
  51.       }
  52.       String binary = Integer.toBinaryString(i);
  53.       int len = binary.length();
  54.       for(int j = 0; j < len; j++) {
  55.         if (binary.charAt(j) == '1') {
  56.           int k = 9 - (len - 1 - j);
  57.           b.setCharAt(k, symbolic.charAt(k));
  58.         }
  59.       }
  60.       assertEquals(i, FsPermission.valueOf(b.toString()).toShort());
  61.     }
  62.   }
  63. }