/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* 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.
*/
/*
* @test
* @bug 6552961 6558429
* @summary Test privilegedCallable, privilegedCallableUsingCurrentClassLoader
* @author Martin Buchholz
*/
public class PrivilegedCallables {
new Exception() {},
new RuntimeException() {},
new Error() {}
};
}
//----------------------------------------------------------------
// A Policy class designed to make permissions fiddling very easy.
//----------------------------------------------------------------
perms = new Permissions();
}
return perms;
}
return perms;
}
}
public void refresh() {}
}
new RuntimePermission("setContextClassLoader"),
new RuntimePermission("stopThread"));
THROWS(AccessControlException.class,
new F() {void f(){ privilegedCallableUsingCurrentClassLoader(realCaller); }},
new F() {void f(){ privilegedThreadFactory(); }});
}
void testPrivileged() {
catch (Throwable t) { unexpected(t); }
catch (Throwable t) { unexpected(t); }
try { privilegedThreadFactory(); }
catch (Throwable t) { unexpected(t); }
}
for (int i = 0; i < 20; i++)
if (rnd.nextBoolean()) {
final Throwable t = randomThrowable();
@SuppressWarnings("deprecation")
return null; }};
try {
c.call();
fail("Expected exception not thrown");
} else {
}
}
//--------------------- Infrastructure ---------------------------
else fail(x + " not equal to " + y);}
abstract class F {abstract void f() throws Throwable;}
for (F f : fs)
catch (Throwable t) {
else unexpected(t);}}
}