jdk/test/javax/script/Test3.js
author rprotacio
Wed, 02 Mar 2016 15:10:38 -0500
changeset 36396 26a241a959de
parent 16038 de84354579d3
permissions -rw-r--r--
8145098: JNI GetVersion should return JNI_VERSION_9 Summary: Updated JNI_VERSION for current version to be JNI_VERSION_9 Reviewed-by: hseigel, gtriantafill, dholmes, alanb

var ScriptContext = javax.script.ScriptContext;

if (key == undefined || key != 'engine value') {
    throw "unexpected engine scope value";
}

// pre-defined context variable refers to current ScriptContext
if (context.getAttribute('key', ScriptContext.GLOBAL_SCOPE) != 'global value') {
    throw "unexpected global scope value";
}

// change the engine scope value
key = 'new engine value';

if (context.getAttribute('key', ScriptContext.GLOBAL_SCOPE) != 'global value') {
    throw "global scope should not change here";
}

// delete engine scope value
delete key;

if (key == undefined && key != 'global value') {
    throw 'global scope should be visible after engine scope removal';
}