1 /*
   2  * Copyright (c) 2013, 2017, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 8004502 8008793 8029886 8186535
  26  * @summary Sanity check that the SecurityManager checkMemberAccess method and
  27  *          methods that used to check AWTPermission now check for AllPermission
  28  */
  29 
  30 import java.security.AllPermission;
  31 import java.security.Permission;
  32 
  33 public class DepMethodsRequireAllPerm {
  34 
  35     static class MySecurityManager extends SecurityManager {
  36         final Class<?> expectedClass;
  37 
  38         MySecurityManager(Class<?> c) {
  39             expectedClass = c;
  40         }
  41 
  42         @Override
  43         public void checkPermission(Permission perm) {
  44             if (perm.getClass() != expectedClass)
  45                 throw new RuntimeException("Got: " + perm.getClass() + ", expected: " + expectedClass);
  46             super.checkPermission(perm);
  47         }
  48     }
  49 
  50     public static void main(String[] args) {
  51         MySecurityManager sm = new MySecurityManager(AllPermission.class);
  52 
  53         try {
  54             sm.checkAwtEventQueueAccess();
  55             throw new RuntimeException("SecurityException expected");
  56         } catch (SecurityException expected) { }
  57 
  58         try {
  59             sm.checkSystemClipboardAccess();
  60             throw new RuntimeException("SecurityException expected");
  61         } catch (SecurityException expected) { }
  62 
  63         try {
  64             sm.checkTopLevelWindow(null);
  65             throw new RuntimeException("NullPointException expected");
  66         } catch (NullPointerException expected) { }
  67 
  68         if (sm.checkTopLevelWindow(new Object())) {
  69             throw new RuntimeException("checkTopLevelWindow expected to return false");
  70         }
  71 
  72         try {
  73             sm.checkMemberAccess(Object.class, java.lang.reflect.Member.DECLARED);
  74             throw new RuntimeException("SecurityException expected");
  75         } catch (SecurityException expected) { }
  76 
  77         try {
  78             sm.checkMemberAccess(null, java.lang.reflect.Member.DECLARED);
  79             throw new RuntimeException("NullPointerException expected");
  80         } catch (NullPointerException expected) { }
  81     }
  82 }