jdk/test/java/util/logging/ListenersWithSM.java
changeset 22046 b7163958d6d9
parent 22045 8dc8af2df113
child 22047 7980346542b6
equal deleted inserted replaced
22045:8dc8af2df113 22046:b7163958d6d9
     1 /*
       
     2  * Copyright (c) 2012, 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 7192275
       
    26  * @summary Basic test of addPropertyListener/removePropertyListener methods
       
    27  * @run main/othervm ListenersWithSM grant
       
    28  * @run main/othervm ListenersWithSM deny
       
    29  */
       
    30 
       
    31 import java.nio.file.Paths;
       
    32 import java.util.logging.LogManager;
       
    33 import java.beans.PropertyChangeListener;
       
    34 import java.beans.PropertyChangeEvent;
       
    35 
       
    36 public class ListenersWithSM {
       
    37 
       
    38     @SuppressWarnings("deprecation")
       
    39     public static void main(String[] args) throws Exception {
       
    40         boolean granted = args[0].equals("grant");
       
    41 
       
    42         // need to get reference to LogManager before setting SecurityManager
       
    43         LogManager logman = LogManager.getLogManager();
       
    44 
       
    45         // set policy and enable security manager
       
    46         if (granted) {
       
    47             String testSrc = System.getProperty("test.src");
       
    48             if (testSrc == null)
       
    49                 testSrc = ".";
       
    50             System.setProperty("java.security.policy",
       
    51                 Paths.get(testSrc).resolve("java.policy").toString());
       
    52         }
       
    53         System.setSecurityManager(new SecurityManager());
       
    54 
       
    55         PropertyChangeListener listener = new PropertyChangeListener() {
       
    56             @Override
       
    57             public void propertyChange(PropertyChangeEvent evt) {
       
    58             }
       
    59         };
       
    60 
       
    61         if (granted) {
       
    62             // permission granted, no security exception expected
       
    63             logman.addPropertyChangeListener(listener);
       
    64             logman.removePropertyChangeListener(listener);
       
    65         } else {
       
    66             // denied
       
    67             try {
       
    68                 logman.addPropertyChangeListener(listener);
       
    69                 throw new RuntimeException("SecurityException expected");
       
    70             } catch (SecurityException expected) { }
       
    71             try {
       
    72                 logman.removePropertyChangeListener(listener);
       
    73                 throw new RuntimeException("SecurityException expected");
       
    74             } catch (SecurityException expected) { }
       
    75         }
       
    76     }
       
    77 }