8043443: Test framework changes to run script tests without security manager
Reviewed-by: attila
This commit is contained in:
parent
b35ce163b6
commit
db62a418b3
@ -360,6 +360,10 @@ grant codeBase "file:/${basedir}/test/script/markdown.js" {
|
||||
<include name="**/framework/*Test.class"/>
|
||||
</fileset>
|
||||
|
||||
<fileset id="test.nosecurity.classes" dir="${build.test.classes.dir}">
|
||||
<include name="**/framework/ScriptTest.class"/>
|
||||
</fileset>
|
||||
|
||||
<testng outputdir="${build.test.results.dir}" classfilesetref="test.classes"
|
||||
verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}">
|
||||
<jvmarg line="${ext.class.path}"/>
|
||||
@ -376,6 +380,21 @@ grant codeBase "file:/${basedir}/test/script/markdown.js" {
|
||||
<pathelement path="${run.test.classpath}"/>
|
||||
</classpath>
|
||||
</testng>
|
||||
<testng outputdir="${build.nosecurity.test.results.dir}" classfilesetref="test.nosecurity.classes"
|
||||
verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}">
|
||||
<jvmarg line="${ext.class.path}"/>
|
||||
<jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx}"/>
|
||||
<propertyset>
|
||||
<propertyref prefix="nashorn."/>
|
||||
</propertyset>
|
||||
<propertyset>
|
||||
<propertyref prefix="test-sys-prop-no-security."/>
|
||||
<mapper from="test-sys-prop-no-security.*" to="*" type="glob"/>
|
||||
</propertyset>
|
||||
<classpath>
|
||||
<pathelement path="${run.test.classpath}"/>
|
||||
</classpath>
|
||||
</testng>
|
||||
</target>
|
||||
|
||||
<target name="test-basicparallel" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file">
|
||||
|
@ -59,6 +59,7 @@ nashorn.api.tests.jar=${build.dir}/nashorn-api-tests.jar
|
||||
|
||||
# test results directory
|
||||
build.test.results.dir=${build.dir}/test/reports
|
||||
build.nosecurity.test.results.dir=${build.dir}/test/nosecurity/reports
|
||||
|
||||
# This directory is removed when the project is cleaned:
|
||||
dist.dir=dist
|
||||
@ -113,6 +114,7 @@ run.classpath=\
|
||||
|
||||
# test scripts to run
|
||||
test.dir=test
|
||||
test.nosecurity.dir=test/script/nosecurity
|
||||
test.script.dir=test/script
|
||||
test.basic.dir=test/script/basic
|
||||
test.maptests.dir=test/script/maptests
|
||||
@ -131,8 +133,12 @@ test-sys-prop.test262.suite.dir=${test262.suite.dir}
|
||||
test-sys-prop.es5conform.testcases.dir=${test.external.dir}/ES5Conform/TestCases
|
||||
test-sys-prop.test.basic.dir=${test.basic.dir}
|
||||
|
||||
test-sys-prop-no-security.test.dir=${test.dir}
|
||||
test-sys-prop-no-security.test.js.roots=${test.nosecurity.dir}
|
||||
|
||||
# framework root for our script tests
|
||||
test-sys-prop.test.js.framework=${test.script.dir}/assert.js
|
||||
test-sys-prop-no-security.test.js.framework=${test.script.dir}/assert.js
|
||||
|
||||
# Control the verbosity of ParserTest
|
||||
test-sys-prop.parsertest.verbose=false
|
||||
|
34
nashorn/test/script/nosecurity/nosecurity.js
Normal file
34
nashorn/test/script/nosecurity/nosecurity.js
Normal file
@ -0,0 +1,34 @@
|
||||
/*
|
||||
* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* 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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* 8043443: Test framework changes to run script tests without security manager
|
||||
* @test
|
||||
* @run
|
||||
*/
|
||||
|
||||
var System = Java.type("java.lang.System");
|
||||
|
||||
if (System.securityManager != null) {
|
||||
fail("SecurityManager is set!");
|
||||
}
|
Loading…
Reference in New Issue
Block a user