< prev index next >

test/java/io/FilePermission/Invalid.java

Print this page
rev 17325 : 8181761: add explicit @build actions for jdk.test.lib classes in all :tier2 tests
Reviewed-by: duke


  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 /**
  25  *
  26  * @test
  27  * @bug 8167646
  28  * @summary Better invalid FilePermission
  29  * @library /test/lib


  30  */
  31 
  32 import jdk.test.lib.Asserts;
  33 
  34 import java.io.FilePermission;
  35 
  36 public class Invalid {
  37 
  38     public static void main(String args[]) throws Exception {
  39 
  40         // Allmighty
  41         FilePermission af = new FilePermission("<<ALL FILES>>", "read");
  42 
  43         // Normal
  44         FilePermission fp = new FilePermission("a", "read");
  45 
  46         // Invalid
  47         FilePermission fp1 = new FilePermission("a\000", "read");
  48         FilePermission fp2 = new FilePermission("a\000", "read");
  49         FilePermission fp3 = new FilePermission("b\000", "read");




  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 /**
  25  *
  26  * @test
  27  * @bug 8167646
  28  * @summary Better invalid FilePermission
  29  * @library /test/lib
  30  * @build jdk.test.lib.Asserts
  31  * @run main Invalid
  32  */
  33 
  34 import jdk.test.lib.Asserts;
  35 
  36 import java.io.FilePermission;
  37 
  38 public class Invalid {
  39 
  40     public static void main(String args[]) throws Exception {
  41 
  42         // Allmighty
  43         FilePermission af = new FilePermission("<<ALL FILES>>", "read");
  44 
  45         // Normal
  46         FilePermission fp = new FilePermission("a", "read");
  47 
  48         // Invalid
  49         FilePermission fp1 = new FilePermission("a\000", "read");
  50         FilePermission fp2 = new FilePermission("a\000", "read");
  51         FilePermission fp3 = new FilePermission("b\000", "read");


< prev index next >