test/jdk/java/lang/SecurityManager/NoAWT.java
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 22060 jdk/test/java/lang/SecurityManager/NoAWT.java@cd4f9d7dbeda
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15685
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
     1
/*
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
     2
 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
     4
 *
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
     7
 * published by the Free Software Foundation.
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
     8
 *
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    13
 * accompanied this code).
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    14
 *
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    18
 *
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    21
 * questions.
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    22
 */
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    23
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    24
/* @test
22060
cd4f9d7dbeda 8029886: Change SecurityManager check{TopLevelWindow, SystemClipboardAccessAwtEventQueueAccess} to check AllPermission
alanb
parents: 16039
diff changeset
    25
 * @bug 8004502 8008793 8029886
cd4f9d7dbeda 8029886: Change SecurityManager check{TopLevelWindow, SystemClipboardAccessAwtEventQueueAccess} to check AllPermission
alanb
parents: 16039
diff changeset
    26
 * @summary Sanity check that SecurityManager methods that used to check
cd4f9d7dbeda 8029886: Change SecurityManager check{TopLevelWindow, SystemClipboardAccessAwtEventQueueAccess} to check AllPermission
alanb
parents: 16039
diff changeset
    27
 *          AWTPermission now check for AllPermission
15685
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    28
 */
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    29
16039
85372a48f9aa 8008793: SecurityManager.checkXXX behavior not specified for methods that check AWTPermission and AWT not present
alanb
parents: 15685
diff changeset
    30
import java.security.AllPermission;
85372a48f9aa 8008793: SecurityManager.checkXXX behavior not specified for methods that check AWTPermission and AWT not present
alanb
parents: 15685
diff changeset
    31
import java.security.Permission;
85372a48f9aa 8008793: SecurityManager.checkXXX behavior not specified for methods that check AWTPermission and AWT not present
alanb
parents: 15685
diff changeset
    32
15685
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    33
public class NoAWT {
16039
85372a48f9aa 8008793: SecurityManager.checkXXX behavior not specified for methods that check AWTPermission and AWT not present
alanb
parents: 15685
diff changeset
    34
85372a48f9aa 8008793: SecurityManager.checkXXX behavior not specified for methods that check AWTPermission and AWT not present
alanb
parents: 15685
diff changeset
    35
    static class MySecurityManager extends SecurityManager {
22060
cd4f9d7dbeda 8029886: Change SecurityManager check{TopLevelWindow, SystemClipboardAccessAwtEventQueueAccess} to check AllPermission
alanb
parents: 16039
diff changeset
    36
        final Class<?> expectedClass;
16039
85372a48f9aa 8008793: SecurityManager.checkXXX behavior not specified for methods that check AWTPermission and AWT not present
alanb
parents: 15685
diff changeset
    37
22060
cd4f9d7dbeda 8029886: Change SecurityManager check{TopLevelWindow, SystemClipboardAccessAwtEventQueueAccess} to check AllPermission
alanb
parents: 16039
diff changeset
    38
        MySecurityManager(Class<?> c) {
16039
85372a48f9aa 8008793: SecurityManager.checkXXX behavior not specified for methods that check AWTPermission and AWT not present
alanb
parents: 15685
diff changeset
    39
            expectedClass = c;
85372a48f9aa 8008793: SecurityManager.checkXXX behavior not specified for methods that check AWTPermission and AWT not present
alanb
parents: 15685
diff changeset
    40
        }
85372a48f9aa 8008793: SecurityManager.checkXXX behavior not specified for methods that check AWTPermission and AWT not present
alanb
parents: 15685
diff changeset
    41
85372a48f9aa 8008793: SecurityManager.checkXXX behavior not specified for methods that check AWTPermission and AWT not present
alanb
parents: 15685
diff changeset
    42
        @Override
85372a48f9aa 8008793: SecurityManager.checkXXX behavior not specified for methods that check AWTPermission and AWT not present
alanb
parents: 15685
diff changeset
    43
        public void checkPermission(Permission perm) {
85372a48f9aa 8008793: SecurityManager.checkXXX behavior not specified for methods that check AWTPermission and AWT not present
alanb
parents: 15685
diff changeset
    44
            if (perm.getClass() != expectedClass)
85372a48f9aa 8008793: SecurityManager.checkXXX behavior not specified for methods that check AWTPermission and AWT not present
alanb
parents: 15685
diff changeset
    45
                throw new RuntimeException("Got: " + perm.getClass() + ", expected: " + expectedClass);
85372a48f9aa 8008793: SecurityManager.checkXXX behavior not specified for methods that check AWTPermission and AWT not present
alanb
parents: 15685
diff changeset
    46
            super.checkPermission(perm);
85372a48f9aa 8008793: SecurityManager.checkXXX behavior not specified for methods that check AWTPermission and AWT not present
alanb
parents: 15685
diff changeset
    47
        }
85372a48f9aa 8008793: SecurityManager.checkXXX behavior not specified for methods that check AWTPermission and AWT not present
alanb
parents: 15685
diff changeset
    48
    }
85372a48f9aa 8008793: SecurityManager.checkXXX behavior not specified for methods that check AWTPermission and AWT not present
alanb
parents: 15685
diff changeset
    49
15685
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    50
    public static void main(String[] args) {
22060
cd4f9d7dbeda 8029886: Change SecurityManager check{TopLevelWindow, SystemClipboardAccessAwtEventQueueAccess} to check AllPermission
alanb
parents: 16039
diff changeset
    51
        MySecurityManager sm = new MySecurityManager(AllPermission.class);
15685
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    52
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    53
        try {
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    54
            sm.checkAwtEventQueueAccess();
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    55
            throw new RuntimeException("SecurityException expected");
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    56
        } catch (SecurityException expected) { }
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    57
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    58
        try {
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    59
            sm.checkSystemClipboardAccess();
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    60
            throw new RuntimeException("SecurityException expected");
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    61
        } catch (SecurityException expected) { }
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    62
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    63
        try {
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    64
            sm.checkTopLevelWindow(null);
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    65
            throw new RuntimeException("NullPointException expected");
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    66
        } catch (NullPointerException expected) { }
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    67
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    68
        if (sm.checkTopLevelWindow(new Object())) {
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    69
            throw new RuntimeException("checkTopLevelWindow expected to return false");
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    70
        }
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    71
    }
14c6889b6132 8004502: Compact Profiles contents
alanb
parents:
diff changeset
    72
}