// // * Derby - Class org.apache.derbyTesting.functionTests.tests.lang.SimpleTest // * // * Licensed to the Apache Software Foundation (ASF) under one // * or more contributor license agreements. See the NOTICE file // * distributed with this work for additional information // * regarding copyright ownership. The ASF licenses this file // * to you under the Apache License, Version 2.0 (the // * "License"); you may not use this file except in compliance // * with the License. You may obtain a copy of the License at // * // * http://www.apache.org/licenses/LICENSE-2.0 // * // * Unless required by applicable law or agreed to in writing, // * software distributed under the License is distributed on an // * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // * KIND, either express or implied. See the License for the // * specific language governing permissions and limitations // * under the License. // * grant codeBase "${derbyTesting.codejar}derby.jar" { // // These permissions are needed for everyday, embedded Derby usage. // permission java.lang.RuntimePermission "createClassLoader"; permission java.util.PropertyPermission "derby.*", "read"; permission java.util.PropertyPermission "derby.storage.jvmInstanceId", "write"; permission java.io.FilePermission "${derby.system.home}","read"; permission java.io.FilePermission "${derby.system.home}${/}-", "read,write,delete"; // getProtectionDomain is an optional permission needed for printing classpath information // to derby.log permission java.lang.RuntimePermission "getProtectionDomain"; // // This permission lets a DBA reload this policy file while the server // is still running. // permission java.security.SecurityPermission "getPolicy"; // // This permission lets you backup and restore databases // to and from arbitrary locations in your file system. // // This permission also lets you import/export data to and from // arbitrary locations in your file system. // // You may want to restrict this access to specific directories. // permission java.io.FilePermission "<>", "read,write,delete"; }; grant codeBase "${derbyTesting.codejar}derbynet.jar" { // // This permission lets the Network Server manage connections from clients. // permission java.net.SocketPermission "${derbyTesting.serverhost}:*", "accept, connect, resolve"; permission java.net.SocketPermission "localhost:*", "accept, connect, resolve"; }; grant codeBase "${derbyTesting.testjar}derbyTesting.jar" { // Read all properties permission java.util.PropertyPermission "*", "read,write"; // Access all files permission java.io.FilePermission "<>", "read,write,delete"; // When running with useprocess=false need to install and uninstall // the security manager and allow setIO to change the system err and out // streams. Currently the nist suite runs with useprocess=false. permission java.lang.RuntimePermission "setSecurityManager"; permission java.security.SecurityPermission "getPolicy"; permission java.lang.RuntimePermission "setIO"; }; grant codeBase "${derbyTesting.junit}" { // This permission is needed when running the tests using ant 1.7 permission java.io.FilePermission "${user.dir}${/}*", "write"; }; // Ant's junit runner requires setOut to redirect the System output streams // to the forked JVM used when running junit tests inside Ant. Ant requires // forking the JVM if you want to run tests in a different directory than the // current one. grant codeBase "${derbyTesting.antjunit}" { permission java.lang.RuntimePermission "setIO"; // This permission is needed when running the tests using ant 1.7 permission java.io.FilePermission "${user.dir}${/}*", "write"; }; // These permissions are needed when testing code instrumented with EMMA. // They are all related to writing coverage statistics to a file that by default // is named coverage.ec placed in the directory where the test is executed. // They will only be used if the emma.active system property property is set, // which should be set to "" for the permissions to be correct. grant { permission java.util.PropertyPermission "${emma.active}user.dir", "read"; permission java.io.FilePermission "${emma.active}${user.dir}${/}coverage.ec", "read, write"; permission java.lang.RuntimePermission "${emma.active}writeFileDescriptor"; };