test/jdk/java/net/httpclient/security/9.policy
changeset 49765 ee6f7a61f3a5
parent 48083 b1c1b4ef4be2
child 56451 9585061fdb04
equal deleted inserted replaced
49707:f7fd051519ac 49765:ee6f7a61f3a5
     1 //
     1 //
     2 // Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
     2 // Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
     3 // DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3 // DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4 //
     4 //
     5 // This code is free software; you can redistribute it and/or modify it
     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
     6 // under the terms of the GNU General Public License version 2 only, as
     7 // published by the Free Software Foundation.
     7 // published by the Free Software Foundation.
    32     permission java.io.FilePermission "${test.src}${/}docs${/}-", "read";
    32     permission java.io.FilePermission "${test.src}${/}docs${/}-", "read";
    33     permission java.lang.RuntimePermission "createClassLoader";
    33     permission java.lang.RuntimePermission "createClassLoader";
    34 
    34 
    35 
    35 
    36     // permissions specific to this test
    36     // permissions specific to this test
    37     permission java.net.URLPermission "http://127.0.0.1:*/files/foo.txt", "GET:*";
    37     permission java.net.URLPermission "http://localhost:*/files/foo.txt", "GET:*";
    38 };
    38 };
    39 
    39 
    40 // For proxy only. Not being tested
    40 // For proxy only. Not being tested
    41 grant codebase "file:${test.classes}/proxydir/-" {
    41 grant codebase "file:${test.classes}/proxydir/-" {
    42     permission java.net.SocketPermission "localhost:1024-", "accept,listen,connect";
    42     permission java.net.SocketPermission "localhost:1024-", "accept,listen,connect";
    43     permission java.net.SocketPermission "127.0.0.1:1024-", "connect,resolve";
    43     permission java.net.SocketPermission "localhost:1024-", "connect,resolve";
    44 };
    44 };
    45 
       
    46 grant codeBase "jrt:/jdk.incubator.httpclient" {
       
    47     permission java.lang.RuntimePermission "accessClassInPackage.sun.net";
       
    48     permission java.lang.RuntimePermission "accessClassInPackage.sun.net.util";
       
    49     permission java.lang.RuntimePermission "accessClassInPackage.sun.net.www";
       
    50     permission java.lang.RuntimePermission "accessClassInPackage.jdk.internal.misc";
       
    51 
       
    52     // ## why is SP not good enough. Check API @throws signatures and impl
       
    53     permission java.net.SocketPermission "*","connect,resolve";
       
    54     permission java.net.URLPermission "http:*","*:*";
       
    55     permission java.net.URLPermission "https:*","*:*";
       
    56     permission java.net.URLPermission "ws:*","*:*";
       
    57     permission java.net.URLPermission "wss:*","*:*";
       
    58     permission java.net.URLPermission "socket:*","CONNECT";  // proxy
       
    59 
       
    60     // For request/response body processors, fromFile, asFile
       
    61     permission java.io.FilePermission "<<ALL FILES>>","read,write";  // delete???
       
    62 
       
    63     permission java.util.PropertyPermission "jdk.httpclient.*","read";
       
    64 
       
    65     permission java.net.NetPermission "getProxySelector";
       
    66 };
       
    67