sundar@1058: /* sundar@1058: * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. sundar@1058: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. sundar@1058: * sundar@1058: * This code is free software; you can redistribute it and/or modify it sundar@1058: * under the terms of the GNU General Public License version 2 only, as sundar@1058: * published by the Free Software Foundation. sundar@1058: * sundar@1058: * This code is distributed in the hope that it will be useful, but WITHOUT sundar@1058: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or sundar@1058: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License sundar@1058: * version 2 for more details (a copy is included in the LICENSE file that sundar@1058: * accompanied this code). sundar@1058: * sundar@1058: * You should have received a copy of the GNU General Public License version sundar@1058: * 2 along with this work; if not, write to the Free Software Foundation, sundar@1058: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. sundar@1058: * sundar@1058: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA sundar@1058: * or visit www.oracle.com if you need additional information or have any sundar@1058: * questions. sundar@1058: */ sundar@1058: sundar@1058: /** sundar@1058: * JDK-8060688: Nashorn: Generated script class name fails --verify-code for names with special chars sundar@1058: * sundar@1058: * @test sundar@1058: * @run sundar@1058: */ sundar@1058: sundar@1058: var NashornEngineFactory = Java.type("jdk.nashorn.api.scripting.NashornScriptEngineFactory"); sundar@1058: var ScriptEngine = Java.type("javax.script.ScriptEngine"); sundar@1058: var ScriptContext = Java.type("javax.script.ScriptContext"); sundar@1058: sundar@1058: var factory = new NashornEngineFactory(); sundar@1058: sundar@1058: var e = factory.getScriptEngine("--verify-code"); sundar@1058: sundar@1058: function evalAndCheck(code) { sundar@1058: try { sundar@1058: e.eval(code); sundar@1058: } catch (exp) { sundar@1058: exp.printStackTrace(); sundar@1058: } sundar@1058: } sundar@1058: sundar@1058: // check default name sundar@1058: evalAndCheck("var a = 3"); sundar@1058: // check few names with special chars sundar@1058: var scontext = e.context; sundar@1058: scontext.setAttribute(ScriptEngine.FILENAME, "", ScriptContext.ENGINE_SCOPE); sundar@1058: evalAndCheck("var h = 'hello'"); sundar@1058: scontext.setAttribute(ScriptEngine.FILENAME, "[myscript]", ScriptContext.ENGINE_SCOPE); sundar@1058: evalAndCheck("var foo = 'world'"); sundar@1058: scontext.setAttribute(ScriptEngine.FILENAME, ";/\\$.", ScriptContext.ENGINE_SCOPE); sundar@1058: evalAndCheck("var foo = 'helloworld'");