| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- function write(v) { WScript.Echo(v + ""); }
- (function Test1() {
- var str = "Unresolvable reference";
- try {
- test1_value = 'test1 value...';
- } catch (e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test1_eval() {
- var str = "Test1_eval: Unresolvable reference";
- try {
- eval("test1_eval_value = 10");
- } catch (e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test1_1() {
- var str = "Test1_1: Globally resolvable reference";
- try {
- test1_1_value = 'value...'; // declared below
- } catch (e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- var test1_1_value; // declared globally
- (function Test1_2() {
- (function g() {
- var str = "Test1_2: Parent resolvable reference";
- try {
- test1_2_value = 'value...'; // declared below
- } catch (e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- var test1_2_value = 0; // declared in parent
- })();
- var glo = this;
- (function Test1_3() {
- (function g() {
- var str = "Test1_3: Explicitly bound reference";
- try {
- glo.test1_3_value = 'value...';
- } catch (e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- })();
- (function Test1_3_eval() {
- (function g() {
- var str = "Test1_3_eval: Explicitly bound reference";
- try {
- eval("this.test1_3_eval_value = 10");
- } catch (e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- })();
- (function Test2(){
- var str = "Readonly property";
- var obj = new Object();
- Object.defineProperty(obj, "foo", {
- writable:false,
- value:20
- });
- try {
- obj.foo = 30;
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test2_1(){
- var str = "Test2_1: Readonly property on global";
- Object.defineProperty(glo, "foo", {
- writable:false,
- value:20
- });
- try {
- foo = 30; // Implicitly assign to global
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test2_2(){
- var str = "Test2_2: Readonly property on global";
- try {
- glo.foo = 30; // Explicitly assign to global
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test2_3(){
- var str = "Test2_3: Readonly property on prototype";
- var proto = Object.create(Object.prototype, {
- "foo": {
- writable:false,
- value:20
- }
- });
- var obj = Object.create(proto);
- try {
- obj.foo = 30;
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test2_3_int(){
- var str = "Test2_3_int: Readonly property on Number prototype";
- Object.defineProperty(Number.prototype, "foo", {
- writable:false,
- configurable:true,
- value:20
- });
- try {
- 123["foo"] = 23;
- } catch(e) {
- write("Exception: " + str);
- return;
- } finally {
- delete Number.prototype.foo;
- }
- write("Return: " + str);
- })();
- (function Test2_4(){
- var str = "Test2_4: Readonly property with index property name";
- var prop = "7"; // Use a string
- var obj = Object.create(Object.prototype, {
- "7": {
- writable:false,
- value:20
- }
- });
- try {
- obj[prop] = 24;
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test2_4_arr(){
- var str = "Test2_4_arr: Readonly property on array with index property name";
- var prop = "7"; // Use a string
- var obj = [0,1,2,3,4,5,6,7,8,9];
- Object.defineProperty(obj, prop, {
- writable:false,
- value:20
- });
- try {
- obj[prop] = 24;
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test2_4_eval(){
- var str = "Test2_4_eval: Readonly property with index property name";
- var prop = "7"; // Use a string
- var obj = Object.create(Object.prototype, {
- "7": {
- writable:false,
- value:20
- }
- });
- try {
- eval("obj[prop] = 24");
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test2_5(){
- var str = "Test2_5: Readonly property with index property name";
- var prop = 3; // Use an integer
- var obj = Object.create(Object.prototype, {
- "3": {
- writable:false,
- value:20
- }
- });
- try {
- obj[prop] = 25;
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test2_5_arr(){
- var str = "Test2_5_arr: Readonly property on array with index property name";
- var prop = 3; // Use an integer
- var obj = [];
- Object.defineProperty(obj, prop, {
- writable:false,
- value:20
- });
- try {
- obj[prop] = 25;
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test2_5_eval(){
- var str = "Test2_5_eval: Readonly property with index property name";
- var prop = 3; // Use an integer
- var obj = Object.create(Object.prototype, {
- "3": {
- writable:false,
- value:20
- }
- });
- try {
- eval("obj[prop] = 25");
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test2_6(){
- var str = "Test2_6: Readonly property on arguments (empty)";
- Object.defineProperty(arguments, "1", {
- writable:false,
- value:20
- });
- try {
- arguments[1] = 26;
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test2_7(a,b,c){
- var str = "Test2_7: Readonly property on arguments (with formals)";
- Object.defineProperty(arguments, "1", {
- writable:false,
- value:20
- });
- try {
- arguments[1] = 27;
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })(270,271,272);
- (function Test2_8(a,b,c){
- var str = "Test2_8: Undefined setter on arguments (with formals)";
- Object.defineProperty(arguments, "1", {
- get: function() { return "arguments[1] value"; } // Only getter specified
- });
- try {
- arguments[1] = 28;
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })(280, 281, 282);
- (function Test2_9() {
- var str = "Test2_9: Readonly property indexed by variable";
- var prop = "prop"; // Use a string
- var obj = {};
- Object.defineProperty(obj, prop, {
- writable: false,
- value: 20
- });
- try {
- obj[prop] = 25;
- } catch (e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test3(){
- var str = "Setter undefined";
- var obj = new Object();
- Object.defineProperty(obj, "foo", {
- set: undefined
- });
- try {
- obj.foo = 30;
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test3_eval(){
- var str = "Test3_eval: Setter undefined";
- var obj = new Object();
- Object.defineProperty(obj, "foo", {
- set: undefined
- });
- try {
- eval("obj.foo = 30");
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test3_1(){
- var str = "Test3_1: Setter undefined";
- var obj = new Object();
- Object.defineProperty(obj, "foo", {
- get: function() { return "foo value"; } // Only getter specified
- });
- try {
- obj.foo = 30;
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test3_2(){
- var str = "Test3_2: Setter undefined on prototype";
- var proto = Object.create(Object.prototype, {
- "foo": {
- get: function() { return "foo value"; } // Only getter specified
- }
- });
- var obj = Object.create(proto);
- try {
- obj.foo = 30;
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test3_2_int(){
- var str = "Test3_2_int: Setter undefined on Number prototype";
- Object.defineProperty(Number.prototype, "foo", {
- get: function() { return "foo value"; }, // Only getter defined
- configurable:true
- });
- try {
- 123["foo"] = 32;
- } catch(e) {
- write("Exception: " + str);
- return;
- } finally {
- delete Number.prototype.foo;
- }
- write("Return: " + str);
- })();
- (function Test3_3(){
- var str = "Test3_3: Setter undefined on index property name";
- var prop = "7"; // Use a string
- var obj = Object.create(Object.prototype, {
- "7": {
- get: function() { return "foo value"; } // Only getter specified
- }
- });
- try {
- obj[prop] = 33;
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test3_3_arr(){
- var str = "Test3_3_arr: Setter undefined on array with index property name";
- var prop = "7"; // Use a string
- var obj = [0,1,2,3,4,5,6,7,8];
- Object.defineProperty(obj, prop, {
- get: function() { return "foo value"; } // Only getter specified
- });
- try {
- obj[prop] = 33;
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test3_4(){
- var str = "Test3_4: Setter undefined on index property name";
- var prop = 7; // Use a integer
- var obj = Object.create(Object.prototype, {
- "7": {
- get: function() { return "foo value"; } // Only getter specified
- }
- });
- try {
- obj[prop] = 34;
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test3_4_arr(){
- var str = "Test3_4_arr: Setter undefined on array with index property name";
- var prop = 3; // Use a integer
- var obj = [];
- Object.defineProperty(obj, prop, {
- get: function() { return "foo value"; } // Only getter specified
- });
- try {
- obj[prop] = 34;
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test3_5() {
- var str = "Test3_5: Setter undefined and indexed by variable";
- var prop = "prop"; // Use a string
- var obj = {};
- Object.defineProperty(obj, prop, {
- get: function () { return "foo value"; } // Only getter specified
- });
- try {
- obj[prop] = 25;
- } catch (e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test4(){
- var str = "Adding non-existent property to non-extensible object";
- var obj = new Object();
- Object.preventExtensions(obj);
- try {
- obj.foo = 20;
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test4_1(){
- var str = "Test4_1: Adding non-existent index property to non-extensible object";
- var obj = new Object();
- Object.preventExtensions(obj);
- try {
- obj[3] = 20;
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test4_arr_1(){
- var str = "Test4_arr_1: Adding non-existent property to non-extensible array with index property name";
- var obj = [];
- var prop = "7"; // Use a string
- Object.preventExtensions(obj);
- try {
- obj[prop] = 4;
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test4_arr_2(){
- var str = "Test4_arr_2: Adding non-existent property to non-extensible array with index property name";
- var obj = [];
- var prop = 3; // Use an integer
- Object.preventExtensions(obj);
- try {
- obj[prop] = 4;
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- })();
- (function Test5(){
- var str = "Postfix increment to non-writable property";
- var obj = new Object();
- Object.defineProperty(obj, "foo", {
- writable:false,
- value:20
- });
- try {
- obj.foo++;
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- } )();
- (function Test6(){
- var str = "Postfix increment on non-extensible object's non-existent property";
- var obj = new Object();
- Object.preventExtensions(obj);
- try {
- obj.foo++;
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- } )();
- (function Test7(){
- var str = "Assign NaN of globalObject via property";
- var globalObject = Function("return this;")();
- try {
- globalObject.NaN = "blah";
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- } )();
- (function Test8(){
- var str = "Assign Infinity of globalObject via indexer/literal";
- var globalObject = Function("return this;")();
- try {
- globalObject[Infinity] = "blah";
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- } )();
- (function Test9(){
- var str = "Assign Infinity of globalObject via indexer/string";
- var globalObject = Function("return this;")();
- try {
- globalObject["Infinity"] = "blah";
- } catch(e) {
- write("Exception: " + str);
- return;
- }
- write("Return: " + str);
- } )();
|