test/script/basic/JDK-8158467.js

Tue, 21 Mar 2017 13:41:57 -0700

author
asaha
date
Tue, 21 Mar 2017 13:41:57 -0700
changeset 2160
1df40fe54cd6
parent 1837
27842bf384fe
permissions
-rw-r--r--

Merge

     1 /*
     2  * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     8  *
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
    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  */
    24 /**
    25  * JDK-8158467: AccessControlException is thrown on public Java class access if "script app loader" is set to null
    26  *
    27  * @option -scripting
    28  * @test
    29  * @run
    30  */
    32 var Factory = Java.type("jdk.nashorn.api.scripting.NashornScriptEngineFactory");
    33 var fac = new Factory();
    35 // This script has to be given RuntimePermission("nashorn.setConfig")
    36 var e = fac["getScriptEngine(java.lang.ClassLoader)"](null);
    38 print(e.eval("java.lang.System"));
    39 print(e.eval("({ foo: 42})").foo);
    40 print((e.eval("function(x) x*x"))(31));
    42 e.put("output", print);
    43 var runnable = e.eval(<<EOF
    44     new java.lang.Runnable() {
    45         run: function() {
    46             output("hello Runnable");
    47         }
    48     }
    49 EOF);
    51 runnable.run();
    53 var obj = e.eval(<<EOF
    54 new (Java.extend(Java.type("java.lang.Object"))) {
    55     hashCode: function() 33,
    56     toString: function() "I'm object"
    57 }
    58 EOF);
    60 print(obj.hashCode());
    61 print(obj.toString());
    63 // should throw SecurityException!
    64 try {
    65     e.eval("Packages.jdk.internal");
    66 } catch (ex) {
    67     print(ex);
    68 }
    70 // should throw SecurityException!
    71 try {
    72     e.eval("Java.type('jdk.internal.misc.Unsafe')");
    73 } catch (ex) {
    74     print(ex);
    75 }
    77 // should throw SecurityException!
    78 try {
    79     e.eval("Java.type('jdk.nashorn.internal.Context')");
    80 } catch (ex) {
    81     print(ex);
    82 }
    84 // should throw ClassNotFoundException as null is script
    85 // "app loader" [and not platform loader which loads nashorn]
    86 e.eval(<<EOF
    87 try {
    88     Java.type('jdk.nashorn.api.scripting.JSObject');
    89 } catch (ex) {
    90     output(ex);
    91 }
    92 EOF);

mercurial