# HG changeset patch # User chegar # Date 1520431816 0 # Node ID 697f7f055712d637f4aa0628faab7703ffebfef7 # Parent 82a9340bdda6e4892105baeeed82833c403e9ccf http-client-branch: rework file permissions to use limited doPriv - forgotten test policy files diff -r 82a9340bdda6 -r 697f7f055712 test/jdk/java/net/httpclient/RequestBodyTest.policy --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/jdk/java/net/httpclient/RequestBodyTest.policy Wed Mar 07 14:10:16 2018 +0000 @@ -0,0 +1,52 @@ +// +// Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. +// DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +// +// This code is free software; you can redistribute it and/or modify it +// under the terms of the GNU General Public License version 2 only, as +// published by the Free Software Foundation. +// +// This code is distributed in the hope that it will be useful, but WITHOUT +// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +// version 2 for more details (a copy is included in the LICENSE file that +// accompanied this code). +// +// You should have received a copy of the GNU General Public License version +// 2 along with this work; if not, write to the Free Software Foundation, +// Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. +// +// Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA +// or visit www.oracle.com if you need additional information or have any +// questions. +// + +// for JTwork//classes/0/test/lib/jdk/test/lib/util/FileUtils.class +grant codeBase "file:${test.classes}/../../../../test/lib/-" { + permission java.util.PropertyPermission "*", "read"; + permission java.io.FilePermission "RequestBodyTest.tmp", "read,delete"; +}; + +// for JTwork/classes/0/lib/testlibrary/jdk/testlibrary/SimpleSSLContext.class +grant codeBase "file:${test.classes}/../../../../lib/testlibrary/-" { + permission java.util.PropertyPermission "test.src.path", "read"; + permission java.io.FilePermission "${test.src}/../../../lib/testlibrary/jdk/testlibrary/testkeys", "read"; +}; + +grant codeBase "file:${test.classes}/*" { + permission java.io.FilePermission "${test.src}${/}docs${/}files${/}smallfile.txt", "read"; + permission java.io.FilePermission "${test.src}${/}docs${/}files${/}notsobigfile.txt", "read"; + permission java.io.FilePermission "RequestBodyTest.tmp", "read,write,delete"; + + permission java.net.URLPermission "http://127.0.0.1:*/echo/foo", "POST"; + permission java.net.URLPermission "https://127.0.0.1:*/echo/foo", "POST"; + + // for HTTP/1.1 server logging + permission java.util.logging.LoggingPermission "control"; + + // needed to grant the HTTP server + permission java.net.SocketPermission "127.0.0.1:*", "accept,resolve"; + + permission java.util.PropertyPermission "*", "read"; + permission java.lang.RuntimePermission "modifyThread"; +}; diff -r 82a9340bdda6 -r 697f7f055712 test/jdk/java/net/httpclient/security/filePerms/nopermissions.policy --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/jdk/java/net/httpclient/security/filePerms/nopermissions.policy Wed Mar 07 14:10:16 2018 +0000 @@ -0,0 +1,26 @@ +// +// Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. +// DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +// +// This code is free software; you can redistribute it and/or modify it +// under the terms of the GNU General Public License version 2 only, as +// published by the Free Software Foundation. +// +// This code is distributed in the hope that it will be useful, but WITHOUT +// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +// version 2 for more details (a copy is included in the LICENSE file that +// accompanied this code). +// +// You should have received a copy of the GNU General Public License version +// 2 along with this work; if not, write to the Free Software Foundation, +// Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. +// +// Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA +// or visit www.oracle.com if you need additional information or have any +// questions. +// + +grant codeBase "file:${test.classes}/*" { +}; +