jdk/test/java/nio/channels/AsynchronousServerSocketChannel/WithSecurityManager.java
changeset 2057 3acf8e5e2ca0
child 5506 202f599c92aa
equal deleted inserted replaced
2056:115e09b7a004 2057:3acf8e5e2ca0
       
     1 /*
       
     2  * Copyright 2008-2009 Sun Microsystems, Inc.  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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
       
    20  * CA 95054 USA or visit www.sun.com if you need additional information or
       
    21  * have any questions.
       
    22  */
       
    23 
       
    24 /* @test
       
    25  * @bug 4607272
       
    26  * @summary Unit test for AsynchronousServerServerSocketChannel
       
    27  * @build WithSecurityManager
       
    28  * @run main/othervm WithSecurityManager allow
       
    29  * @run main/othervm WithSecurityManager deny
       
    30  */
       
    31 
       
    32 import java.nio.file.Paths;
       
    33 import java.nio.channels.*;
       
    34 import java.net.*;
       
    35 import java.util.concurrent.*;
       
    36 
       
    37 public class WithSecurityManager {
       
    38     public static void main(String[] args) throws Exception {
       
    39         boolean allow = false;
       
    40         String policy = (args[0].equals("allow")) ? "java.policy.allow" :
       
    41             "java.policy.deny";
       
    42 
       
    43         String testSrc = System.getProperty("test.src");
       
    44         if (testSrc == null)
       
    45             testSrc = ".";
       
    46 
       
    47         System.setProperty("java.security.policy",
       
    48             Paths.get(testSrc).resolve(policy).toString());
       
    49         System.setSecurityManager(new SecurityManager());
       
    50 
       
    51         AsynchronousServerSocketChannel listener =
       
    52             AsynchronousServerSocketChannel.open().bind(new InetSocketAddress(0));
       
    53 
       
    54         InetAddress lh = InetAddress.getLocalHost();
       
    55         int port = ((InetSocketAddress)(listener.getLocalAddress())).getPort();
       
    56 
       
    57         // establish and accept connection
       
    58         SocketChannel sc = SocketChannel.open(new InetSocketAddress(lh, port));
       
    59         Future<AsynchronousSocketChannel> result = listener.accept();
       
    60 
       
    61         if (allow) {
       
    62             // no security exception
       
    63             result.get().close();
       
    64         } else {
       
    65             try {
       
    66                 result.get();
       
    67             } catch (ExecutionException x) {
       
    68                 if (!(x.getCause() instanceof SecurityException))
       
    69                     throw new RuntimeException("SecurityException expected");
       
    70             }
       
    71         }
       
    72 
       
    73         sc.close();
       
    74         listener.close();
       
    75     }
       
    76 }