test/script/trusted/NASHORN-638.js

Thu, 07 Feb 2013 17:17:29 +0530

author
sundar
date
Thu, 07 Feb 2013 17:17:29 +0530
changeset 77
d7e83be6e7aa
parent 7
test/script/basic/NASHORN-638.js@5a1b0714df0e
child 279
1fd18f40ab52
permissions
-rw-r--r--

8007715: Make sure that not all tests run with AllPermission
Reviewed-by: lagergren, attila

jlaskey@3 1 /*
jlaskey@7 2 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
jlaskey@3 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jlaskey@3 4 *
jlaskey@3 5 * This code is free software; you can redistribute it and/or modify it
jlaskey@3 6 * under the terms of the GNU General Public License version 2 only, as
jlaskey@3 7 * published by the Free Software Foundation.
jlaskey@3 8 *
jlaskey@3 9 * This code is distributed in the hope that it will be useful, but WITHOUT
jlaskey@3 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jlaskey@3 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
jlaskey@3 12 * version 2 for more details (a copy is included in the LICENSE file that
jlaskey@3 13 * accompanied this code).
jlaskey@3 14 *
jlaskey@3 15 * You should have received a copy of the GNU General Public License version
jlaskey@3 16 * 2 along with this work; if not, write to the Free Software Foundation,
jlaskey@3 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jlaskey@3 18 *
jlaskey@3 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jlaskey@3 20 * or visit www.oracle.com if you need additional information or have any
jlaskey@3 21 * questions.
jlaskey@3 22 */
jlaskey@3 23
jlaskey@3 24 /**
jlaskey@3 25 * NASHORN-638 : Callsite tracing and profiling are broken
jlaskey@3 26 *
jlaskey@3 27 * @test
jlaskey@3 28 * @run
jlaskey@3 29 */
jlaskey@3 30
jlaskey@3 31 /*
jlaskey@3 32 * creates new script engine initialized with given options and
jlaskey@3 33 * runs given code on it. Returns standard output captured.
jlaskey@3 34 */
jlaskey@3 35
jlaskey@3 36 function runScriptEngine(opts, code) {
jlaskey@3 37 var imports = new JavaImporter(
jlaskey@3 38 Packages.jdk.nashorn.api.scripting,
jlaskey@3 39 java.io, java.lang, java.util);
jlaskey@3 40
jlaskey@3 41 with(imports) {
jlaskey@3 42 var fac = new NashornScriptEngineFactory();
jlaskey@3 43 // get current System.err
jlaskey@3 44 var oldErr = System.err;
jlaskey@3 45 var baos = new ByteArrayOutputStream();
jlaskey@3 46 var newErr = new PrintStream(baos);
jlaskey@3 47 try {
jlaskey@3 48 // set new standard err
jlaskey@3 49 System.setErr(newErr);
jlaskey@3 50 var strType = Java.type("java.lang.String");
jlaskey@3 51 var engine = fac.getScriptEngine(Java.toJavaArray(opts, strType));
jlaskey@3 52 engine.eval(code);
jlaskey@3 53 newErr.flush();
jlaskey@3 54 return new java.lang.String(baos.toByteArray());
jlaskey@3 55 } finally {
jlaskey@3 56 // restore System.err to old value
jlaskey@3 57 System.setErr(oldErr);
jlaskey@3 58 }
jlaskey@3 59 }
jlaskey@3 60 }
jlaskey@3 61
jlaskey@3 62 var str = runScriptEngine([ "-tcs=all" ], "new Date");
jlaskey@3 63 print("hello, world!");
jlaskey@3 64
jlaskey@3 65 if (str.indexOf(" ENTER ") == -1) {
jlaskey@3 66 fail("expected 'ENTER' in trace mode output");
jlaskey@3 67 }
jlaskey@3 68
jlaskey@3 69 if (str.indexOf(" EXIT ") == -1) {
jlaskey@3 70 fail("expected 'EXIT' in trace mode output");
jlaskey@3 71 }
jlaskey@3 72

mercurial