tests/libjava-mauve/src/gnu/testlet/java/lang/Runtime/security.java
branchjk_new_structure
changeset 1541 75c2e24dea9a
parent 1540 92ac284961c1
child 1542 be11db817bcf
--- a/tests/libjava-mauve/src/gnu/testlet/java/lang/Runtime/security.java	Fri Jul 20 21:39:51 2012 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,234 +0,0 @@
-// Copyright (C) 2006, 2007 Red Hat, Inc.
-// Written by Gary Benson <gbenson@redhat.com>
-
-// This file is part of Mauve.
-
-// Mauve is free software; you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation; either version 2, or (at your option)
-// any later version.
-
-// Mauve 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 for more details.
-
-// You should have received a copy of the GNU General Public License
-// along with Mauve; see the file COPYING.  If not, write to
-// the Free Software Foundation, 59 Temple Place - Suite 330,
-// Boston, MA 02111-1307, USA.
-
-// Tags: JDK1.2
-
-package gnu.testlet.java.lang.Runtime;
-
-import java.io.File;
-import java.io.FilePermission;
-import java.security.Permission;
-
-import gnu.testlet.Testlet;
-import gnu.testlet.TestHarness;
-import gnu.testlet.TestSecurityManager;
-
-public class security implements Testlet
-{
-  public void test(TestHarness harness)
-  {
-    try {
-      harness.checkPoint("setup");
-
-      Runtime runtime = Runtime.getRuntime();
-
-      String sCommand = "/bin/true";
-      harness.check(new File(sCommand).isFile());
-      String[] aCommand = new String[] {sCommand};
-
-      Thread thread = new Thread();
-
-      String library_name = "blah";
-      String library_path = "/path/to/libnothing.so";
-
-      Permission[] executeCommand = new Permission[] {
-	new FilePermission(sCommand, "execute")};
-      Permission[] modifyThreadOrGroup = new Permission[] {
-	new RuntimePermission("modifyThread"),
-	new RuntimePermission("modifyThreadGroup")};
-
-      Permission[] exitVM = new Permission[] {
-	new RuntimePermission("exitVM")};
-
-      Permission[] shutdownHooks = new Permission[] {
-	new RuntimePermission("shutdownHooks")};
-
-      Permission[] loadLibrary_name = new Permission[] {
-	new RuntimePermission("loadLibrary." + library_name)};
-      Permission[] loadLibrary_path = new Permission[] {
-	new RuntimePermission("loadLibrary." + library_path)};
-
-      TestSecurityManager sm = new TestSecurityManager(harness);
-      try {
-	sm.install();
-
-	// throwpoint: java.lang.Runtime-exec(String)
-	harness.checkPoint("exec(String)");
-	try {
-	  sm.prepareChecks(executeCommand, modifyThreadOrGroup);
-	  runtime.exec(sCommand).waitFor();
-	  sm.checkAllChecked();
-	}
-	catch (SecurityException ex) {
-	  harness.debug(ex);
-	  harness.check(false, "unexpected check");
-	}
-
-	// throwpoint: java.lang.Runtime-exec(String, String[])
-	harness.checkPoint("exec(String, String[])");
-	try {
-	  sm.prepareChecks(executeCommand, modifyThreadOrGroup);
-	  runtime.exec(sCommand, null).waitFor();
-	  sm.checkAllChecked();
-	}
-	catch (SecurityException ex) {
-	  harness.debug(ex);
-	  harness.check(false, "unexpected check");
-	}
-
-	// throwpoint: java.lang.Runtime-exec(String, String[], File)
-	harness.checkPoint("exec(String, String[], File)");
-	try {
-	  sm.prepareChecks(executeCommand, modifyThreadOrGroup);
-	  runtime.exec(sCommand, null, null).waitFor();
-	  sm.checkAllChecked();
-	}
-	catch (SecurityException ex) {
-	  harness.debug(ex);
-	  harness.check(false, "unexpected check");
-	}
-
-	// throwpoint: java.lang.Runtime-exec(String[])
-	harness.checkPoint("exec(String[])");
-	try {
-	  sm.prepareChecks(executeCommand, modifyThreadOrGroup);
-	  runtime.exec(aCommand).waitFor();
-	  sm.checkAllChecked();
-	}
-	catch (SecurityException ex) {
-	  harness.debug(ex);
-	  harness.check(false, "unexpected check");
-	}
-
-	// throwpoint: java.lang.Runtime-exec(String[], String[])
-	harness.checkPoint("exec(String[], String[])");
-	try {
-	  sm.prepareChecks(executeCommand, modifyThreadOrGroup);
-	  runtime.exec(aCommand, null).waitFor();
-	  sm.checkAllChecked();
-	}
-	catch (SecurityException ex) {
-	  harness.debug(ex);
-	  harness.check(false, "unexpected check");
-	}
-
-	// throwpoint: java.lang.Runtime-exec(String[], String[], File)
-	harness.checkPoint("exec(String[], String[], File)");
-	try {
-	  sm.prepareChecks(executeCommand, modifyThreadOrGroup);
-	  runtime.exec(aCommand, null, null).waitFor();
-	  sm.checkAllChecked();
-	}
-	catch (SecurityException ex) {
-	  harness.debug(ex);
-	  harness.check(false, "unexpected check");
-	}
-
-	// throwpoint: java.lang.Runtime-exit
-	harness.checkPoint("exit");
-	try {
-	  sm.prepareHaltingChecks(exitVM);
-	  runtime.exit(0);
-	  harness.check(false);	  
-	}
-	catch (TestSecurityManager.SuccessException ex) {
-	  harness.check(true);
-	} 
-	catch (SecurityException ex) {
-	  harness.debug(ex);
-	  harness.check(false, "unexpected check");
-	}
-
-	// throwpoint: java.lang.Runtime-runFinalizersOnExit
-	harness.checkPoint("runFinalizersOnExit");
-	try {
-	  sm.prepareChecks(exitVM);
-	  Runtime.runFinalizersOnExit(false);
-	  sm.checkAllChecked();
-	}
-	catch (SecurityException ex) {
-	  harness.debug(ex);
-	  harness.check(false, "unexpected check");
-	}
-
-	// throwpoint: java.lang.Runtime-addShutdownHook
-	harness.checkPoint("addShutdownHook");
-	try {
-	  sm.prepareChecks(shutdownHooks);
-	  runtime.addShutdownHook(thread);
-	  sm.checkAllChecked();
-	}
-	catch (SecurityException ex) {
-	  harness.debug(ex);
-	  harness.check(false, "unexpected check");
-	}
-	
-	// throwpoint: java.lang.Runtime-removeShutdownHook
-	harness.checkPoint("removeShutdownHook");
-	try {
-	  sm.prepareChecks(shutdownHooks);
-	  runtime.removeShutdownHook(thread);
-	  sm.checkAllChecked();
-	}
-	catch (SecurityException ex) {
-	  harness.debug(ex);
-	  harness.check(false, "unexpected check");
-	}
-
-	// throwpoint: java.lang.Runtime-load
-	harness.checkPoint("load");
-	try {
-	  sm.prepareHaltingChecks(loadLibrary_name);
-	  runtime.load(library_name);
-	  harness.check(false);	  
-	}
-	catch (TestSecurityManager.SuccessException ex) {
-	  harness.check(true);
-	} 
-	catch (SecurityException ex) {
-	  harness.debug(ex);
-	  harness.check(false, "unexpected check");
-	}
-
-	// throwpoint: java.lang.Runtime-loadLibrary
-	harness.checkPoint("loadLibrary");
-	try {
-	  sm.prepareHaltingChecks(loadLibrary_path);
-	  runtime.loadLibrary(library_path);
-	  harness.check(false);	  
-	}
-	catch (TestSecurityManager.SuccessException ex) {
-	  harness.check(true);
-	} 
-	catch (SecurityException ex) {
-	  harness.debug(ex);
-	  harness.check(false, "unexpected check");
-	}
-      }
-      finally {
-	sm.uninstall();
-      }
-    }
-    catch (Exception ex) {
-      harness.debug(ex);
-      harness.check(false, "Unexpected exception");
-    }
-  }
-}