/* * Copyright 2008 Jacek Caban for CodeWeavers * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ var tmp, i; var bigInt = Math.pow(2,40); ok(ScriptEngine() === "JScript", "ScriptEngine() = " + ScriptEngine()); ok(ScriptEngine(3) === "JScript", "ScriptEngine(3) = " + ScriptEngine(3)); ok(ScriptEngineMajorVersion() === ScriptEngineMajorVersion(2), "ScriptEngineMajorVersion() !== ScriptEngineMajorVersion(2)"); ok(ScriptEngineMinorVersion() === ScriptEngineMinorVersion(2), "ScriptEngineMinorVersion() !== ScriptEngineMinorVersion(2)"); ok(ScriptEngineBuildVersion() === ScriptEngineBuildVersion(2), "ScriptEngineBuildVersion() !== ScriptEngineBuildVersion(2)"); function testNoEnumerables(expr) { for(var iter in obj) ok(false, expr + " has property " + iter); } testNoEnumerables("Object"); testNoEnumerables("Object.prototype"); testNoEnumerables("new Object()"); testNoEnumerables("Math"); testNoEnumerables("String"); testNoEnumerables("String.prototype"); testNoEnumerables("new String()"); testNoEnumerables("Number"); testNoEnumerables("Number.prototype"); testNoEnumerables("new Number(1)"); testNoEnumerables("ActiveXObject"); testNoEnumerables("Array"); testNoEnumerables("Array.prototype"); testNoEnumerables("new Array()"); testNoEnumerables("Boolean"); testNoEnumerables("Boolean.prototype"); testNoEnumerables("new Boolean()"); testNoEnumerables("Date"); testNoEnumerables("Date.prototype"); testNoEnumerables("new Date()"); testNoEnumerables("TypeError"); testNoEnumerables("TypeError.prototype"); testNoEnumerables("new TypeError()"); testNoEnumerables("Function"); testNoEnumerables("Function.prototype"); testNoEnumerables("testNoEnumerates"); testNoEnumerables("VBArray"); ok(Object.propertyIsEnumerable("prototype") === false, "Object.prototype is enumerable"); ok(Math.propertyIsEnumerable("E") === false, "Math.E is enumerable"); ok(Math.propertyIsEnumerable("SQRT2") === false, "Math.SQRT2 is enumerable"); ok(Math.propertyIsEnumerable("PI") === false, "Math.PI is enumerable"); ok("test".propertyIsEnumerable("length") === false, "'test'.length is enumerable"); ok([1].propertyIsEnumerable("length") === false, "[1].length is enumerable"); ok((new TypeError()).propertyIsEnumerable("message") === true, "(new TypeError()).message is not enumerable"); ok((new TypeError()).propertyIsEnumerable("description") === false, "(new TypeError()).description is enumerable"); ok((new TypeError()).propertyIsEnumerable("name") === false, "(new TypeError()).name is enumerable"); ok((new TypeError()).propertyIsEnumerable("number") === false, "(new TypeError()).number is enumerable"); ok(Object.propertyIsEnumerable.propertyIsEnumerable("length") === false, "Object.propertyIsEnumerable.length is enumerable"); tmp = new Object(); tmp.test = "1"; ok(tmp.propertyIsEnumerable("test"), "tmp.test is not enumerable"); tmp = { test: 1 }; ok(tmp.propertyIsEnumerable("test"), "tmp.test is not enumerable"); ok([1].concat([2]).propertyIsEnumerable("1"), "[1].concat([2]).1 is not enumerable"); ok("t.e.s.t".split(".").propertyIsEnumerable("0"), "'test'.split().0 is not enumerable"); (function() { ok(arguments.propertyIsEnumerable("0") === false, "arguments.0 is enumerable"); ok(arguments.propertyIsEnumerable("length") === false, "arguments.length is enumerable"); ok(arguments.propertyIsEnumerable("calee") === false, "arguments.calee is enumerable"); })(); tmp = [1]; tmp.push(""); ok(tmp.propertyIsEnumerable("1"), "[1].push() ... 1 is not enumerable"); ok([1,2].reverse().propertyIsEnumerable("1"), "[1,2].rverse().1 is not enumerable"); ok([1,2].propertyIsEnumerable("0"), "[1,2].0 is not enumerable"); i = parseInt("0"); ok(i === 0, "parseInt('0') = " + i); i = parseInt("123"); ok(i === 123, "parseInt('123') = " + i); i = parseInt("-123"); ok(i === -123, "parseInt('-123') = " + i); i = parseInt("0xff"); ok(i === 0xff, "parseInt('0xff') = " + i); i = parseInt("11", 8); ok(i === 9, "parseInt('11', 8) = " + i); i = parseInt("1j", 22); ok(i === 41, "parseInt('1j', 32) = " + i); i = parseInt("123", 0); ok(i === 123, "parseInt('123', 0) = " + i); i = parseInt("123", 10, "test"); ok(i === 123, "parseInt('123', 10, 'test') = " + i); i = parseInt("11", "8"); ok(i === 9, "parseInt('11', '8') = " + i); i = parseInt("010"); ok(i === 8, "parseInt('010') = " + i); i = parseInt(""); ok(isNaN(i), "parseInt('') = " + i); i = parseInt("0x"); ok(isNaN(i), "parseInt('0x') = " + i); i = parseInt("+"); ok(isNaN(i), "parseInt('+') = " + i); i = parseInt("-"); ok(isNaN(i), "parseInt('-') = " + i); i = parseInt("0x10", 11); ok(i === 0, "parseInt('0x10', 11) = " + i); i = parseInt("010", 7); ok(i === 7, "parseInt('010', 7) = " + i); i = parseInt("123abc"); ok(i === 123, "parseInt('123abc') = " + i); i = parseInt(" \t123abc"); ok(i === 123, "parseInt(' \\t123abc') = " + i); i = parseInt("abc"); ok(isNaN(i), "parseInt('123abc') = " + i); i = parseInt("-12", 11); ok(i === -13, "parseInt('-12') = " + i); i = parseInt("-0x10"); ok(i === -16, "parseInt('-0x10') = " + i); i = parseInt("-010"); ok(i === -8, "parseInt('-010') = " + i); i = parseInt("123", 0); ok(i === 123, "parseInt('123', 0) = " + i); i = parseInt("0x10", 0); ok(i === 16, "parseInt('123', 0) = " + i); i = parseInt("0x10", 10); ok(i === 0, "parseInt('0x10', 10) = " + i); i = parseInt("0xz"); ok(isNaN(i), "parseInt('0xz') = " + i); i = parseInt("1", 1); ok(isNaN(i), "parseInt('1', 1) = " + i); i = parseInt("1", -1); ok(isNaN(i), "parseInt('1', -1) = " + i); i = parseInt("1", 37); ok(isNaN(i), "parseInt('1', 37) = " + i); i = parseInt("1", 36); ok(i === 1, "parseInt('1', 36) = " + i); tmp = encodeURI("abc"); ok(tmp === "abc", "encodeURI('abc') = " + tmp); tmp = encodeURI("{abc}"); ok(tmp === "%7Babc%7D", "encodeURI('{abc}') = " + tmp); tmp = encodeURI(""); ok(tmp === "", "encodeURI('') = " + tmp); tmp = encodeURI("\01\02\03\04"); ok(tmp === "%01%02%03%04", "encodeURI('\\01\\02\\03\\04') = " + tmp); tmp = encodeURI("{#@}"); ok(tmp === "%7B#@%7D", "encodeURI('{#@}') = " + tmp); tmp = encodeURI("\xa1 "); ok(tmp === "%C2%A1%20", "encodeURI(\\xa1 ) = " + tmp); tmp = encodeURI("\xffff"); ok(tmp.length === 8, "encodeURI('\\xffff').length = " + tmp.length); tmp = encodeURI("abcABC123;/?:@&=+$,-_.!~*'()"); ok(tmp === "abcABC123;/?:@&=+$,-_.!~*'()", "encodeURI('abcABC123;/?:@&=+$,-_.!~*'()') = " + tmp); tmp = encodeURI("%"); ok(tmp === "%25", "encodeURI('%') = " + tmp); tmp = encodeURI(); ok(tmp === "undefined", "encodeURI() = " + tmp); tmp = encodeURI("abc", "test"); ok(tmp === "abc", "encodeURI('abc') = " + tmp); tmp = decodeURI("abc"); ok(tmp === "abc", "decodeURI('abc') = " + tmp); tmp = decodeURI("{abc}"); ok(tmp === "{abc}", "decodeURI('{abc}') = " + tmp); tmp = decodeURI(""); ok(tmp === "", "decodeURI('') = " + tmp); tmp = decodeURI("\01\02\03\04"); ok(tmp === "\01\02\03\04", "decodeURI('\\01\\02\\03\\04') = " + tmp); tmp = decodeURI(); ok(tmp === "undefined", "decodeURI() = " + tmp); tmp = decodeURI("abc", "test"); ok(tmp === "abc", "decodeURI('abc') = " + tmp); tmp = decodeURI("%7babc%7d"); ok(tmp === "{abc}", "decodeURI('%7Babc%7D') = " + tmp); tmp = decodeURI("%01%02%03%04"); ok(tmp === "\01\02\03\04", "decodeURI('%01%02%03%04') = " + tmp); tmp = decodeURI("%C2%A1%20"); ok(tmp === "\xa1 ", "decodeURI('%C2%A1%20') = " + tmp); tmp = decodeURI("%C3%BFff"); ok(tmp.length === 3, "decodeURI('%C3%BFff').length = " + tmp.length); tmp = encodeURIComponent("abc"); ok(tmp === "abc", "encodeURIComponent('abc') = " + tmp); dec = decodeURIComponent(tmp); ok(dec === "abc", "decodeURIComponent('" + tmp + "') = " + dec); tmp = encodeURIComponent("{abc}"); ok(tmp === "%7Babc%7D", "encodeURIComponent('{abc}') = " + tmp); dec = decodeURIComponent(tmp); ok(dec === "{abc}", "decodeURIComponent('" + tmp + "') = " + dec); tmp = encodeURIComponent(""); ok(tmp === "", "encodeURIComponent('') = " + tmp); dec = decodeURIComponent(tmp); ok(dec === "", "decodeURIComponent('" + tmp + "') = " + dec); tmp = encodeURIComponent("\01\02\03\04"); ok(tmp === "%01%02%03%04", "encodeURIComponent('\\01\\02\\03\\04') = " + tmp); dec = decodeURIComponent(tmp); ok(dec === "\01\02\03\04", "decodeURIComponent('" + tmp + "') = " + dec); tmp = encodeURIComponent("{#@}"); ok(tmp === "%7B%23%40%7D", "encodeURIComponent('{#@}') = " + tmp); dec = decodeURIComponent(tmp); ok(dec === "{#@}", "decodeURIComponent('" + tmp + "') = " + dec); tmp = encodeURIComponent("\xa1 "); ok(tmp === "%C2%A1%20", "encodeURIComponent(\\xa1 ) = " + tmp); dec = decodeURIComponent(tmp); ok(dec === "\xa1 ", "decodeURIComponent('" + tmp + "') = " + dec); tmp = encodeURIComponent("\xffff"); ok(tmp.length === 8, "encodeURIComponent('\\xffff').length = " + tmp.length); dec = decodeURIComponent(tmp); ok(dec === "\xffff", "decodeURIComponent('" + tmp + "') = " + dec); tmp = encodeURIComponent("abcABC123;/?:@&=+$,-_.!~*'()"); ok(tmp === "abcABC123%3B%2F%3F%3A%40%26%3D%2B%24%2C-_.!~*'()", "encodeURIComponent('abcABC123;/?:@&=+$,-_.!~*'()') = " + tmp); dec = decodeURIComponent(tmp); ok(dec === "abcABC123;/?:@&=+$,-_.!~*'()", "decodeURIComponent('" + tmp + "') = " + dec); tmp = encodeURIComponent(); ok(tmp === "undefined", "encodeURIComponent() = " + tmp); tmp = encodeURIComponent("abc", "test"); ok(tmp === "abc", "encodeURIComponent('abc') = " + tmp); dec = decodeURIComponent(); ok(dec === "undefined", "decodeURIComponent() = " + dec); dec = decodeURIComponent("abc", "test"); ok(dec === "abc", "decodeURIComponent('abc') = " + dec); tmp = escape("abc"); ok(tmp === "abc", "escape('abc') = " + tmp); tmp = escape(""); ok(tmp === "", "escape('') = " + tmp); tmp = escape("a1b c!d+e@*-_+./,"); ok(tmp === "a1b%20c%21d+e@*-_+./%2C", "escape('a1b c!d+e@*-_+./,') = " + tmp); tmp = escape(); ok(tmp === "undefined", "escape() = " + tmp); tmp = escape('\u1234\123\xf3'); ok(tmp == "%u1234S%F3", "escape('\u1234\123\xf3') = " + tmp); tmp = unescape("abc"); ok(tmp === "abc", "unescape('abc') = " + tmp); tmp = unescape(""); ok(tmp === "", "unescape('') = " + tmp); tmp = unescape("%%%"); ok(tmp === "%%%", "unescape('%%%') = " + tmp); tmp = unescape(); ok(tmp === "undefined", "unescape() = " + tmp); tmp = unescape("%54%65s%u0074"); ok(tmp === "Test", "unescape('%54%65s%u0074') = " + tmp); tmp = "aA1~`!@#$%^&*()_+=-][{}';:/.,<>?\|"; ok(escape(tmp) === "aA1%7E%60%21@%23%24%25%5E%26*%28%29_+%3D-%5D%5B%7B%7D%27%3B%3A/.%2C%3C%3E%3F%7C", "escape('" + tmp + "') = " + escape(tmp)); ok(unescape(escape(tmp)) === tmp, "unescape(escape('" + tmp + "')) = " + unescape(escape(tmp))); ok(Object.prototype.hasOwnProperty('toString'), "Object.prototype.hasOwnProperty('toString') is false"); ok(Object.prototype.hasOwnProperty('isPrototypeOf'), "Object.prototype.hasOwnProperty('isPrototypeOf') is false"); ok(Function.prototype.hasOwnProperty('call'), "Function.prototype.hasOwnProperty('call') is false"); obj = new Object(); ok(!obj.hasOwnProperty('toString'), "obj.hasOwnProperty('toString') is true"); ok(!obj.hasOwnProperty('isPrototypeOf'), "obj.hasOwnProperty('isPrototypeOf') is true"); ok(!Object.hasOwnProperty('toString'), "Object.hasOwnProperty('toString') is true"); ok(!Object.hasOwnProperty('isPrototypeOf'), "Object.hasOwnProperty('isPrototypeOf') is true"); ok(!parseFloat.hasOwnProperty('call'), "parseFloat.hasOwnProperty('call') is true"); ok(!Function.hasOwnProperty('call'), "Function.hasOwnProperty('call') is true"); obj = new Array(); ok(Array.prototype.hasOwnProperty('sort'), "Array.prototype.hasOwnProperty('sort') is false"); ok(Array.prototype.hasOwnProperty('length'), "Array.prototype.hasOwnProperty('length') is false"); ok(!obj.hasOwnProperty('sort'), "obj.hasOwnProperty('sort') is true"); ok(obj.hasOwnProperty('length'), "obj.hasOwnProperty('length') is true"); obj = new Boolean(false); ok(!obj.hasOwnProperty('toString'), "obj.hasOwnProperty('toString') is true"); ok(!Boolean.hasOwnProperty('toString'), "Boolean.hasOwnProperty('toString') is true"); ok(Boolean.prototype.hasOwnProperty('toString'), "Boolean.prototype.hasOwnProperty('toString') is false"); obj = new Date(); ok(!obj.hasOwnProperty('getTime'), "obj.hasOwnProperty('getTime') is true"); ok(!Date.hasOwnProperty('getTime'), "Date.hasOwnProperty('getTime') is true"); ok(Date.prototype.hasOwnProperty('getTime'), "Date.prototype.hasOwnProperty('getTime') is false"); ok(!("now" in Date), "now found in Date"); obj = new Number(); ok(!obj.hasOwnProperty('toFixed'), "obj.hasOwnProperty('toFixed') is true"); ok(!Number.hasOwnProperty('toFixed'), "Number.hasOwnProperty('toFixed') is true"); ok(Number.prototype.hasOwnProperty('toFixed'), "Number.prototype.hasOwnProperty('toFixed') is false"); obj = /x/; ok(!obj.hasOwnProperty('exec'), "obj.hasOwnProperty('exec') is true"); ok(obj.hasOwnProperty('source'), "obj.hasOwnProperty('source') is false"); ok(!RegExp.hasOwnProperty('exec'), "RegExp.hasOwnProperty('exec') is true"); ok(!RegExp.hasOwnProperty('source'), "RegExp.hasOwnProperty('source') is true"); ok(RegExp.prototype.hasOwnProperty('source'), "RegExp.prototype.hasOwnProperty('source') is false"); obj = new String(); ok(!obj.hasOwnProperty('charAt'), "obj.hasOwnProperty('charAt') is true"); ok(obj.hasOwnProperty('length'), "obj.hasOwnProperty('length') is false"); ok(!String.hasOwnProperty('charAt'), "String.hasOwnProperty('charAt') is true"); ok(String.prototype.hasOwnProperty('charAt'), "String.prototype.hasOwnProperty('charAt') is false"); ok(String.prototype.hasOwnProperty('length'), "String.prototype.hasOwnProperty('length') is false"); tmp = "" + new Object(); ok(tmp === "[object Object]", "'' + new Object() = " + tmp); (tmp = new Array).f = Object.prototype.toString; ok(tmp.f() === "[object Array]", "tmp.f() = " + tmp.f()); (tmp = new Boolean).f = Object.prototype.toString; ok(tmp.f() === "[object Boolean]", "tmp.f() = " + tmp.f()); (tmp = new Date).f = Object.prototype.toString; ok(tmp.f() === "[object Date]", "tmp.f() = " + tmp.f()); (tmp = function() {}).f = Object.prototype.toString; ok(tmp.f() === "[object Function]", "tmp.f() = " + tmp.f()); Math.f = Object.prototype.toString; ok(Math.f() === "[object Math]", "tmp.f() = " + tmp.f()); (tmp = new Number).f = Object.prototype.toString; ok(tmp.f() === "[object Number]", "tmp.f() = " + tmp.f()); (tmp = new RegExp("")).f = Object.prototype.toString; ok(tmp.f() === "[object RegExp]", "tmp.f() = " + tmp.f()); (tmp = new String).f = Object.prototype.toString; ok(tmp.f() === "[object String]", "tmp.f() = " + tmp.f()); tmp = Object.prototype.toString.call(testObj); ok(tmp === "[object Object]", "toString.call(testObj) = " + tmp); tmp = Object.prototype.toString.call(this); ok(tmp === "[object Object]", "toString.call(this) = " + tmp); (function () { tmp = Object.prototype.toString.call(arguments); })(); ok(tmp === "[object Object]", "toString.call(arguments) = " + tmp); tmp = Object.prototype.toString.call(new VBArray(createArray())); ok(tmp === "[object Object]", "toString.call(new VBArray()) = " + tmp); function TSTestConstr() {} TSTestConstr.prototype = { toString: function() { return "test"; } }; obj = new TSTestConstr(); ok(obj.toString() === "test", "obj.toString() = " + obj.toString()); ok(Object(1) instanceof Number, "Object(1) is not instance of Number"); ok(Object("") instanceof String, "Object('') is not instance of String"); ok(Object(false) instanceof Boolean, "Object(false) is not instance of Boolean"); ok(new Object(1) instanceof Number, "Object(1) is not instance of Number"); ok(new Object("") instanceof String, "Object('') is not instance of String"); ok(new Object(false) instanceof Boolean, "Object(false) is not instance of Boolean"); obj = new Object(); ok(Object(obj) === obj, "Object(obj) !== obj"); ok(typeof(Object()) === "object", "typeof(Object()) !== 'object'"); ok(typeof(Object(undefined)) === "object", "typeof(Object(undefined)) !== 'object'"); ok(typeof(Object(null)) === "object", "typeof(Object(null)) !== 'object'"); ok(typeof(Object(nullDisp)) === "object", "typeof(Object(nullDisp)) !== 'object'"); ok(Object(nullDisp) != nullDisp, "Object(nullDisp) == nullDisp"); ok(new Object(nullDisp) != nullDisp, "new Object(nullDisp) == nullDisp"); ok(Object(testObj) === testObj, "Object(testObj) != testObj\n"); ok(new Object(testObj) === testObj, "new Object(testObj) != testObj\n"); tmp = new Object(); ok(Object(tmp) === tmp, "Object(tmp) != tmp"); ok(new Object(tmp) === tmp, "new Object(tmp) != tmp"); var obj = new Object(); obj.toString = function (x) { ok(arguments.length === 0, "arguments.length = " + arguments.length); return "test"; }; ok((tmp = obj.toLocaleString()) === "test", "obj.toLocaleString() = " + tmp); ok((tmp = obj.toLocaleString(1)) === "test", "obj.toLocaleString(1) = " + tmp); ok(obj === obj.valueOf(), "obj !== obj.valueOf"); ok("".length === 0, "\"\".length = " + "".length); ok(getVT("".length) == "VT_I4", "\"\".length = " + "".length); ok("abc".length === 3, "\"abc\".length = " + "abc".length); ok(String.prototype.length === 0, "String.prototype.length = " + String.prototype.length); tmp = "".toString(); ok(tmp === "", "''.toString() = " + tmp); tmp = "test".toString(); ok(tmp === "test", "''.toString() = " + tmp); tmp = "test".toString(3); ok(tmp === "test", "''.toString(3) = " + tmp); tmp = "".valueOf(); ok(tmp === "", "''.valueOf() = " + tmp); tmp = "test".valueOf(); ok(tmp === "test", "''.valueOf() = " + tmp); tmp = "test".valueOf(3); ok(tmp === "test", "''.valueOf(3) = " + tmp); var str = new String("test"); ok(str.toString() === "test", "str.toString() = " + str.toString()); var str = new String(); ok(str.toString() === "", "str.toString() = " + str.toString()); var str = new String("test", "abc"); ok(str.toString() === "test", "str.toString() = " + str.toString()); var strObj = new Object(); strObj.toString = function() { return "abcd" }; strObj.substr = String.prototype.substr; strObj.lastIndexOf = String.prototype.lastIndexOf; tmp = "value " + str; ok(tmp === "value test", "'value ' + str = " + tmp); tmp = String(); ok(tmp === "", "String() = " + tmp); tmp = String(false); ok(tmp === "false", "String(false) = " + tmp); tmp = String(null); ok(tmp === "null", "String(null) = " + tmp); tmp = String("test"); ok(tmp === "test", "String('test') = " + tmp); tmp = String("test", "abc"); ok(tmp === "test", "String('test','abc') = " + tmp); tmp = "abc".charAt(0); ok(tmp === "a", "'abc',charAt(0) = " + tmp); tmp = "abc".charAt(1); ok(tmp === "b", "'abc',charAt(1) = " + tmp); tmp = "abc".charAt(2); ok(tmp === "c", "'abc',charAt(2) = " + tmp); tmp = "abc".charAt(3); ok(tmp === "", "'abc',charAt(3) = " + tmp); tmp = "abc".charAt(4); ok(tmp === "", "'abc',charAt(4) = " + tmp); tmp = "abc".charAt(); ok(tmp === "a", "'abc',charAt() = " + tmp); tmp = "abc".charAt(-1); ok(tmp === "", "'abc',charAt(-1) = " + tmp); tmp = "abc".charAt(0,2); ok(tmp === "a", "'abc',charAt(0.2) = " + tmp); tmp = "abc".charAt(NaN); ok(tmp === "a", "'abc',charAt(NaN) = " + tmp); tmp = "abc".charAt(bigInt); ok(tmp === "", "'abc',charAt(bigInt) = " + tmp); tmp = "abc".charCodeAt(0); ok(tmp === 0x61, "'abc'.charCodeAt(0) = " + tmp); tmp = "abc".charCodeAt(1); ok(tmp === 0x62, "'abc'.charCodeAt(1) = " + tmp); tmp = "abc".charCodeAt(2); ok(tmp === 0x63, "'abc'.charCodeAt(2) = " + tmp); tmp = "abc".charCodeAt(); ok(tmp === 0x61, "'abc'.charCodeAt() = " + tmp); tmp = "abc".charCodeAt(true); ok(tmp === 0x62, "'abc'.charCodeAt(true) = " + tmp); tmp = "abc".charCodeAt(0,2); ok(tmp === 0x61, "'abc'.charCodeAt(0,2) = " + tmp); tmp = "\u49F4".charCodeAt(0); ok(tmp === 0x49F4, "'\u49F4'.charCodeAt(0) = " + tmp); tmp = "\052".charCodeAt(0); ok(tmp === 0x2A, "'\052'.charCodeAt(0) = " + tmp); tmp = "\xa2".charCodeAt(0); ok(tmp === 0xA2, "'\xa2'.charCodeAt(0) = " + tmp); tmp = "abc".charCodeAt(bigInt); ok(isNaN(tmp), "'abc'.charCodeAt(bigInt) = " + tmp); tmp = "abcd".substring(1,3); ok(tmp === "bc", "'abcd'.substring(1,3) = " + tmp); tmp = "abcd".substring(-1,3); ok(tmp === "abc", "'abcd'.substring(-1,3) = " + tmp); tmp = "abcd".substring(1,6); ok(tmp === "bcd", "'abcd'.substring(1,6) = " + tmp); tmp = "abcd".substring(3,1); ok(tmp === "bc", "'abcd'.substring(3,1) = " + tmp); tmp = "abcd".substring(2,2); ok(tmp === "", "'abcd'.substring(2,2) = " + tmp); tmp = "abcd".substring(true,"3"); ok(tmp === "bc", "'abcd'.substring(true,'3') = " + tmp); tmp = "abcd".substring(1,3,2); ok(tmp === "bc", "'abcd'.substring(1,3,2) = " + tmp); tmp = "abcd".substring(); ok(tmp === "abcd", "'abcd'.substring() = " + tmp); tmp = "abcd".substr(1,3); ok(tmp === "bcd", "'abcd'.substr(1,3) = " + tmp); tmp = "abcd".substr(-1,3); ok(tmp === "abc", "'abcd'.substr(-1,3) = " + tmp); tmp = "abcd".substr(1,6); ok(tmp === "bcd", "'abcd'.substr(1,6) = " + tmp); tmp = "abcd".substr(2,-1); ok(tmp === "", "'abcd'.substr(3,1) = " + tmp); tmp = "abcd".substr(2,0); ok(tmp === "", "'abcd'.substr(2,2) = " + tmp); tmp = "abcd".substr(true,"3"); ok(tmp === "bcd", "'abcd'.substr(true,'3') = " + tmp); tmp = "abcd".substr(1,3,2); ok(tmp === "bcd", "'abcd'.substr(1,3,2) = " + tmp); tmp = "abcd".substr(); ok(tmp === "abcd", "'abcd'.substr() = " + tmp); tmp = strObj.substr(1,1); ok(tmp === "b", "'abcd'.substr(1,3) = " + tmp); tmp = "abcd".slice(1,3); ok(tmp === "bc", "'abcd'.slice(1,3) = " + tmp); tmp = "abcd".slice(1,-1); ok(tmp === "bc", "'abcd'.slice(1,-1) = " + tmp); tmp = "abcd".slice(-3,3); ok(tmp === "bc", "'abcd'.slice(-3,3) = " + tmp); tmp = "abcd".slice(-6,3); ok(tmp === "abc", "'abcd'.slice(-6,3) = " + tmp); tmp = "abcd".slice(3,1); ok(tmp === "", "'abcd'.slice(3,1) = " + tmp); tmp = "abcd".slice(true,3); ok(tmp === "bc", "'abcd'.slice(true,3) = " + tmp); tmp = "abcd".slice(); ok(tmp === "abcd", "'abcd'.slice() = " + tmp); tmp = "abcd".slice(1); ok(tmp === "bcd", "'abcd'.slice(1) = " + tmp); tmp = "abc".concat(["d",1],2,false); ok(tmp === "abcd,12false", "concat returned " + tmp); var arr = new Array(2,"a"); arr.concat = String.prototype.concat; tmp = arr.concat("d"); ok(tmp === "2,ad", "arr.concat = " + tmp); m = "a+bcabc".match("a+"); ok(typeof(m) === "object", "typeof m is not object"); ok(m.length === 1, "m.length is not 1"); ok(m["0"] === "a", "m[0] is not \"a\""); r = "- [test] -".replace("[test]", "success"); ok(r === "- success -", "r = " + r + " expected '- success -'"); r = "- [test] -".replace("[test]", "success", "test"); ok(r === "- success -", "r = " + r + " expected '- success -'"); r = "test".replace(); ok(r === "test", "r = " + r + " expected 'test'"); function replaceFunc3(m, off, str) { ok(arguments.length === 3, "arguments.length = " + arguments.length); ok(m === "[test]", "m = " + m + " expected [test]"); ok(off === 1, "off = " + off + " expected 0"); ok(str === "-[test]-", "str = " + arguments[3]); return "ret"; } r = "-[test]-".replace("[test]", replaceFunc3); ok(r === "-ret-", "r = " + r + " expected '-ret-'"); r = "-[test]-".replace("[test]", replaceFunc3, "test"); ok(r === "-ret-", "r = " + r + " expected '-ret-'"); r = "x,x,x".replace("x", "y"); ok(r === "y,x,x", "r = " + r + " expected 'y,x,x'"); r = "x,x,x".replace("", "y"); ok(r === "yx,x,x", "r = " + r + " expected 'yx,x,x'"); r = "x,x,x".replace("", ""); ok(r === "x,x,x", "r = " + r + " expected 'x,x,x'"); r = "1,2,3".split(","); ok(typeof(r) === "object", "typeof(r) = " + typeof(r)); ok(r.length === 3, "r.length = " + r.length); ok(r[0] === "1", "r[0] = " + r[0]); ok(r[1] === "2", "r[1] = " + r[1]); ok(r[2] === "3", "r[2] = " + r[2]); r = "1,2,3".split(",*"); ok(r.length === 1, "r.length = " + r.length); ok(r[0] === "1,2,3", "r[0] = " + r[0]); r = "123".split(""); ok(r.length === 3, "r.length = " + r.length); ok(r[0] === "1", "r[0] = " + r[0]); ok(r[1] === "2", "r[1] = " + r[1]); ok(r[2] === "3", "r[2] = " + r[2]); r = "123".split(2); ok(r.length === 2, "r.length = " + r.length); ok(r[0] === "1", "r[0] = " + r[0]); ok(r[1] === "3", "r[1] = " + r[1]); r = "1,2,".split(","); ok(typeof(r) === "object", "typeof(r) = " + typeof(r)); ok(r.length === 3, "r.length = " + r.length); ok(r[0] === "1", "r[0] = " + r[0]); ok(r[1] === "2", "r[1] = " + r[1]); ok(r[2] === "", "r[2] = " + r[2]); r = "1,2,3".split(",", 2); ok(typeof(r) === "object", "typeof(r) = " + typeof(r)); ok(r.length === 2, "r.length = " + r.length); ok(r[0] === "1", "r[0] = " + r[0]); ok(r[1] === "2", "r[1] = " + r[1]); r = "1,2,3".split(",", 0); ok(typeof(r) === "object", "typeof(r) = " + typeof(r)); ok(r.length === 0, "r.length = " + r.length); r = "1,2,3".split(",", -1); ok(typeof(r) === "object", "typeof(r) = " + typeof(r)); ok(r.length === 3, "r.length = " + r.length); ok(r[0] === "1", "r[0] = " + r[0]); ok(r[1] === "2", "r[1] = " + r[1]); ok(r[2] === "3", "r[1] = " + r[1]); tmp = "abcd".indexOf("bc",0); ok(tmp === 1, "indexOf = " + tmp); tmp = "abcd".indexOf("bc",1); ok(tmp === 1, "indexOf = " + tmp); tmp = "abcd".indexOf("bc"); ok(tmp === 1, "indexOf = " + tmp); tmp = "abcd".indexOf("ac"); ok(tmp === -1, "indexOf = " + tmp); tmp = "abcd".indexOf("bc",2); ok(tmp === -1, "indexOf = " + tmp); tmp = "abcd".indexOf("a",0); ok(tmp === 0, "indexOf = " + tmp); tmp = "abcd".indexOf("bc",0,"test"); ok(tmp === 1, "indexOf = " + tmp); tmp = "abcd".indexOf(); ok(tmp == -1, "indexOf = " + tmp); tmp = "abcd".indexOf("b", bigInt); ok(tmp == -1, "indexOf = " + tmp); tmp = "abcd".indexOf("abcd",0); ok(tmp === 0, "indexOf = " + tmp); tmp = "abcd".indexOf("abcd",1); ok(tmp === -1, "indexOf = " + tmp); tmp = ("ab" + String.fromCharCode(0) + "cd").indexOf(String.fromCharCode(0)); ok(tmp === 2, "indexOf = " + tmp); tmp = "abcd".lastIndexOf("bc",1); ok(tmp === 1, "lastIndexOf = " + tmp); tmp = "abcd".lastIndexOf("bc",2); ok(tmp === 1, "lastIndexOf = " + tmp); tmp = "abcd".lastIndexOf("bc"); ok(tmp === 1, "lastIndexOf = " + tmp); tmp = "abcd".lastIndexOf("ac"); ok(tmp === -1, "lastIndexOf = " + tmp); tmp = "abcd".lastIndexOf("d",10); ok(tmp === 3, "lastIndexOf = " + tmp); tmp = "abcd".lastIndexOf("bc",0,"test"); ok(tmp === -1, "lastIndexOf = " + tmp); tmp = "abcd".lastIndexOf(); ok(tmp === -1, "lastIndexOf = " + tmp); tmp = "aaaa".lastIndexOf("a",2); ok(tmp == 2, "lastIndexOf = " + tmp); tmp = strObj.lastIndexOf("b"); ok(tmp === 1, "lastIndexOf = " + tmp); tmp = "bbb".lastIndexOf("b", bigInt); ok(tmp === 2, "lastIndexOf = " + tmp); tmp = "abcd".lastIndexOf("abcd",4); ok(tmp === 0, "lastIndexOf = " + tmp); tmp = "abcd".lastIndexOf("abcd",0); ok(tmp === 0, "lastIndexOf = " + tmp); tmp = ("ab" + String.fromCharCode(0) + "cd").lastIndexOf(String.fromCharCode(0)); ok(tmp === 2, "lastIndexOf = " + tmp); tmp = "".toLowerCase(); ok(tmp === "", "''.toLowerCase() = " + tmp); tmp = "test".toLowerCase(); ok(tmp === "test", "''.toLowerCase() = " + tmp); tmp = "test".toLowerCase(3); ok(tmp === "test", "''.toLowerCase(3) = " + tmp); tmp = "tEsT".toLowerCase(); ok(tmp === "test", "''.toLowerCase() = " + tmp); tmp = "tEsT".toLowerCase(3); ok(tmp === "test", "''.toLowerCase(3) = " + tmp); tmp = ("tE" + String.fromCharCode(0) + "sT").toLowerCase(); ok(tmp === "te" + String.fromCharCode(0) + "st", "''.toLowerCase() = " + tmp); tmp = "".toUpperCase(); ok(tmp === "", "''.toUpperCase() = " + tmp); tmp = "TEST".toUpperCase(); ok(tmp === "TEST", "''.toUpperCase() = " + tmp); tmp = "TEST".toUpperCase(3); ok(tmp === "TEST", "''.toUpperCase(3) = " + tmp); tmp = "tEsT".toUpperCase(); ok(tmp === "TEST", "''.toUpperCase() = " + tmp); tmp = "tEsT".toUpperCase(3); ok(tmp === "TEST", "''.toUpperCase(3) = " + tmp); tmp = ("tE" + String.fromCharCode(0) + "sT").toUpperCase(); ok(tmp === "TE" + String.fromCharCode(0) + "ST", "''.toUpperCase() = " + tmp); tmp = "".anchor(); ok(tmp === "<A NAME=\"undefined\"></A>", "''.anchor() = " + tmp); tmp = "".anchor(3); ok(tmp === "<A NAME=\"3\"></A>", "''.anchor(3) = " + tmp); tmp = "".anchor("red"); ok(tmp === "<A NAME=\"red\"></A>", "''.anchor('red') = " + tmp); tmp = "test".anchor(); ok(tmp === "<A NAME=\"undefined\">test</A>", "'test'.anchor() = " + tmp); tmp = "test".anchor(3); ok(tmp === "<A NAME=\"3\">test</A>", "'test'.anchor(3) = " + tmp); tmp = "test".anchor("green"); ok(tmp === "<A NAME=\"green\">test</A>", "'test'.anchor('green') = " + tmp); tmp = "".big(); ok(tmp === "<BIG></BIG>", "''.big() = " + tmp); tmp = "".big(3); ok(tmp === "<BIG></BIG>", "''.big(3) = " + tmp); tmp = "test".big(); ok(tmp === "<BIG>test</BIG>", "'test'.big() = " + tmp); tmp = "test".big(3); ok(tmp === "<BIG>test</BIG>", "'test'.big(3) = " + tmp); tmp = "".blink(); ok(tmp === "<BLINK></BLINK>", "''.blink() = " + tmp); tmp = "".blink(3); ok(tmp === "<BLINK></BLINK>", "''.blink(3) = " + tmp); tmp = "test".blink(); ok(tmp === "<BLINK>test</BLINK>", "'test'.blink() = " + tmp); tmp = "test".blink(3); ok(tmp === "<BLINK>test</BLINK>", "'test'.blink(3) = " + tmp); tmp = "".bold(); ok(tmp === "<B></B>", "''.bold() = " + tmp); tmp = "".bold(3); ok(tmp === "<B></B>", "''.bold(3) = " + tmp); tmp = "test".bold(); ok(tmp === "<B>test</B>", "'test'.bold() = " + tmp); tmp = "test".bold(3); ok(tmp === "<B>test</B>", "'test'.bold(3) = " + tmp); tmp = "".fixed(); ok(tmp === "<TT></TT>", "''.fixed() = " + tmp); tmp = "".fixed(3); ok(tmp === "<TT></TT>", "''.fixed(3) = " + tmp); tmp = "test".fixed(); ok(tmp === "<TT>test</TT>", "'test'.fixed() = " + tmp); tmp = "test".fixed(3); ok(tmp === "<TT>test</TT>", "'test'.fixed(3) = " + tmp); tmp = "".fontcolor(); ok(tmp === "<FONT COLOR=\"undefined\"></FONT>", "''.fontcolor() = " + tmp); tmp = "".fontcolor(3); ok(tmp === "<FONT COLOR=\"3\"></FONT>", "''.fontcolor(3) = " + tmp); tmp = "".fontcolor("red"); ok(tmp === "<FONT COLOR=\"red\"></FONT>", "''.fontcolor('red') = " + tmp); tmp = "test".fontcolor(); ok(tmp === "<FONT COLOR=\"undefined\">test</FONT>", "'test'.fontcolor() = " + tmp); tmp = "test".fontcolor(3); ok(tmp === "<FONT COLOR=\"3\">test</FONT>", "'test'.fontcolor(3) = " + tmp); tmp = "test".fontcolor("green"); ok(tmp === "<FONT COLOR=\"green\">test</FONT>", "'test'.fontcolor('green') = " + tmp); tmp = "".fontsize(); ok(tmp === "<FONT SIZE=\"undefined\"></FONT>", "''.fontsize() = " + tmp); tmp = "".fontsize(3); ok(tmp === "<FONT SIZE=\"3\"></FONT>", "''.fontsize(3) = " + tmp); tmp = "".fontsize("red"); ok(tmp === "<FONT SIZE=\"red\"></FONT>", "''.fontsize('red') = " + tmp); tmp = "test".fontsize(); ok(tmp === "<FONT SIZE=\"undefined\">test</FONT>", "'test'.fontsize() = " + tmp); tmp = "test".fontsize(3); ok(tmp === "<FONT SIZE=\"3\">test</FONT>", "'test'.fontsize(3) = " + tmp); tmp = "test".fontsize("green"); ok(tmp === "<FONT SIZE=\"green\">test</FONT>", "'test'.fontsize('green') = " + tmp); tmp = ("".fontcolor()).fontsize(); ok(tmp === "<FONT SIZE=\"undefined\"><FONT COLOR=\"undefined\"></FONT></FONT>", "(''.fontcolor()).fontsize() = " + tmp); tmp = "".italics(); ok(tmp === "<I></I>", "''.italics() = " + tmp); tmp = "".italics(3); ok(tmp === "<I></I>", "''.italics(3) = " + tmp); tmp = "test".italics(); ok(tmp === "<I>test</I>", "'test'.italics() = " + tmp); tmp = "test".italics(3); ok(tmp === "<I>test</I>", "'test'.italics(3) = " + tmp); tmp = "".link(); ok(tmp === "<A HREF=\"undefined\"></A>", "''.link() = " + tmp); tmp = "".link(3); ok(tmp === "<A HREF=\"3\"></A>", "''.link(3) = " + tmp); tmp = "".link("red"); ok(tmp === "<A HREF=\"red\"></A>", "''.link('red') = " + tmp); tmp = "test".link(); ok(tmp === "<A HREF=\"undefined\">test</A>", "'test'.link() = " + tmp); tmp = "test".link(3); ok(tmp === "<A HREF=\"3\">test</A>", "'test'.link(3) = " + tmp); tmp = "test".link("green"); ok(tmp === "<A HREF=\"green\">test</A>", "'test'.link('green') = " + tmp); tmp = "".small(); ok(tmp === "<SMALL></SMALL>", "''.small() = " + tmp); tmp = "".small(3); ok(tmp === "<SMALL></SMALL>", "''.small(3) = " + tmp); tmp = "test".small(); ok(tmp === "<SMALL>test</SMALL>", "'test'.small() = " + tmp); tmp = "test".small(3); ok(tmp === "<SMALL>test</SMALL>", "'test'.small(3) = " + tmp); tmp = "".strike(); ok(tmp === "<STRIKE></STRIKE>", "''.strike() = " + tmp); tmp = "".strike(3); ok(tmp === "<STRIKE></STRIKE>", "''.strike(3) = " + tmp); tmp = "test".strike(); ok(tmp === "<STRIKE>test</STRIKE>", "'test'.strike() = " + tmp); tmp = "test".strike(3); ok(tmp === "<STRIKE>test</STRIKE>", "'test'.strike(3) = " + tmp); tmp = "".sub(); ok(tmp === "<SUB></SUB>", "''.sub() = " + tmp); tmp = "".sub(3); ok(tmp === "<SUB></SUB>", "''.sub(3) = " + tmp); tmp = "test".sub(); ok(tmp === "<SUB>test</SUB>", "'test'.sub() = " + tmp); tmp = "test".sub(3); ok(tmp === "<SUB>test</SUB>", "'test'.sub(3) = " + tmp); tmp = "".sup(); ok(tmp === "<SUP></SUP>", "''.sup() = " + tmp); tmp = "".sup(3); ok(tmp === "<SUP></SUP>", "''.sup(3) = " + tmp); tmp = "test".sup(); ok(tmp === "<SUP>test</SUP>", "'test'.sup() = " + tmp); tmp = "test".sup(3); ok(tmp === "<SUP>test</SUP>", "'test'.sup(3) = " + tmp); ok(String.fromCharCode() === "", "String.fromCharCode() = " + String.fromCharCode()); ok(String.fromCharCode(65,"66",67) === "ABC", "String.fromCharCode(65,'66',67) = " + String.fromCharCode(65,"66",67)); ok(String.fromCharCode(1024*64+65, -1024*64+65) === "AA", "String.fromCharCode(1024*64+65, -1024*64+65) = " + String.fromCharCode(1024*64+65, -1024*64+65)); ok(String.fromCharCode(65, NaN, undefined).length === 3, "String.fromCharCode(65, NaN, undefined).length = " + String.fromCharCode(65, NaN, undefined).length); var arr = new Array(); ok(typeof(arr) === "object", "arr () is not object"); ok((arr.length === 0), "arr.length is not 0"); ok(arr["0"] === undefined, "arr[0] is not undefined"); var arr = new Array(1, 2, "test"); ok(typeof(arr) === "object", "arr (1,2,test) is not object"); ok((arr.length === 3), "arr.length is not 3"); ok(arr["0"] === 1, "arr[0] is not 1"); ok(arr["1"] === 2, "arr[1] is not 2"); ok(arr["2"] === "test", "arr[2] is not \"test\""); arr["7"] = true; ok((arr.length === 8), "arr.length is not 8"); tmp = "" + []; ok(tmp === "", "'' + [] = " + tmp); tmp = "" + [1,true]; ok(tmp === "1,true", "'' + [1,true] = " + tmp); var arr = new Array(6); ok(typeof(arr) === "object", "arr (6) is not object"); ok((arr.length === 6), "arr.length is not 6"); ok(arr["0"] === undefined, "arr[0] is not undefined"); ok(arr.push() === 6, "arr.push() !== 6"); ok(arr.push(1) === 7, "arr.push(1) !== 7"); ok(arr[6] === 1, "arr[6] != 1"); ok(arr.length === 7, "arr.length != 10"); ok(arr.push(true, 'b', false) === 10, "arr.push(true, 'b', false) !== 10"); ok(arr[8] === "b", "arr[8] != 'b'"); ok(arr.length === 10, "arr.length != 10"); var arr = new Object(); arr.push = Array.prototype.push; arr.length = 6; ok(arr.push() === 6, "arr.push() !== 6"); ok(arr.push(1) === 7, "arr.push(1) !== 7"); ok(arr[6] === 1, "arr[6] != 1"); ok(arr.length === 7, "arr.length != 10"); ok(arr.push(true, 'b', false) === 10, "arr.push(true, 'b', false) !== 10"); ok(arr[8] === "b", "arr[8] != 'b'"); ok(arr.length === 10, "arr.length != 10"); arr.pop = Array.prototype.pop; ok(arr.pop() === false, "arr.pop() !== false"); ok(arr[8] === "b", "arr[8] !== 'b'"); ok(arr.pop() === 'b', "arr.pop() !== 'b'"); ok(arr[8] === undefined, "arr[8] !== undefined"); arr = [3,4,5]; tmp = arr.pop(); ok(arr.length === 2, "arr.length = " + arr.length); ok(tmp === 5, "pop() = " + tmp); tmp = arr.pop(2); ok(arr.length === 1, "arr.length = " + arr.length); ok(tmp === 4, "pop() = " + tmp); tmp = arr.pop(); ok(arr.length === 0, "arr.length = " + arr.length); ok(tmp === 3, "pop() = " + tmp); for(tmp in arr) ok(false, "not deleted " + tmp); tmp = arr.pop(); ok(arr.length === 0, "arr.length = " + arr.length); ok(tmp === undefined, "tmp = " + tmp); arr = new Object(); arr.pop = Array.prototype.pop; tmp = arr.pop(); ok(arr.length === 0, "arr.length = " + arr.length); ok(tmp === undefined, "tmp = " + tmp); arr = [,,,,,]; tmp = arr.pop(); ok(arr.length === 5, "arr.length = " + arr.length); ok(tmp === undefined, "tmp = " + tmp); tmp = [1,2,,,].pop(); ok(tmp === undefined, "tmp = " + tmp); function PseudoArray() { this[0] = 0; } PseudoArray.prototype = {length: 1}; arr = new PseudoArray(); Array.prototype.push.call(arr, 2); ok(arr.propertyIsEnumerable("length"), "arr.length is not enumerable"); arr = [1,2,null,false,undefined,,"a"]; tmp = arr.join(); ok(tmp === "1,2,,false,,,a", "arr.join() = " + tmp); tmp = arr.join(";"); ok(tmp === "1;2;;false;;;a", "arr.join(';') = " + tmp); tmp = arr.join(";","test"); ok(tmp === "1;2;;false;;;a", "arr.join(';') = " + tmp); tmp = arr.join(""); ok(tmp === "12falsea", "arr.join('') = " + tmp); tmp = arr.toString(); ok(tmp === "1,2,,false,,,a", "arr.toString() = " + tmp); tmp = arr.toString("test"); ok(tmp === "1,2,,false,,,a", "arr.toString() = " + tmp); arr = ["a", "b"]; tmp = arr.join(String.fromCharCode(0)); ok(tmp === "a" + String.fromCharCode(0) + "b", "arr.join(String.fromCharCode(0)) = " + tmp); arr = new Object(); arr.length = 3; arr[0] = "aa"; arr[2] = 2; arr[7] = 3; arr.join = Array.prototype.join; tmp = arr.join(","); ok(arr.length === 3, "arr.length = " + arr.length); ok(tmp === "aa,,2", "tmp = " + tmp); arr = [5,true,2,-1,3,false,"2.5"]; tmp = arr.sort(function(x,y) { return y-x; }); ok(tmp === arr, "tmp !== arr"); tmp = [5,3,"2.5",2,true,false,-1]; for(var i=0; i < arr.length; i++) ok(arr[i] === tmp[i], "arr[" + i + "] = " + arr[i] + " expected " + tmp[i]); arr = [5,false,2,0,"abc",3,"a",-1]; tmp = arr.sort(); ok(tmp === arr, "tmp !== arr"); tmp = [-1,0,2,3,5,"a","abc",false]; for(var i=0; i < arr.length; i++) ok(arr[i] === tmp[i], "arr[" + i + "] = " + arr[i] + " expected " + tmp[i]); arr = ["a", "b", "ab"]; tmp = ["a", "ab", "b"]; ok(arr.sort() === arr, "arr.sort() !== arr"); for(var i=0; i < arr.length; i++) ok(arr[i] === tmp[i], "arr[" + i + "] = " + arr[i] + " expected " + tmp[i]); arr = new Object(); arr.length = 3; arr[0] = 1; arr[2] = "aa"; arr.sort = Array.prototype.sort; tmp = arr.sort(); ok(arr === tmp, "tmp !== arr"); ok(arr[0]===1 && arr[1]==="aa" && arr[2]===undefined, "arr is sorted incorrectly"); tmp = [["bb","aa"],["ab","aa"]].sort().toString(); ok(tmp === "ab,aa,bb,aa", "sort() = " + tmp); tmp = [["bb","aa"],"ab"].sort().toString(); ok(tmp === "ab,bb,aa", "sort() = " + tmp); tmp = [["bb","aa"],"cc"].sort().toString(); ok(tmp === "bb,aa,cc", "sort() = " + tmp); tmp = [2,"1"].sort().toString(); ok(tmp === "1,2", "sort() = " + tmp); tmp = ["2",1].sort().toString(); ok(tmp === "1,2", "sort() = " + tmp); tmp = [,,0,"z"].sort().toString(); ok(tmp === "0,z,,", "sort() = " + tmp); tmp = ["a,b",["a","a"],["a","c"]].sort().toString(); ok(tmp === "a,a,a,b,a,c", "sort() = " + tmp); arr = ["1", "2", "3"]; arr.length = 1; ok(arr.length === 1, "arr.length = " + arr.length); arr.length = 3; ok(arr.length === 3, "arr.length = " + arr.length); ok(arr.toString() === "1,,", "arr.toString() = " + arr.toString()); arr = Array("a","b","c"); ok(arr.toString() === "a,b,c", "arr.toString() = " + arr.toString()); ok(arr.valueOf === Object.prototype.valueOf, "arr.valueOf !== Object.prototype.valueOf"); ok(arr === arr.valueOf(), "arr !== arr.valueOf"); arr = [1,2,3]; tmp = arr.reverse(); ok(tmp === arr, "tmp !== arr"); ok(arr.length === 3, "arr.length = " + arr.length); ok(arr.toString() === "3,2,1", "arr.toString() = " + arr.toString()); arr = []; arr[3] = 5; arr[5] = 1; tmp = arr.reverse(); ok(tmp === arr, "tmp !== arr"); ok(arr.length === 6, "arr.length = " + arr.length); ok(arr.toString() === "1,,5,,,", "arr.toString() = " + arr.toString()); arr = new Object(); arr.length = 3; arr[0] = "aa"; arr[2] = 2; arr[7] = 3; arr.reverse = Array.prototype.reverse; tmp = arr.reverse(); ok(tmp === arr, "tmp !== arr"); ok(arr.length === 3, "arr.length = " + arr.length); ok(arr[0] === 2 && arr[1] === undefined && arr[2] === "aa", "unexpected array"); arr = [1,2,3]; tmp = arr.unshift(0); ok(tmp === (invokeVersion < 2 ? undefined : 4), "[1,2,3].unshift(0) returned " +tmp); ok(arr.length === 4, "arr.length = " + arr.length); ok(arr.toString() === "0,1,2,3", "arr.toString() = " + arr.toString()); arr = new Array(3); arr[0] = 1; arr[2] = 3; tmp = arr.unshift(-1,0); ok(tmp === (invokeVersion < 2 ? undefined : 5), "unshift returned " +tmp); ok(arr.length === 5, "arr.length = " + arr.length); ok(arr.toString() === "-1,0,1,,3", "arr.toString() = " + arr.toString()); arr = [1,2,3]; tmp = arr.unshift(); ok(tmp === (invokeVersion < 2 ? undefined : 3), "unshift returned " +tmp); ok(arr.length === 3, "arr.length = " + arr.length); ok(arr.toString() === "1,2,3", "arr.toString() = " + arr.toString()); arr = new Object(); arr.length = 2; arr[0] = 1; arr[1] = 2; tmp = Array.prototype.unshift.call(arr, 0); ok(tmp === (invokeVersion < 2 ? undefined : 3), "unshift returned " +tmp); ok(arr.length === 3, "arr.length = " + arr.length); ok(arr[0] === 0 && arr[1] === 1 && arr[2] === 2, "unexpected array"); arr = [1,2,,4]; tmp = arr.shift(); ok(tmp === 1, "[1,2,,4].shift() = " + tmp); ok(arr.toString() === "2,,4", "arr = " + arr.toString()); arr = []; tmp = arr.shift(); ok(tmp === undefined, "[].shift() = " + tmp); ok(arr.toString() === "", "arr = " + arr.toString()); arr = [1,2,,4]; tmp = arr.shift(2); ok(tmp === 1, "[1,2,,4].shift(2) = " + tmp); ok(arr.toString() === "2,,4", "arr = " + arr.toString()); arr = [1,]; tmp = arr.shift(); ok(tmp === 1, "[1,].shift() = " + tmp); ok(arr.toString() === "", "arr = " + arr.toString()); obj = new Object(); obj[0] = "test"; obj[2] = 3; obj.length = 3; tmp = Array.prototype.shift.call(obj); ok(tmp === "test", "obj.shift() = " + tmp); ok(obj.length == 2, "obj.length = " + obj.length); ok(obj[1] === 3, "obj[1] = " + obj[1]); var num = new Number(6); arr = [0,1,2]; tmp = arr.concat(3, [4,5], num); ok(tmp !== arr, "tmp === arr"); for(var i=0; i<6; i++) ok(tmp[i] === i, "tmp[" + i + "] = " + tmp[i]); ok(tmp[6] === num, "tmp[6] !== num"); ok(tmp.length === 7, "tmp.length = " + tmp.length); arr = [].concat(); ok(arr.length === 0, "arr.length = " + arr.length); arr = [1,]; tmp = arr.concat([2]); ok(tmp.length === 3, "tmp.length = " + tmp.length); ok(tmp[1] === undefined, "tmp[1] = " + tmp[1]); arr = [1,false,'a',null,undefined,'a']; ok(arr.slice(0,6).toString() === "1,false,a,,,a", "arr.slice(0,6).toString() = " + arr.slice(0,6)); ok(arr.slice(0,6).length === 6, "arr.slice(0,6).length = " + arr.slice(0,6).length); ok(arr.slice().toString() === "1,false,a,,,a", "arr.slice().toString() = " + arr.slice()); ok(arr.slice("abc").toString() === "1,false,a,,,a", "arr.slice(\"abc\").toString() = " + arr.slice("abc")); ok(arr.slice(3,8).toString() === ",,a", "arr.slice(3,8).toString() = " + arr.slice(3,8)); ok(arr.slice(3,8).length === 3, "arr.slice(3,8).length = " + arr.slice(3,8).length); ok(arr.slice(1).toString() === "false,a,,,a", "arr.slice(1).toString() = " + arr.slice(1)); ok(arr.slice(-2).toString() === ",a", "arr.slice(-2).toString() = " + arr.slice(-2)); ok(arr.slice(3,1).toString() === "", "arr.slice(3,1).toString() = " + arr.slice(3,1)); tmp = arr.slice(0,6); for(var i=0; i < arr.length; i++) ok(arr[i] === tmp[i], "arr[" + i + "] = " + arr[i] + " expected " + tmp[i]); arr[12] = 2; ok(arr.slice(5).toString() === "a,,,,,,,2", "arr.slice(5).toString() = " + arr.slice(5).toString()); ok(arr.slice(5).length === 8, "arr.slice(5).length = " + arr.slice(5).length); arr = [1,2,3,4,5]; tmp = arr.splice(2,2); ok(tmp.toString() == "3,4", "arr.splice(2,2) returned " + tmp.toString()); ok(arr.toString() == "1,2,5", "arr.splice(2,2) is " + arr.toString()); arr = [1,2,3,4,5]; tmp = arr.splice(2,2,"a"); ok(tmp.toString() == "3,4", "arr.splice(2,2,'a') returned " + tmp.toString()); ok(arr.toString() == "1,2,a,5", "arr.splice(2,2,'a') is " + arr.toString()); arr = [1,2,3,4,5]; tmp = arr.splice(2,2,'a','b','c'); ok(tmp.toString() == "3,4", "arr.splice(2,2,'a','b','c') returned " + tmp.toString()); ok(arr.toString() == "1,2,a,b,c,5", "arr.splice(2,2,'a','b','c') is " + arr.toString()); arr = [1,2,3,4,]; tmp = arr.splice(2,2,'a','b','c'); ok(tmp.toString() == "3,4", "arr.splice(2,2,'a','b','c') returned " + tmp.toString()); ok(arr.toString() == "1,2,a,b,c,", "arr.splice(2,2,'a','b','c') is " + arr.toString()); arr = [1,2,3,4,]; arr.splice(2,2,'a','b','c'); ok(arr.toString() == "1,2,a,b,c,", "arr.splice(2,2,'a','b','c') is " + arr.toString()); arr = [1,2,3,4,5]; tmp = arr.splice(2,2,'a','b'); ok(tmp.toString() == "3,4", "arr.splice(2,2,'a','b') returned " + tmp.toString()); ok(arr.toString() == "1,2,a,b,5", "arr.splice(2,2,'a','b') is " + arr.toString()); arr = [1,2,3,4,5]; tmp = arr.splice(-1,2); ok(tmp.toString() == "5", "arr.splice(-1,2) returned " + tmp.toString()); ok(arr.toString() == "1,2,3,4", "arr.splice(-1,2) is " + arr.toString()); arr = [1,2,3,4,5]; tmp = arr.splice(-10,3); ok(tmp.toString() == "1,2,3", "arr.splice(-10,3) returned " + tmp.toString()); ok(arr.toString() == "4,5", "arr.splice(-10,3) is " + arr.toString()); arr = [1,2,3,4,5]; tmp = arr.splice(-10,100); ok(tmp.toString() == "1,2,3,4,5", "arr.splice(-10,100) returned " + tmp.toString()); ok(arr.toString() == "", "arr.splice(-10,100) is " + arr.toString()); arr = [1,2,3,4,5]; tmp = arr.splice(2,-1); ok(tmp.toString() == "", "arr.splice(2,-1) returned " + tmp.toString()); ok(arr.toString() == "1,2,3,4,5", "arr.splice(2,-1) is " + arr.toString()); arr = [1,2,3,4,5]; tmp = arr.splice(2); ok(tmp.toString() == "", "arr.splice(2,-1) returned " + tmp.toString()); ok(arr.toString() == "1,2,3,4,5", "arr.splice(2,-1) is " + arr.toString()); arr = [1,2,3,4,5]; tmp = arr.splice(); ok(tmp.toString() == "", "arr.splice(2,-1) returned " + tmp.toString()); ok(arr.toString() == "1,2,3,4,5", "arr.splice(2,-1) is " + arr.toString()); arr = [1,2,3,4,5]; tmp = arr.splice(bigInt); ok(tmp.toString() == "", "arr.splice(bigInt) returned " + tmp.toString()); ok(arr.toString() == "1,2,3,4,5", "arr.splice(bigInt) is " + arr.toString()); arr = [1,2,3,4,5]; tmp = arr.splice(-bigInt); ok(tmp.toString() == "", "arr.splice(-bigInt) returned " + tmp.toString()); ok(arr.toString() == "1,2,3,4,5", "arr.splice(-bigInt) is " + arr.toString()); if(invokeVersion >= 2) { arr = [1,2,3,4,5]; tmp = arr.splice(2, bigInt); ok(tmp.toString() == "3,4,5", "arr.splice(2, bigInt) returned " + tmp.toString()); ok(arr.toString() == "1,2", "arr.splice(2, bigInt) is " + arr.toString()); } arr = [1,2,3,4,5]; tmp = arr.splice(2, -bigInt); ok(tmp.toString() == "", "arr.splice(2, -bigInt) returned " + tmp.toString()); ok(arr.toString() == "1,2,3,4,5", "arr.splice(2, -bigInt) is " + arr.toString()); obj = new Object(); obj.length = 3; obj[0] = 1; obj[1] = 2; obj[2] = 3; tmp = Array.prototype.splice.call(obj, 1, 1, 'a', 'b'); ok(tmp.toString() === "2", "obj.splice returned " + tmp); ok(obj.length === 4, "obj.length = " + obj.length); ok(obj[0] === 1, "obj[0] = " + obj[0]); ok(obj[1] === 'a', "obj[1] = " + obj[1]); ok(obj[2] === 'b', "obj[2] = " + obj[2]); ok(obj[3] === 3, "obj[3] = " + obj[3]); obj = new Object(); obj.length = 3; obj[0] = 1; obj[1] = 2; obj[2] = 3; tmp = Array.prototype.slice.call(obj, 1, 2); ok(tmp.length === 1, "tmp.length = " + tmp.length); ok(tmp[0] === 2, "tmp[0] = " + tmp[0]); tmp = (new Number(2)).toString(); ok(tmp === "2", "num(2).toString = " + tmp); tmp = (new Number()).toString(); ok(tmp === "0", "num().toString = " + tmp); tmp = (new Number(5.5)).toString(2); ok(tmp === "101.1", "num(5.5).toString(2) = " + tmp); tmp = (new Number(3)).toFixed(3); ok(tmp === "3.000", "num(3).toFixed(3) = " + tmp); tmp = (new Number(3)).toFixed(); ok(tmp === "3", "Number(3).toFixed() = " + tmp); tmp = (new Number(0)).toFixed(); ok(tmp === "0", "Number(0).toFixed() = " + tmp); tmp = (new Number(0)).toFixed(1); ok(tmp === "0.0", "Number(0).toFixed(1) = " + tmp); tmp = (new Number(0)).toFixed(2); ok(tmp === "0.00", "Number(0).toFixed(2) = " + tmp); tmp = (new Number(1.76)).toFixed(1); ok(tmp === "1.8", "num(1.76).toFixed(1) = " + tmp); tmp = (new Number(7.92)).toFixed(5); ok(tmp === "7.92000", "num(7.92).toFixed(5) = " + tmp); tmp = (new Number(2.88)).toFixed(); ok(tmp === "3", "num(2.88).toFixed = " + tmp); tmp = (new Number(-2.5)).toFixed(); ok(tmp === "-3", "num(-2.5).toFixed = " + tmp); tmp = (new Number(1000000000000000128)).toFixed(0); //todo_wine ok(tmp === "1000000000000000100", "num(1000000000000000128) = " + tmp); tmp = (new Number(3.14).toFixed(NaN)); ok(tmp === "3", "num(3.14).toFixed = " + tmp); tmp = (new Number(0.95).toFixed(1)); ok(tmp === "1.0", "num(0.95).toFixed(1) = " + tmp); tmp = (new Number(1e900)).toFixed(0); ok(tmp === "Infinity", "num(1000000000000000128) = " + tmp); tmp = (new Number(0.12345678901234567890123)).toFixed(20); ok(tmp === "0.12345678901234568000", "num(0.12345678901234567890123) = " + tmp); tmp = (new Number(2)).toExponential(3); ok(tmp === "2.000e+0", "num(2).toExponential(3) = " + tmp); tmp = (new Number(1.17e-32)).toExponential(20); ok(tmp === "1.17000000000000000000e-32", "num(1.17e-32).toExponential(20) = " + tmp); tmp = (new Number(0)).toExponential(7); ok(tmp === "0.0000000e+0", "num(0).toExponential(7) = " + tmp); tmp = (new Number(0)).toExponential(0); ok(tmp === "0e+0", "num(0).toExponential() = " + tmp); tmp = (new Number(-13.7567)).toExponential(); ok(tmp === "-1.37567e+1", "num(-13.7567).toExponential() = " + tmp); tmp = (new Number(-32.1)).toExponential(); ok(tmp === "-3.21e+1", "num(-32.1).toExponential() = " + tmp); tmp = (new Number(4723.4235)).toExponential(); ok(tmp === "4.7234235e+3", "num(4723.4235).toExponential() = " + tmp); tmp = (new Number(5)).toPrecision(12); ok(tmp == "5.00000000000", "num(5).toPrecision(12) = " + tmp); tmp = (new Number(7.73)).toPrecision(7); ok(tmp == "7.730000", "num(7.73).toPrecision(7) = " + tmp); tmp = (new Number(-127547.47472)).toPrecision(17); ok(tmp == "-127547.47472000000", "num(-127547.47472).toPrecision(17) = " + tmp); tmp = (new Number(0)).toPrecision(3); ok(tmp == "0.00", "num(0).toPrecision(3) = " + tmp); tmp = (new Number(42345.52342465464562334)).toPrecision(15); ok(tmp == "42345.5234246546", "num(42345.52342465464562334).toPrecision(15) = " + tmp); tmp = (new Number(1.182e30)).toPrecision(5); ok(tmp == "1.1820e+30", "num(1.182e30)).toPrecision(5) = " + tmp); tmp = (new Number(1.123)).toPrecision(); ok(tmp == "1.123", "num(1.123).toPrecision() = " + tmp); ok(Number() === 0, "Number() = " + Number()); ok(Number(false) === 0, "Number(false) = " + Number(false)); ok(Number("43") === 43, "Number('43') = " + Number("43")); tmp = (new Number(1)).valueOf(); ok(tmp === 1, "(new Number(1)).valueOf = " + tmp); tmp = (new Number(1,2)).valueOf(); ok(tmp === 1, "(new Number(1,2)).valueOf = " + tmp); tmp = (new Number()).valueOf(); ok(tmp === 0, "(new Number()).valueOf = " + tmp); tmp = Number.prototype.valueOf(); ok(tmp === 0, "Number.prototype.valueOf = " + tmp); function equals(val, base) { var i; var num = 0; var str = val.toString(base); for(i=0; i<str.length; i++) { if(str.substring(i, i+1) == '(') break; if(str.substring(i, i+1) == '.') break; num = num*base + parseInt(str.substring(i, i+1)); } if(str.substring(i, i+1) == '.') { var mult = base; for(i++; i<str.length; i++) { if(str.substring(i, i+1) == '(') break; num += parseInt(str.substring(i, i+1))/mult; mult *= base; } } if(str.substring(i, i+1) == '(') { exp = parseInt(str.substring(i+2)); num *= Math.pow(base, exp); } ok(num>val-val/1000 && num<val+val/1000, "equals: num = " + num); } ok((10).toString(11) === "a", "(10).toString(11) = " + (10).toString(11)); ok((213213433).toString(17) === "8e2ddcb", "(213213433).toString(17) = " + (213213433).toString(17)); ok((-3254343).toString(33) === "-2oicf", "(-3254343).toString(33) = " + (-3254343).toString(33)); ok((NaN).toString(12) === "NaN", "(NaN).toString(11) = " + (NaN).toString(11)); ok((Infinity).toString(13) === "Infinity", "(Infinity).toString(11) = " + (Infinity).toString(11)); for(i=2; i<10; i++) { equals(1.123, i); equals(2305843009200000000, i); equals(5.123, i); equals(21711, i); equals(1024*1024*1024*1024*1024*1024*1.9999, i); equals(748382, i); equals(0.6, i); equals(4.65661287308e-10, i); ok((0).toString(i) === "0", "(0).toString("+i+") = " + (0).toString(i)); } ok(parseFloat('123') === 123, "parseFloat('123') = " + parseFloat('123')); ok(parseFloat('-13.7') === -13.7, "parseFloat('-13.7') = " + parseFloat('-13.7')); ok(parseFloat('-0.01e-2') === -0.01e-2, "parseFloat('-0.01e-2') = " + parseFloat('-0.01e-2')); ok(parseFloat('-12e+5') === -12e+5, "parseFloat('-12e+5') = " + parseFloat('-12e+5')); ok(parseFloat('1E5 not parsed') === 1E5, "parseFloat('1E5 not parsed') = " + parseFloat('1E5 not parsed')); ok(isNaN(parseFloat('not a number')), "parseFloat('not a number') is not NaN"); ok(parseFloat('+13.2e-3') === 13.2e-3, "parseFloat('+13.2e-3') = " + parseFloat('+13.2e-3')); ok(parseFloat('.12') === 0.12, "parseFloat('.12') = " + parseFloat('.12')); ok(parseFloat('1e') === 1, "parseFloat('1e') = " + parseFloat('1e')); tmp = Math.min(1); ok(tmp === 1, "Math.min(1) = " + tmp); tmp = Math.min(1, false); ok(tmp === 0, "Math.min(1, false) = " + tmp); tmp = Math.min(); ok(tmp === Infinity, "Math.min() = " + tmp); tmp = Math.min(1, NaN, -Infinity, false); ok(isNaN(tmp), "Math.min(1, NaN, -Infinity, false) is not NaN"); tmp = Math.min(1, false, true, null, -3); ok(tmp === -3, "Math.min(1, false, true, null, -3) = " + tmp); tmp = Math.max(1); ok(tmp === 1, "Math.max(1) = " + tmp); tmp = Math.max(true, 0); ok(tmp === 1, "Math.max(true, 0) = " + tmp); tmp = Math.max(-2, false, true, null, 1); ok(tmp === 1, "Math.max(-2, false, true, null, 1) = " + tmp); tmp = Math.max(); ok(tmp === -Infinity, "Math.max() = " + tmp); tmp = Math.max(true, NaN, 0); ok(isNaN(tmp), "Math.max(true, NaN, 0) is not NaN"); tmp = Math.round(0.5); ok(tmp === 1, "Math.round(0.5) = " + tmp); tmp = Math.round(-0.5); ok(tmp === 0, "Math.round(-0.5) = " + tmp); tmp = Math.round(1.1); ok(tmp === 1, "Math.round(1.1) = " + tmp); tmp = Math.round(true); ok(tmp === 1, "Math.round(true) = " + tmp); tmp = Math.round(1.1, 3, 4); ok(tmp === 1, "Math.round(1.1, 3, 4) = " + tmp); tmp = Math.round(); ok(isNaN(tmp), "Math.round() is not NaN"); tmp = Math.ceil(0.5); ok(tmp === 1, "Math.ceil(0.5) = " + tmp); tmp = Math.ceil(-0.5); ok(tmp === 0, "Math.ceil(-0.5) = " + tmp); tmp = Math.ceil(1.1); ok(tmp === 2, "Math.round(1.1) = " + tmp); tmp = Math.ceil(true); ok(tmp === 1, "Math.ceil(true) = " + tmp); tmp = Math.ceil(1.1, 3, 4); ok(tmp === 2, "Math.ceil(1.1, 3, 4) = " + tmp); tmp = Math.ceil(); ok(isNaN(tmp), "ceil() is not NaN"); tmp = Math.floor(0.5); ok(tmp === 0, "Math.floor(0.5) = " + tmp); tmp = Math.floor(-0.5); ok(tmp === -1, "Math.floor(-0.5) = " + tmp); tmp = Math.floor(1.1); ok(tmp === 1, "Math.floor(1.1) = " + tmp); tmp = Math.floor(true); ok(tmp === 1, "Math.floor(true) = " + tmp); tmp = Math.floor(1.1, 3, 4); ok(tmp === 1, "Math.floor(1.1, 3, 4) = " + tmp); tmp = Math.floor(); ok(isNaN(tmp), "floor is not NaN"); tmp = Math.abs(3); ok(tmp === 3, "Math.abs(3) = " + tmp); tmp = Math.abs(-3); ok(tmp === 3, "Math.abs(-3) = " + tmp); tmp = Math.abs(true); ok(tmp === 1, "Math.abs(true) = " + tmp); tmp = Math.abs(); ok(isNaN(tmp), "Math.abs() is not NaN"); tmp = Math.abs(NaN); ok(isNaN(tmp), "Math.abs() is not NaN"); tmp = Math.abs(-Infinity); ok(tmp === Infinity, "Math.abs(-Infinite) = " + tmp); tmp = Math.abs(-3, 2); ok(tmp === 3, "Math.abs(-3, 2) = " + tmp); tmp = Math.cos(0); ok(tmp === 1, "Math.cos(0) = " + tmp); tmp = Math.cos(Math.PI/2); ok(Math.floor(tmp*100) === 0, "Math.cos(Math.PI/2) = " + tmp); tmp = Math.cos(-Math.PI/2); ok(Math.floor(tmp*100) === 0, "Math.cos(-Math.PI/2) = " + tmp); tmp = Math.cos(Math.PI/3, 2); ok(Math.floor(tmp*100) === 50, "Math.cos(Math.PI/3, 2) = " + tmp); tmp = Math.cos(true); ok(Math.floor(tmp*100) === 54, "Math.cos(true) = " + tmp); tmp = Math.cos(false); ok(tmp === 1, "Math.cos(false) = " + tmp); tmp = Math.cos(); ok(isNaN(tmp), "Math.cos() is not NaN"); tmp = Math.cos(NaN); ok(isNaN(tmp), "Math.cos(NaN) is not NaN"); tmp = Math.cos(Infinity); ok(isNaN(tmp), "Math.cos(Infinity) is not NaN"); tmp = Math.cos(-Infinity); ok(isNaN(tmp), "Math.cos(-Infinity) is not NaN"); tmp = Math.pow(2, 2); ok(tmp === 4, "Math.pow(2, 2) = " + tmp); tmp = Math.pow(4, 0.5); ok(tmp === 2, "Math.pow(2, 2) = " + tmp); tmp = Math.pow(2, 2, 3); ok(tmp === 4, "Math.pow(2, 2, 3) = " + tmp); tmp = Math.pow(2); ok(isNaN(tmp), "Math.pow(2) is not NaN"); tmp = Math.pow(); ok(isNaN(tmp), "Math.pow() is not NaN"); tmp = Math.random(); ok(typeof(tmp) == "number", "typeof(tmp) = " + typeof(tmp)); ok(0 <= tmp && tmp <= 1, "Math.random() = " + tmp); tmp = Math.random(100); ok(typeof(tmp) == "number", "typeof(tmp) = " + typeof(tmp)); ok(0 <= tmp && tmp <= 1, "Math.random(100) = " + tmp); tmp = Math.acos(0); ok(Math.floor(tmp*100) === 157, "Math.acos(0) = " + tmp); tmp = Math.acos(1); ok(Math.floor(tmp*100) === 0, "Math.acos(1) = " + tmp); tmp = Math.acos(-1); ok(Math.floor(tmp*100) === 314, "Math.acos(-1) = " + tmp); tmp = Math.acos(Math.PI/4, 2); ok(Math.floor(tmp*100) === 66, "Math.acos(Math.PI/4, 2) = " + tmp); tmp = Math.acos(true); ok(Math.floor(tmp*100) === 0, "Math.acos(true) = " + tmp); tmp = Math.acos(false); ok(Math.floor(tmp*100) === 157, "Math.acos(false) = " + tmp); tmp = Math.acos(1.1); ok(isNaN(tmp), "Math.acos(1.1) is not NaN"); tmp = Math.acos(); ok(isNaN(tmp), "Math.acos() is not NaN"); tmp = Math.acos(NaN); ok(isNaN(tmp), "Math.acos(NaN) is not NaN"); tmp = Math.acos(Infinity); ok(isNaN(tmp), "Math.acos(Infinity) is not NaN"); tmp = Math.acos(-Infinity); ok(isNaN(tmp), "Math.acos(-Infinity) is not NaN"); tmp = Math.asin(0); ok(Math.floor(tmp*100) === 0, "Math.asin(0) = " + tmp); tmp = Math.asin(1); ok(Math.floor(tmp*100) === 157, "Math.asin(1) = " + tmp); tmp = Math.asin(-1); ok(Math.floor(tmp*100) === -158, "Math.asin(-1) = " + tmp); tmp = Math.asin(Math.PI/4, 2); ok(Math.floor(tmp*100) === 90, "Math.asin(Math.PI/4, 2) = " + tmp); tmp = Math.asin(true); ok(Math.floor(tmp*100) === 157, "Math.asin(true) = " + tmp); tmp = Math.asin(false); ok(Math.floor(tmp*100) === 0, "Math.asin(false) = " + tmp); tmp = Math.asin(1.1); ok(isNaN(tmp), "Math.asin(1.1) is not NaN"); tmp = Math.asin(); ok(isNaN(tmp), "Math.asin() is not NaN"); tmp = Math.asin(NaN); ok(isNaN(tmp), "Math.asin(NaN) is not NaN"); tmp = Math.asin(Infinity); ok(isNaN(tmp), "Math.asin(Infinity) is not NaN"); tmp = Math.asin(-Infinity); ok(isNaN(tmp), "Math.asin(-Infinity) is not NaN"); tmp = Math.atan(0); ok(Math.floor(tmp*100) === 0, "Math.atan(0) = " + tmp); tmp = Math.atan(1); ok(Math.floor(tmp*100) === 78, "Math.atan(1) = " + tmp); tmp = Math.atan(-1); ok(Math.floor(tmp*100) === -79, "Math.atan(-1) = " + tmp); tmp = Math.atan(true); ok(Math.floor(tmp*100) === 78, "Math.atan(true) = " + tmp); tmp = Math.atan(false); ok(Math.floor(tmp*100) === 0, "Math.atan(false) = " + tmp); tmp = Math.atan(); ok(isNaN(tmp), "Math.atan() is not NaN"); tmp = Math.atan(NaN); ok(isNaN(tmp), "Math.atan(NaN) is not NaN"); tmp = Math.atan(Infinity); ok(Math.floor(tmp*100) === 157, "Math.atan(Infinity) = " + tmp); tmp = Math.atan(-Infinity); ok(Math.floor(tmp*100) === -158, "Math.atan(Infinity) = " + tmp); tmp = Math.atan2(0, 0); ok(Math.floor(tmp*100) === 0, "Math.atan2(0, 0) = " + tmp); tmp = Math.atan2(0, 1); ok(Math.floor(tmp*100) === 0, "Math.atan2(0, 1) = " + tmp); tmp = Math.atan2(0, Infinity); ok(Math.floor(tmp*100) === 0, "Math.atan2(0, Infinity) = " + tmp); tmp = Math.atan2(0, -1); ok(Math.floor(tmp*100) === 314, "Math.atan2(0, -1) = " + tmp); tmp = Math.atan2(0, -Infinity); ok(Math.floor(tmp*100) === 314, "Math.atan2(0, -Infinity) = " + tmp); tmp = Math.atan2(1, 0); ok(Math.floor(tmp*100) === 157, "Math.atan2(1, 0) = " + tmp); tmp = Math.atan2(Infinity, 0); ok(Math.floor(tmp*100) === 157, "Math.atan2(Infinity, 0) = " + tmp); tmp = Math.atan2(-1, 0); ok(Math.floor(tmp*100) === -158, "Math.atan2(-1, 0) = " + tmp); tmp = Math.atan2(-Infinity, 0); ok(Math.floor(tmp*100) === -158, "Math.atan2(-Infinity, 0) = " + tmp); tmp = Math.atan2(1, 1); ok(Math.floor(tmp*100) === 78, "Math.atan2(1, 1) = " + tmp); tmp = Math.atan2(-1, -1); ok(Math.floor(tmp*100) === -236, "Math.atan2(-1, -1) = " + tmp); tmp = Math.atan2(-1, 1); ok(Math.floor(tmp*100) === -79, "Math.atan2(-1, 1) = " + tmp); tmp = Math.atan2(Infinity, Infinity); ok(Math.floor(tmp*100) === 78, "Math.atan2(Infinity, Infinity) = " + tmp); tmp = Math.atan2(Infinity, -Infinity, 1); ok(Math.floor(tmp*100) === 235, "Math.atan2(Infinity, -Infinity, 1) = " + tmp); tmp = Math.atan2(); ok(isNaN(tmp), "Math.atan2() is not NaN"); tmp = Math.atan2(1); ok(isNaN(tmp), "Math.atan2(1) is not NaN"); tmp = Math.exp(0); ok(tmp === 1, "Math.exp(0) = " + tmp); tmp = Math.exp(1); ok(Math.floor(tmp*100) === 271, "Math.exp(1) = " + tmp); tmp = Math.exp(-1); ok(Math.floor(tmp*100) === 36, "Math.exp(-1) = " + tmp); tmp = Math.exp(true); ok(Math.floor(tmp*100) === 271, "Math.exp(true) = " + tmp); tmp = Math.exp(1, 1); ok(Math.floor(tmp*100) === 271, "Math.exp(1, 1) = " + tmp); tmp = Math.exp(); ok(isNaN(tmp), "Math.exp() is not NaN"); tmp = Math.exp(NaN); ok(isNaN(tmp), "Math.exp(NaN) is not NaN"); tmp = Math.exp(Infinity); ok(tmp === Infinity, "Math.exp(Infinity) = " + tmp); tmp = Math.exp(-Infinity); ok(tmp === 0, "Math.exp(-Infinity) = " + tmp); tmp = Math.log(1); ok(Math.floor(tmp*100) === 0, "Math.log(1) = " + tmp); tmp = Math.log(-1); ok(isNaN(tmp), "Math.log(-1) is not NaN"); tmp = Math.log(true); ok(Math.floor(tmp*100) === 0, "Math.log(true) = " + tmp); tmp = Math.log(1, 1); ok(Math.floor(tmp*100) === 0, "Math.log(1, 1) = " + tmp); tmp = Math.log(); ok(isNaN(tmp), "Math.log() is not NaN"); tmp = Math.log(NaN); ok(isNaN(tmp), "Math.log(NaN) is not NaN"); tmp = Math.log(Infinity); ok(tmp === Infinity, "Math.log(Infinity) = " + tmp); tmp = Math.log(-Infinity); ok(isNaN(tmp), "Math.log(-Infinity) is not NaN"); tmp = Math.sin(0); ok(tmp === 0, "Math.sin(0) = " + tmp); tmp = Math.sin(Math.PI/2); ok(tmp === 1, "Math.sin(Math.PI/2) = " + tmp); tmp = Math.sin(-Math.PI/2); ok(tmp === -1, "Math.sin(-Math.PI/2) = " + tmp); tmp = Math.sin(Math.PI/3, 2); ok(Math.floor(tmp*100) === 86, "Math.sin(Math.PI/3, 2) = " + tmp); tmp = Math.sin(true); ok(Math.floor(tmp*100) === 84, "Math.sin(true) = " + tmp); tmp = Math.sin(false); ok(tmp === 0, "Math.sin(false) = " + tmp); tmp = Math.sin(); ok(isNaN(tmp), "Math.sin() is not NaN"); tmp = Math.sin(NaN); ok(isNaN(tmp), "Math.sin(NaN) is not NaN"); tmp = Math.sin(Infinity); ok(isNaN(tmp), "Math.sin(Infinity) is not NaN"); tmp = Math.sin(-Infinity); ok(isNaN(tmp), "Math.sin(-Infinity) is not NaN"); tmp = Math.sqrt(0); ok(tmp === 0, "Math.sqrt(0) = " + tmp); tmp = Math.sqrt(4); ok(tmp === 2, "Math.sqrt(4) = " + tmp); tmp = Math.sqrt(-1); ok(isNaN(tmp), "Math.sqrt(-1) is not NaN"); tmp = Math.sqrt(2, 2); ok(Math.floor(tmp*100) === 141, "Math.sqrt(2, 2) = " + tmp); tmp = Math.sqrt(true); ok(tmp === 1, "Math.sqrt(true) = " + tmp); tmp = Math.sqrt(false); ok(tmp === 0, "Math.sqrt(false) = " + tmp); tmp = Math.sqrt(); ok(isNaN(tmp), "Math.sqrt() is not NaN"); tmp = Math.sqrt(NaN); ok(isNaN(tmp), "Math.sqrt(NaN) is not NaN"); tmp = Math.sqrt(Infinity); ok(tmp === Infinity, "Math.sqrt(Infinity) = " + tmp); tmp = Math.sqrt(-Infinity); ok(isNaN(tmp), "Math.sqrt(-Infinity) is not NaN"); tmp = Math.tan(0); ok(tmp === 0, "Math.tan(0) = " + tmp); tmp = Math.tan(Math.PI); ok(Math.floor(tmp*100) === -1, "Math.tan(Math.PI) = " + tmp); tmp = Math.tan(2, 2); ok(Math.floor(tmp*100) === -219, "Math.tan(2, 2) = " + tmp); tmp = Math.tan(true); ok(Math.floor(tmp*100) === 155, "Math.tan(true) = " + tmp); tmp = Math.tan(false); ok(tmp === 0, "Math.tan(false) = " + tmp); tmp = Math.tan(); ok(isNaN(tmp), "Math.tan() is not NaN"); tmp = Math.tan(NaN); ok(isNaN(tmp), "Math.tan(NaN) is not NaN"); tmp = Math.tan(Infinity); ok(isNaN(tmp), "Math.tan(Infinity) is not NaN"); tmp = Math.tan(-Infinity); ok(isNaN(tmp), "Math.tan(-Infinity) is not NaN"); (function() { if(invokeVersion < 2) return; var stringify_tests = [ [[true], "true"], [[false], "false"], [[null], "null"], [[1], "1"], [["test"], "\"test\""], [["test\"\\\b\f\n\r\t\u0002 !"], "\"test\\\"\\\\\\b\\f\\n\\r\\t\\u0002 !\""], [[NaN], "null"], [[Infinity], "null"], [[-Infinity], "null"], [[{prop1: true, prop2: "string"}], "{\"prop1\":true,\"prop2\":\"string\"}"], [[{prop1: true, prop2: testObj, prop3: undefined}], "{\"prop1\":true}"], [[{prop1: true, prop2: {prop: "string"}},undefined," "], "{\n \"prop1\": true,\n \"prop2\": {\n \"prop\": \"string\"\n }\n}"], [[{ },undefined," "], "{}"], [[[,2,undefined,3,{ },]],"[null,2,null,3,{},null]"], [[[,2,undefined,3,{prop:0},],undefined," "],"[\n null,\n 2,\n null,\n 3,\n {\n \"prop\": 0\n },\n null\n]"] ]; var i, s, v; for(i=0; i < stringify_tests.length; i++) { s = JSON.stringify.apply(null, stringify_tests[i][0]); ok(s === stringify_tests[i][1], "["+i+"] stringify(" + stringify_tests[i][0] + ") returned " + s + " expected " + stringify_tests[i][1]); } s = JSON.stringify(testObj); ok(s === undefined || s === "undefined" /* broken on some old versions */, "stringify(testObj) returned " + s + " expected undfined"); s = JSON.stringify(undefined); ok(s === undefined || s === "undefined" /* broken on some old versions */, "stringify(undefined) returned " + s + " expected undfined"); var parse_tests = [ ["true", true], [" \nnull ", null], ["{}", {}], ["\"\\r\\n test\\u1111\"", "\r\n test\u1111"], ["{\"x\" :\n true}", {x:true}], ["{\"x y\": {}, \"z\": {\"x\":null}}", {"x y":{}, z:{x:null}}], ["[]", []], ["[false,{},{\"x\": []}]", [false,{},{x:[]}]], ["0", 0], ["- 1", -1], ["1e2147483648", Infinity] ]; function json_cmp(x, y) { if(x === y) return true; if(!(x instanceof Object) || !(y instanceof Object)) return false; for(var prop in x) { if(!x.hasOwnProperty(prop)) continue; if(!x.hasOwnProperty(prop)) return false; if(!json_cmp(x[prop], y[prop])) return false; } for(var prop in y) { if(!x.hasOwnProperty(prop) && y.hasOwnProperty(prop)) return false; } return true; } for(i=0; i < parse_tests.length; i++) { v = JSON.parse(parse_tests[i][0]); ok(json_cmp(v, parse_tests[i][1]), "parse[" + i + "] returned " + v + ", expected " + parse_tests[i][1]); } })(); var func = function (a) { var a = 1; if(a) return; }; ok(func.toString() === "function (a) {\n var a = 1;\n if(a) return;\n }", "func.toString() = " + func.toString()); ok("" + func === "function (a) {\n var a = 1;\n if(a) return;\n }", "'' + func.toString() = " + func); ok(func.valueOf === Object.prototype.valueOf, "func.valueOf !== Object.prototype.valueOf"); ok(func === func.valueOf(), "func !== func.valueOf()"); function testFuncToString(x,y) { return x+y; } ok(testFuncToString.toString() === "function testFuncToString(x,y) {\n return x+y;\n}", "testFuncToString.toString() = " + testFuncToString.toString()); ok("" + testFuncToString === "function testFuncToString(x,y) {\n return x+y;\n}", "'' + testFuncToString = " + testFuncToString); tmp = new Object(); function callTest(argc) { ok(this === tmp, "this !== tmp\n"); ok(arguments.length === argc+1, "arguments.length = " + arguments.length + " expected " + (argc+1)); for(var i=1; i <= argc; i++) ok(arguments[i] === i, "arguments[i] = " + arguments[i]); var a = arguments; for(var i=1; i <= argc; i++) ok(a[i] === i, "a[i] = " + a[i]); } callTest.call(tmp, 1, 1); callTest.call(tmp, 2, 1, 2); callTest.call(tmp, 3, 1, 2, 3); callTest.apply(tmp, [1, 1]); callTest.apply(tmp, [2, 1, 2]); callTest.apply(tmp, [3, 1, 2, 3]); (function () { callTest.apply(tmp, arguments); })(2,1,2); function callTest2() { ok(this === tmp, "this !== tmp\n"); ok(arguments.length === 0, "callTest2: arguments.length = " + arguments.length + " expected 0"); } callTest2.call(tmp); callTest2.apply(tmp, []); callTest2.apply(tmp); (function () { callTest2.apply(tmp, arguments); })(); function callTest3() { testThis(this); ok(arguments.length === 0, "arguments.length = " + arguments.length + " expected 0"); } callTest3.call(); callTest3.call(undefined); callTest3.call(null); callTest3.apply(); callTest3.apply(undefined); callTest3.apply(null); tmp = Number.prototype.toString.call(3); ok(tmp === "3", "Number.prototype.toString.call(3) = " + tmp); var func = new Function("return 3;"); tmp = func(); ok(tmp === 3, "func() = " + tmp); ok(func.call() === 3, "func.call() = " + tmp); ok(func.length === 0, "func.length = " + func.length); tmp = func.toString(); ok(tmp === "function anonymous() {\nreturn 3;\n}", "func.toString() = " + tmp); func = new Function("x", "return x+2;"); tmp = func(1); ok(tmp === 3, "func(1) = " + tmp); tmp = func.toString(); ok(tmp === "function anonymous(x) {\nreturn x+2;\n}", "func.toString() = " + tmp); tmp = (new Function("x ", "return x+2;")).toString(); ok(tmp === "function anonymous(x ) {\nreturn x+2;\n}", "func.toString() = " + tmp); func = new Function("x", "y", "return x+y"); tmp = func(1,3); ok(tmp === 4, "func(1,3) = " + tmp); tmp = func.toString(); ok(tmp === "function anonymous(x, y) {\nreturn x+y\n}", "func.toString() = " + tmp); func = new Function(" x, \ty", "\tz", "return x+y+z;"); tmp = func(1,3,2); ok(tmp === 6, "func(1,3,2) = " + tmp); ok(func.length === 3, "func.length = " + func.length); tmp = func.toString(); ok(tmp === "function anonymous( x, \ty, \tz) {\nreturn x+y+z;\n}", "func.toString() = " + tmp); func = new Function(); tmp = func(); ok(tmp === undefined, "func() = " + tmp); tmp = func.toString(); ok(tmp == "function anonymous() {\n\n}", "func.toString() = " + tmp); // Function constructor called as function func = Function("return 3;"); tmp = func(); ok(tmp === 3, "func() = " + tmp); ok(func.call() === 3, "func.call() = " + tmp); ok(func.length === 0, "func.length = " + func.length); tmp = func.toString(); ok(tmp === "function anonymous() {\nreturn 3;\n}", "func.toString() = " + tmp); func = (function() { var tmp = 3; return new Function("return tmp;"); })(); tmp = 2; tmp = func(); ok(tmp === 2, "func() = " + tmp); var date = new Date(); date = new Date(100); ok(date.getTime() === 100, "date.getTime() = " + date.getTime()); ok(Date.prototype.getTime() === 0, "date.prototype.getTime() = " + Date.prototype.getTime()); date = new Date(8.64e15); ok(date.getTime() === 8.64e15, "date.getTime() = " + date.getTime()); date = new Date(8.64e15+1); ok(isNaN(0+date.getTime()), "date.getTime() is not NaN"); date = new Date(Infinity); ok(isNaN(0+date.getTime()), "date.getTime() is not NaN"); date = new Date("3 July 2009 22:28:00 UTC+0100"); ok(date.getTime() === 1246656480000, "date.getTime() = " + date.getTime()); date = new Date(1984, 11, 29, 13, 51, 24, 120); ok(date.getFullYear() === 1984, "date.getFullYear() = " + date.getFullYear()); ok(date.getMonth() === 11, "date.getMonth() = " + date.getMonth()); ok(date.getDate() === 29, "date.getDate() = " + date.getDate()); ok(date.getHours() === 13, "date.getHours() = " + date.getHours()); ok(date.getMinutes() === 51, "date.getMinutes() = " + date.getMinutes()); ok(date.getSeconds() === 24, "date.getSeconds() = " + date.getSeconds()); ok(date.getMilliseconds() === 120, "date.getMilliseconds() = " + date.getMilliseconds()); date = new Date(731, -32, 40, -1, 70, 65, -13); ok(date.getFullYear() === 728, "date.getFullYear() = " + date.getFullYear()); ok(date.getMonth() === 5, "date.getMonth() = " + date.getMonth()); ok(date.getDate() === 9, "date.getDate() = " + date.getDate()); ok(date.getHours() === 0, "date.getHours() = " + date.getHours()); ok(date.getMinutes() === 11, "date.getMinutes() = " + date.getMinutes()); ok(date.getSeconds() === 4, "date.getSeconds() = " + date.getSeconds()); ok(date.getMilliseconds() === 987, "date.getMilliseconds() = " + date.getMilliseconds()); ok(date.setTime(123) === 123, "date.setTime(123) !== 123"); ok(date.setTime("123", NaN) === 123, "date.setTime(\"123\") !== 123"); ok(isNaN(date.setTime(NaN)), "date.setTime(NaN) is not NaN"); ok(date.setTime(0) === date.getTime(), "date.setTime(0) !== date.getTime()"); ok(date.getUTCFullYear() === 1970, "date.getUTCFullYear() = " + date.getUTCFullYear()); ok(date.getUTCMonth() === 0, "date.getUTCMonth() = " + date.getUTCMonth()); ok(date.getUTCDate() === 1, "date.getUTCDate() = " + date.getUTCDate()); ok(date.getUTCDay() === 4, "date.getUTCDay() = " + date.getUTCDay()); ok(date.getUTCHours() === 0, "date.getUTCHours() = " + date.getUTCHours()); ok(date.getUTCMinutes() === 0, "date.getUTCMinutes() = " + date.getUTCMinutes()); ok(date.getUTCSeconds() === 0, "date.getUTCSeconds() = " + date.getUTCSeconds()); ok(date.getUTCMilliseconds() === 0, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds()); date.setTime(60*24*60*60*1000); ok(date.getUTCFullYear() === 1970, "date.getUTCFullYear() = " + date.getUTCFullYear()); ok(date.getUTCMonth() === 2, "date.getUTCMonth() = " + date.getUTCMonth()); ok(date.getUTCDate() === 2, "date.getUTCDate() = " + date.getUTCDate()); ok(date.getUTCDay() === 1, "date.getUTCDay() = " + date.getUTCDay()); ok(date.getUTCHours() === 0, "date.getUTCHours() = " + date.getUTCHours()); ok(date.getUTCMinutes() === 0, "date.getUTCMinutes() = " + date.getUTCMinutes()); ok(date.getUTCSeconds() === 0, "date.getUTCSeconds() = " + date.getUTCSeconds()); ok(date.getUTCMilliseconds() === 0, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds()); date.setTime(59*24*60*60*1000 + 4*365*24*60*60*1000 + 60*60*1000 + 2*60*1000 + 2*1000 + 640); ok(date.getUTCFullYear() === 1974, "date.getUTCFullYear() = " + date.getUTCFullYear()); ok(date.getUTCMonth() === 1, "date.getUTCMonth() = " + date.getUTCMonth()); ok(date.getUTCMonth(123) === 1, "date.getUTCMonth() = " + date.getUTCMonth()); ok(date.getUTCDate() === 28, "date.getUTCDate() = " + date.getUTCDate()); ok(date.getUTCDay() === 4, "date.getUTCDay() = " + date.getUTCDay()); ok(date.getUTCHours() === 1, "date.getUTCHours() = " + date.getUTCHours()); ok(date.getUTCMinutes() === 2, "date.getUTCMinutes() = " + date.getUTCMinutes()); ok(date.getUTCSeconds() === 2, "date.getUTCSeconds() = " + date.getUTCSeconds()); ok(date.getUTCMilliseconds() === 640, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds()); tmp = date.setYear(96); ok(date.getYear() === 96, "date.getYear() = " + date.getYear()); ok(date.getFullYear() === 1996, "date.getFullYear() = " + date.getYear()); ok(date.getUTCMonth() === 1, "date.getUTCMonth() = " + date.getUTCMonth()); ok(date.getUTCMonth(123) === 1, "date.getUTCMonth() = " + date.getUTCMonth()); ok(date.getUTCMilliseconds() === 640, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds()); tmp = date.setYear(2010); ok(tmp === date.getTime(), "date.setYear(2010) = " + tmp); ok(date.getYear() === 2010, "date.getYear() = " + date.getYear()); ok(date.getFullYear() === 2010, "date.getFullYear() = " + date.getYear()); ok(date.getUTCMonth() === 1, "date.getUTCMonth() = " + date.getUTCMonth()); ok(date.getUTCMonth(123) === 1, "date.getUTCMonth() = " + date.getUTCMonth()); ok(date.getUTCMilliseconds() === 640, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds()); date.setTime(Infinity); ok(isNaN(date.getUTCFullYear()), "date.getUTCFullYear() is not NaN"); ok(isNaN(date.getUTCMonth()), "date.getUTCMonth() is not NaN"); ok(isNaN(date.getUTCDate()), "date.getUTCDate() is not NaN"); ok(isNaN(date.getUTCDay()), "date.getUTCDay() is not NaN"); ok(isNaN(date.getUTCHours()), "date.getUTCHours() is not NaN"); ok(isNaN(date.getUTCMinutes()), "date.getUTCMinutes() is not NaN"); ok(isNaN(date.getUTCSeconds()), "date.getUTCSeconds() is not NaN"); ok(isNaN(date.getUTCMilliseconds()), "date.getUTCMilliseconds() is not NaN"); ok(isNaN(date.setMilliseconds(0)), "date.setMilliseconds() is not NaN"); date.setTime(0); tmp = date.setYear(NaN); ok(isNaN(tmp), "date.setYear(NaN) = " + tmp); ok(isNaN(date.getUTCFullYear()), "date.getUTCFullYear() is not NaN"); ok(isNaN(date.getUTCMonth()), "date.getUTCMonth() is not NaN"); date.setTime(0); date.setUTCMilliseconds(-10, 2); ok(date.getUTCMilliseconds() === 990, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds()); date.setUTCMilliseconds(10); ok(date.getUTCMilliseconds() === 10, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds()); date.setUTCSeconds(-10); ok(date.getUTCSeconds() === 50, "date.getUTCSeconds() = " + date.getUTCSeconds()); date.setUTCMinutes(-10); ok(date.getUTCMinutes() === 50, "date.getUTCMinutes() = " + date.getUTCMinutes()); date.setUTCHours(-10); ok(date.getUTCHours() === 14, "date.getUTCHours() = " + date.getUTCHours()); date.setUTCHours(-123); ok(date.getTime() === -612549990, "date.getTime() = " + date.getTime()); date.setUTCHours(20); ok(date.getUTCHours() === 20, "date.getUTCHours() = " + date.getUTCHours()); date.setUTCDate(32); ok(date.getUTCDate() === 1, "date.getUTCDate() = " + date.getUTCDate()); date.setUTCMonth(22, 37); ok(date.getTime() === 60987050010, "date.getTime() = " + date.getTime()); date.setUTCFullYear(83, 21, 321); ok(date.getTime() === -59464984149990, "date.getTime() = " + date.getTime()); ok(Math.abs(date) === 59464984149990, "Math.abs(date) = " + Math.abs(date)); ok(getVT(date+1) === "VT_BSTR", "getVT(date+1) = " + getVT(date+1)); ok(isNaN(Date.parse()), "Date.parse() is not NaN"); ok(isNaN(Date.parse("")), "Date.parse(\"\") is not NaN"); ok(isNaN(Date.parse("Jan Jan 20 2009")), "Date.parse(\"Jan Jan 20 2009\") is not NaN"); ok(Date.parse("Jan 20 2009 UTC") === 1232409600000, "Date.parse(\"Jan 20 2009 UTC\") = " + Date.parse("Jan 20 2009 UTC")); ok(Date.parse("Jan 20 2009 GMT") === 1232409600000, "Date.parse(\"Jan 20 2009 GMT\") = " + Date.parse("Jan 20 2009 GMT")); ok(Date.parse("Jan 20 2009 UTC-0") === 1232409600000, "Date.parse(\"Jan 20 2009 UTC-0\") = " + Date.parse("Jan 20 2009 UTC-0")); ok(Date.parse("Jan 20 2009 UTC+0000") === 1232409600000, "Date.parse(\"Jan 20 2009 UTC+0000\") = " + Date.parse("Jan 20 2009 UTC+0000")); ok(Date.parse("Jan 20 2009 UTC-1") === 1232413200000, "Date.parse(\"Jan 20 2009 UTC-1\") = " + Date.parse("Jan 20 2009 UTC-1")); ok(Date.parse("Jan 20 2009 UTC+1") === 1232406000000, "Date.parse(\"Jan 20 2009 UTC+1\") = " + Date.parse("Jan 20 2009 UTC+1")); ok(Date.parse("Ju 13 79 UTC") === 300672000000, "Date.parse(\"Ju 13 79 UTC\") = " + Date.parse("Ju 13 79 UTC")); ok(Date.parse("12Au91 UTC") === 681955200000, "Date.parse(\"12Au91 UTC\") = " + Date.parse("12Au91 UTC")); ok(Date.parse("7/02/17 UTC") === -1656806400000, "Date.parse(\"7/02/17 UTC\") = " + Date.parse("7/02/17 UTC")); ok(Date.parse("Se001 70 12:31:17 UTC") === 21040277000, "Date.parse(\"Se001 70 12:31:17 UTC\") = " + Date.parse("Se001 70 12:31:17 UTC")); ok(Date.parse("February 31 UTC, 2000 12:31:17 PM") === 952000277000, "Date.parse(\"February 31 UTC, 2000 12:31:17 PM\") = " + Date.parse("February 31 UTC, 2000 12:31:17 PM")); ok(Date.parse("71 11:32AM Dec 12 UTC BC ") === -64346358480000, "Date.parse(\"71 11:32AM Dec 12 UTC BC \") = " + Date.parse("71 11:32AM Dec 12 UTC BC ")); ok(Date.parse("23/71/2000 11::32::UTC") === 1010662320000, "Date.parse(\"23/71/2000 11::32::UTC\") = " + Date.parse("23/71/2000 11::32::UTC")); ok(Date.parse("1970/01/01") === Date.parse("01/01/1970"), "Date.parse(\"1970/01/01\") = " + Date.parse("1970/01/01")); ok(Date.parse("71/12/14") === Date.parse("12/14/1971"), "Date.parse(\"71/12/14\") = " + Date.parse("71/12/14")); ok(Date.parse("Tue, 22 Mar 2016 09:57:55 -0300") === Date.parse("Tue, 22 Mar 2016 09:57:55 GMT-0300"), "Date.parse(\"Tue, 22 Mar 2016 09:57:55 -0300\") = " + Date.parse("Tue, 22 Mar 2016 09:57:55 -0300")); ok(Date.parse("Tue, 22 Mar 2016 09:57:55 +0400") === Date.parse("Tue, 22 Mar 2016 09:57:55 UTC+0400"), "Date.parse(\"Tue, 22 Mar 2016 09:57:55 +0400\") = " + Date.parse("Tue, 22 Mar 2016 09:57:55 +0400")); tmp = (new Date()).toGMTString(); ok(tmp.indexOf(String.fromCharCode(0)) == -1, "invalid null byte"); tmp = (new Date()).toLocaleDateString(); ok(tmp.indexOf(String.fromCharCode(0)) == -1, "invalid null byte"); tmp = (new Date(1600, 1, 1, 0, 0, 0, 0)).toLocaleDateString(); ok(tmp.indexOf(String.fromCharCode(0)) == -1, "invalid null byte"); tmp = (new Date(1600, 1, 1, 0, 0, 0, 0)).toLocaleString(); ok(tmp.indexOf(String.fromCharCode(0)) == -1, "invalid null byte"); tmp = (new Date()).toLocaleTimeString(); ok(tmp.indexOf(String.fromCharCode(0)) == -1, "invalid null byte"); tmp = (new Date()).toString(); ok(tmp.indexOf(String.fromCharCode(0)) == -1, "invalid null byte"); tmp = (new Date()).toTimeString(); ok(tmp.indexOf(String.fromCharCode(0)) == -1, "invalid null byte"); tmp = (new Date()).toUTCString(); ok(tmp.indexOf(String.fromCharCode(0)) == -1, "invalid null byte"); ok(typeof(Math.PI) === "number", "typeof(Math.PI) = " + typeof(Math.PI)); ok(Math.floor(Math.PI*100) === 314, "Math.PI = " + Math.PI); Math.PI = "test"; ok(Math.floor(Math.PI*100) === 314, "modified Math.PI = " + Math.PI); ok(typeof(Math.E) === "number", "typeof(Math.E) = " + typeof(Math.E)); ok(Math.floor(Math.E*100) === 271, "Math.E = " + Math.E); Math.E = "test"; ok(Math.floor(Math.E*100) === 271, "modified Math.E = " + Math.E); ok(typeof(Math.LOG2E) === "number", "typeof(Math.LOG2E) = " + typeof(Math.LOG2E)); ok(Math.floor(Math.LOG2E*100) === 144, "Math.LOG2E = " + Math.LOG2E); Math.LOG2E = "test"; ok(Math.floor(Math.LOG2E*100) === 144, "modified Math.LOG2E = " + Math.LOG2E); ok(typeof(Math.LOG10E) === "number", "typeof(Math.LOG10E) = " + typeof(Math.LOG10E)); ok(Math.floor(Math.LOG10E*100) === 43, "Math.LOG10E = " + Math.LOG10E); Math.LOG10E = "test"; ok(Math.floor(Math.LOG10E*100) === 43, "modified Math.LOG10E = " + Math.LOG10E); ok(typeof(Math.LN2) === "number", "typeof(Math.LN2) = " + typeof(Math.LN2)); ok(Math.floor(Math.LN2*100) === 69, "Math.LN2 = " + Math.LN2); Math.LN2 = "test"; ok(Math.floor(Math.LN2*100) === 69, "modified Math.LN2 = " + Math.LN2); ok(typeof(Math.LN10) === "number", "typeof(Math.LN10) = " + typeof(Math.LN10)); ok(Math.floor(Math.LN10*100) === 230, "Math.LN10 = " + Math.LN10); Math.LN10 = "test"; ok(Math.floor(Math.LN10*100) === 230, "modified Math.LN10 = " + Math.LN10); ok(typeof(Math.SQRT2) === "number", "typeof(Math.SQRT2) = " + typeof(Math.SQRT2)); ok(Math.floor(Math.SQRT2*100) === 141, "Math.SQRT2 = " + Math.SQRT2); Math.SQRT2 = "test"; ok(Math.floor(Math.SQRT2*100) === 141, "modified Math.SQRT2 = " + Math.SQRT2); ok(typeof(Math.SQRT1_2) === "number", "typeof(Math.SQRT1_2) = " + typeof(Math.SQRT1_2)); ok(Math.floor(Math.SQRT1_2*100) === 70, "Math.SQRT1_2 = " + Math.SQRT1_2); Math.SQRT1_2 = "test"; ok(Math.floor(Math.SQRT1_2*100) === 70, "modified Math.SQRT1_2 = " + Math.SQRT1_2); ok(isNaN.toString() === "\nfunction isNaN() {\n [native code]\n}\n", "isNaN.toString = '" + isNaN.toString() + "'"); ok(Array.toString() === "\nfunction Array() {\n [native code]\n}\n", "isNaN.toString = '" + Array.toString() + "'"); ok(Function.toString() === "\nfunction Function() {\n [native code]\n}\n", "isNaN.toString = '" + Function.toString() + "'"); ok(Function.prototype.toString() === "\nfunction prototype() {\n [native code]\n}\n", "isNaN.toString = '" + Function.prototype.toString() + "'"); ok("".substr.toString() === "\nfunction substr() {\n [native code]\n}\n", "''.substr.toString = '" + "".substr.toString() + "'"); var bool = new Boolean(); ok(bool.toString() === "false", "bool.toString() = " + bool.toString()); var bool = new Boolean("false"); ok(bool.toString() === "true", "bool.toString() = " + bool.toString()); ok(bool.valueOf() === Boolean(1), "bool.valueOf() = " + bool.valueOf()); ok(bool.toLocaleString() === bool.toString(), "bool.toLocaleString() = " + bool.toLocaleString()); ok(ActiveXObject instanceof Function, "ActiveXObject is not instance of Function"); ok(ActiveXObject.prototype instanceof Object, "ActiveXObject.prototype is not instance of Object"); ok(Error.prototype !== TypeError.prototype, "Error.prototype === TypeError.prototype"); ok(RangeError.prototype !== TypeError.prototype, "RangeError.prototype === TypeError.prototype"); ok(Error.prototype.toLocaleString === Object.prototype.toLocaleString, "Error.prototype.toLocaleString !== Object.prototype.toLocaleString"); err = new Error(); ok(err.valueOf === Object.prototype.valueOf, "err.valueOf !== Object.prototype.valueOf"); ok(Error.prototype.name === "Error", "Error.prototype.name = " + Error.prototype.name); ok(err.name === "Error", "err.name = " + err.name); EvalError.prototype.message = "test"; ok(EvalError.prototype.message === "test", "EvalError.prototype.message = " + EvalError.prototype.message); ok(err.toString !== Object.prototype.toString, "err.toString === Object.prototype.toString"); ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "Error"), "err.toString() = " + err.toString()); err = new EvalError(); ok(EvalError.prototype.name === "EvalError", "EvalError.prototype.name = " + EvalError.prototype.name); ok(err.name === "EvalError", "err.name = " + err.name); ok(err.toString === Error.prototype.toString, "err.toString !== Error.prototype.toString"); ok(err.message === "", "err.message != ''"); err.message = date; ok(err.message === date, "err.message != date"); ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "EvalError: "+err.message), "err.toString() = " + err.toString()); ok(err.toString !== Object.prototype.toString, "err.toString === Object.prototype.toString"); err = new RangeError(); ok(RangeError.prototype.name === "RangeError", "RangeError.prototype.name = " + RangeError.prototype.name); ok(err.name === "RangeError", "err.name = " + err.name); ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "RangeError"), "err.toString() = " + err.toString()); err = new ReferenceError(); ok(ReferenceError.prototype.name === "ReferenceError", "ReferenceError.prototype.name = " + ReferenceError.prototype.name); ok(err.name === "ReferenceError", "err.name = " + err.name); ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "ReferenceError"), "err.toString() = " + err.toString()); err = new SyntaxError(); ok(SyntaxError.prototype.name === "SyntaxError", "SyntaxError.prototype.name = " + SyntaxError.prototype.name); ok(err.name === "SyntaxError", "err.name = " + err.name); ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "SyntaxError"), "err.toString() = " + err.toString()); err = new TypeError(); ok(TypeError.prototype.name === "TypeError", "TypeError.prototype.name = " + TypeError.prototype.name); ok(err.name === "TypeError", "err.name = " + err.name); ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "TypeError"), "err.toString() = " + err.toString()); err = new URIError(); ok(URIError.prototype.name === "URIError", "URIError.prototype.name = " + URIError.prototype.name); ok(err.name === "URIError", "err.name = " + err.name); ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "URIError"), "err.toString() = " + err.toString()); err = new Error("message"); ok(err.message === "message", "err.message !== 'message'"); ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "Error: message"), "err.toString() = " + err.toString()); err = new Error(123); ok(err.number === 123, "err.number = " + err.number); err.number = 254; ok(err.number === 254, "err.number = " + err.number); err = new Error(0, "message"); ok(err.number === 0, "err.number = " + err.number); ok(err.message === "message", "err.message = " + err.message); ok(err.description === "message", "err.description = " + err.description); err = new Error(); ok(err.number === 0, "err.number = " + err.number); ok(err.description === "", "err.description = " + err.description); err.description = 5; ok(err.description === 5, "err.description = " + err.description); ok(err.message === "", "err.message = " + err.message); err.message = 4; ok(err.message === 4, "err.message = " + err.message); ok(!("number" in Error), "number is in Error"); tmp = new Object(); ok(tmp.hasOwnProperty("toString") === false, "toString property should be inherited"); tmp.toString = function() { return "test"; }; ok(tmp.hasOwnProperty("toString") === true, "toString own property should exist"); ok(tmp.hasOwnProperty("nonExisting") === false, "nonExisting property should not exist"); tmp = Error.prototype.toString.call(tmp); ok(tmp === "[object Error]", "Error.prototype.toString.call(tmp) = " + tmp); tmp = function() { return 0; }; tmp[0] = true; ok(tmp.hasOwnProperty("toString") === false, "toString property should be inherited"); ok(tmp.hasOwnProperty("0") === true, "hasOwnProperty(0) returned false"); ok(tmp.hasOwnProperty() === false, "hasOwnProperty() returned true"); ok(Object.prototype.hasOwnProperty.call(testObj) === false, "hasOwnProperty without name returned true"); if(invokeVersion >= 2) { obj = new Object(); obj.name = "test"; tmp = Error.prototype.toString.call(obj); ok(tmp === "test", "Error.prototype.toString.call(obj) = " + tmp); obj = new Object(); obj.name = 6; obj.message = false; tmp = Error.prototype.toString.call(obj); ok(tmp === "6: false", "Error.prototype.toString.call(obj) = " + tmp); obj = new Object(); obj.message = "test"; tmp = Error.prototype.toString.call(obj); ok(tmp === "test", "Error.prototype.toString.call(obj) = " + tmp); obj = new Object(); obj.name = ""; obj.message = "test"; tmp = Error.prototype.toString.call(obj); ok(tmp === "test", "Error.prototype.toString.call(obj) = " + tmp); } tmp = Error.prototype.toString.call(testObj); ok(tmp === "[object Error]", "Error.prototype.toString.call(testObj) = " + tmp); err = new Error(); err.name = null; ok(err.name === null, "err.name = " + err.name + " expected null"); if(invokeVersion >= 2) ok(err.toString() === "null", "err.toString() = " + err.toString()); err = new Error(); err.message = false; ok(err.message === false, "err.message = " + err.message + " expected false"); if(invokeVersion >= 2) ok(err.toString() === "Error: false", "err.toString() = " + err.toString()); err = new Error(); err.message = new Object(); err.message.toString = function() { return ""; }; if(invokeVersion >= 2) ok(err.toString() === "Error", "err.toString() = " + err.toString()); err = new Error(); err.message = undefined; if(invokeVersion >= 2) ok(err.toString() === "Error", "err.toString() = " + err.toString()); var exception_array = { E_INVALID_LENGTH: { type: "RangeError", number: -2146823259 }, E_NOT_DATE: { type: "TypeError", number: -2146823282 }, E_NOT_BOOL: { type: "TypeError", number: -2146823278 }, E_ARG_NOT_OPT: { type: "TypeError", number: -2146827839 }, E_NO_PROPERTY: { type: "TypeError", number: -2146827850 }, E_NOT_NUM: { type: "TypeError", number: -2146823287 }, E_INVALID_CALL_ARG: { type: "TypeError", number: -2146828283 }, E_NOT_FUNC: { type: "TypeError", number: -2146823286 }, E_OBJECT_EXPECTED: { type: "TypeError", number: -2146823281 }, E_OBJECT_REQUIRED: { type: "TypeError", number: -2146827864 }, E_UNSUPPORTED_ACTION: { type: "TypeError", number: -2146827843 }, E_NOT_VBARRAY: { type: "TypeError", number: -2146823275 }, E_INVALID_DELETE: { type: "TypeError", number: -2146823276 }, E_UNDEFINED: { type: "TypeError", number: -2146823279 }, E_JSCRIPT_EXPECTED: { type: "TypeError", number: -2146823274 }, E_NOT_ARRAY: { type: "TypeError", number: -2146823257 }, E_SYNTAX_ERROR: { type: "SyntaxError", number: -2146827286 }, E_LBRACKET: { type: "SyntaxError", number: -2146827283 }, E_RBRACKET: { type: "SyntaxError", number: -2146827282 }, E_SEMICOLON: { type: "SyntaxError", number: -2146827284 }, E_UNTERMINATED_STR: { type: "SyntaxError", number: -2146827273 }, E_DISABLED_CC: { type: "SyntaxError", number: -2146827258 }, E_INVALID_BREAK: { type: "SyntaxError", number: -2146827269 }, E_INVALID_CONTINUE: { type: "SyntaxError", number: -2146827268 }, E_LABEL_NOT_FOUND: { type: "SyntaxError", number: -2146827262 }, E_LABEL_REDEFINED: { type: "SyntaxError", number: -2146827263 }, E_MISPLACED_RETURN: { type: "SyntaxError", number: -2146827270 }, E_ILLEGAL_ASSIGN: { type: "ReferenceError", number: -2146823280 }, E_PRECISION_OUT_OF_RANGE: {type: "RangeError", number: -2146823261 }, E_FRACTION_DIGITS_OUT_OF_RANGE: {type: "RangeError", number: -2146823262 }, E_SUBSCRIPT_OUT_OF_RANGE: {type: "RangeError", number: -2146828279 }, E_REGEXP_SYNTAX_ERROR: { type: "RegExpError", number: -2146823271 }, E_URI_INVALID_CHAR: { type: "URIError", number: -2146823264 }, E_URI_INVALID_CODING: { type: "URIError", number: -2146823263 } }; function testException(func, id) { var ex = exception_array[id]; var ret = "", num = ""; try { func(); } catch(e) { ret = e.name; num = e.number; } ok(ret === ex.type, "Exception test, ret = " + ret + ", expected " + ex.type +". Executed function: " + func.toString()); ok(num === ex.number, "Exception test, num = " + num + ", expected " + ex.number + ". Executed function: " + func.toString()); } // RangeError tests testException(function() {Array(-3);}, "E_INVALID_LENGTH"); testException(function() {createArray().lbound("aaa");}, "E_SUBSCRIPT_OUT_OF_RANGE"); testException(function() {createArray().lbound(3);}, "E_SUBSCRIPT_OUT_OF_RANGE"); testException(function() {createArray().getItem(3);}, "E_SUBSCRIPT_OUT_OF_RANGE"); // TypeError tests testException(function() {date.setTime();}, "E_ARG_NOT_OPT"); testException(function() {date.setYear();}, "E_ARG_NOT_OPT"); testException(function() {arr.test();}, "E_NO_PROPERTY"); testException(function() {Number.prototype.toString.call(arr);}, "E_NOT_NUM"); testException(function() {Number.prototype.toFixed.call(arr);}, "E_NOT_NUM"); testException(function() {(new Number(3)).toString(1);}, "E_INVALID_CALL_ARG"); testException(function() {(new Number(3)).toFixed(21);}, "E_FRACTION_DIGITS_OUT_OF_RANGE"); testException(function() {(new Number(1)).toPrecision(0);}, "E_PRECISION_OUT_OF_RANGE"); testException(function() {not_existing_variable.something();}, "E_UNDEFINED"); testException(function() {date();}, "E_NOT_FUNC"); testException(function() {arr();}, "E_NOT_FUNC"); testException(function() {(new Object) instanceof (new Object);}, "E_NOT_FUNC"); testException(function() {eval("nonexistingfunc()")}, "E_OBJECT_EXPECTED"); testException(function() {(new Object()) instanceof 3;}, "E_NOT_FUNC"); testException(function() {(new Object()) instanceof null;}, "E_NOT_FUNC"); testException(function() {(new Object()) instanceof nullDisp;}, "E_NOT_FUNC"); testException(function() {"test" in 3;}, "E_OBJECT_EXPECTED"); testException(function() {"test" in null;}, "E_OBJECT_EXPECTED"); testException(function() {"test" in nullDisp;}, "E_OBJECT_EXPECTED"); testException(function() {new 3;}, "E_UNSUPPORTED_ACTION"); testException(function() {new null;}, "E_OBJECT_EXPECTED"); testException(function() {new nullDisp;}, "E_NO_PROPERTY"); testException(function() {new VBArray();}, "E_NOT_VBARRAY"); testException(function() {new VBArray(new VBArray(createArray()));}, "E_NOT_VBARRAY"); testException(function() {VBArray.prototype.lbound.call(new Object());}, "E_NOT_VBARRAY"); testException(function() {+nullDisp.prop;}, "E_OBJECT_REQUIRED"); testException(function() {+nullDisp["prop"];}, "E_OBJECT_REQUIRED"); testException(function() {delete (new Object());}, "E_INVALID_DELETE"); testException(function() {delete false;}, "E_INVALID_DELETE"); testException(function() {undefined.toString();}, "E_OBJECT_EXPECTED"); testException(function() {null.toString();}, "E_OBJECT_EXPECTED"); obj = new Object(); obj.prop = 1; tmp = false; testException(function() {delete ((tmp = true) ? obj.prop : obj.prop);}, "E_INVALID_DELETE"); ok(tmp, "delete (..) expression not evaluated"); //FIXME: testException(function() {nonexistent++;}, "E_OBJECT_EXPECTED"); //FIXME: testException(function() {undefined.nonexistent++;}, "E_OBJECT_EXPECTED"); // SyntaxError tests function testSyntaxError(code, id) { var ex = exception_array[id]; var ret = "", num = ""; try { eval(code); } catch(e) { ret = e.name; num = e.number; } ok(ret === ex.type, "Syntax exception test, ret = " + ret + ", expected " + ex.type +". Executed code: " + code); ok(num === ex.number, "Syntax exception test, num = " + num + ", expected " + ex.number + ". Executed code: " + code); } testSyntaxError("for(i=0;) {}", "E_SYNTAX_ERROR"); testSyntaxError("function {};", "E_LBRACKET"); testSyntaxError("if", "E_LBRACKET"); testSyntaxError("do i=0; while", "E_LBRACKET"); testSyntaxError("while", "E_LBRACKET"); testSyntaxError("for", "E_LBRACKET"); testSyntaxError("with", "E_LBRACKET"); testSyntaxError("switch", "E_LBRACKET"); testSyntaxError("if(false", "E_RBRACKET"); testSyntaxError("for(i=0; i<10; i++", "E_RBRACKET"); testSyntaxError("while(true", "E_RBRACKET"); testSyntaxError("for(i=0", "E_SEMICOLON"); testSyntaxError("for(i=0;i<10", "E_SEMICOLON"); testSyntaxError("while(", "E_SYNTAX_ERROR"); testSyntaxError("if(", "E_SYNTAX_ERROR"); testSyntaxError("'unterminated", "E_UNTERMINATED_STR"); testSyntaxError("*", "E_SYNTAX_ERROR"); testSyntaxError("@_jscript_version", "E_DISABLED_CC"); testSyntaxError("@a", "E_DISABLED_CC"); testSyntaxError("/* @cc_on @*/ @_jscript_version", "E_DISABLED_CC"); testSyntaxError("ok(false, 'unexpected execution'); break;", "E_INVALID_BREAK"); testSyntaxError("ok(false, 'unexpected execution'); continue;", "E_INVALID_CONTINUE"); testSyntaxError("ok(false, 'unexpected execution'); while(true) break unknown_label;", "E_LABEL_NOT_FOUND"); testSyntaxError("ok(false, 'unexpected execution'); some_label: continue some_label;", "E_INVALID_CONTINUE"); testSyntaxError("ok(false, 'unexpected execution'); while(true) continue some_label;", "E_LABEL_NOT_FOUND"); testSyntaxError("ok(false, 'unexpected execution'); some_label: { while(true) continue some_label; }", "E_INVALID_CONTINUE"); testSyntaxError("ok(false, 'unexpected execution'); some_label: { some_label: while(true); }", "E_LABEL_REDEFINED"); testSyntaxError("return;", "E_MISPLACED_RETURN"); testSyntaxError("001.5;", "E_SEMICOLON"); testSyntaxError("001.5", "E_SEMICOLON"); testSyntaxError("0a", "E_SEMICOLON"); testSyntaxError("01a", "E_SEMICOLON"); testSyntaxError("0x1r", "E_SEMICOLON"); testSyntaxError("1a", "E_SEMICOLON"); testSyntaxError("1_", "E_SEMICOLON"); // ReferenceError tests testException(function() {test = function() {}}, "E_ILLEGAL_ASSIGN"); tmp = false; testException(function() {test = (tmp = true);}, "E_ILLEGAL_ASSIGN"); ok(tmp, "expr value on invalid assign not evaluated"); tmp = false; testException(function() {(tmp = true) = false;}, "E_ILLEGAL_ASSIGN"); ok(tmp, "expr assign not evaluated"); tmp = false; testException(function() {true = (tmp = true);}, "E_ILLEGAL_ASSIGN"); ok(tmp, "expr value assign not evaluated"); tmp = ""; testException(function() {(tmp = tmp+"1") = (tmp = tmp+"2");}, "E_ILLEGAL_ASSIGN"); ok(tmp === "12", "assign evaluated in unexpected order"); tmp = false; testException(function() { ((tmp = true) && false)++; }, "E_ILLEGAL_ASSIGN") ok(tmp, "incremented expression not evaluated"); // RegExpError tests testException(function() {RegExp(/a/, "g");}, "E_REGEXP_SYNTAX_ERROR"); // URIError tests testException(function() {encodeURI('\udcaa');}, "E_URI_INVALID_CHAR"); testException(function() {encodeURIComponent('\udcaa');}, "E_URI_INVALID_CHAR"); testException(function() {decodeURI('%');}, "E_URI_INVALID_CODING"); testException(function() {decodeURI('%aaaa');}, "E_URI_INVALID_CODING"); function testThisExcept(func, e) { testException(function() {func.call(new Object())}, e); } function testBoolThis(func) { testThisExcept(Boolean.prototype[func], "E_NOT_BOOL"); } testBoolThis("toString"); testBoolThis("valueOf"); function testDateThis(func) { testThisExcept(Date.prototype[func], "E_NOT_DATE"); } testDateThis("getDate"); testDateThis("getDay"); testDateThis("getFullYear"); testDateThis("getHours"); testDateThis("getMilliseconds"); testDateThis("getMinutes"); testDateThis("getMonth"); testDateThis("getSeconds"); testDateThis("getTime"); testDateThis("getTimezoneOffset"); testDateThis("getUTCDate"); testDateThis("getUTCDay"); testDateThis("getUTCFullYear"); testDateThis("getUTCHours"); testDateThis("getUTCMilliseconds"); testDateThis("getUTCMinutes"); testDateThis("getUTCMonth"); testDateThis("getUTCSeconds"); testDateThis("getYear"); testDateThis("setDate"); testDateThis("setFullYear"); testDateThis("setHours"); testDateThis("setMilliseconds"); testDateThis("setMinutes"); testDateThis("setMonth"); testDateThis("setSeconds"); testDateThis("setTime"); testDateThis("setUTCDate"); testDateThis("setUTCFullYear"); testDateThis("setUTCHours"); testDateThis("setUTCMilliseconds"); testDateThis("setUTCMinutes"); testDateThis("setUTCMonth"); testDateThis("setUTCSeconds"); testDateThis("setYear"); testDateThis("toDateString"); testDateThis("toLocaleDateString"); testDateThis("toLocaleString"); testDateThis("toLocaleTimeString"); testDateThis("toString"); testDateThis("toTimeString"); testDateThis("toUTCString"); testDateThis("valueOf"); function testArrayThis(func) { testThisExcept(Array.prototype[func], "E_NOT_ARRAY"); } testArrayThis("toString"); function testFunctionThis(func) { testThisExcept(Function.prototype[func], "E_NOT_FUNC"); } testFunctionThis("toString"); testFunctionThis("call"); testFunctionThis("apply"); function testArrayHostThis(func) { testException(function() { Array.prototype[func].call(testObj); }, "E_JSCRIPT_EXPECTED"); } testArrayHostThis("push"); testArrayHostThis("shift"); testArrayHostThis("slice"); testArrayHostThis("splice"); testArrayHostThis("unshift"); testArrayHostThis("reverse"); testArrayHostThis("join"); testArrayHostThis("pop"); testArrayHostThis("sort"); function testObjectInherit(obj, constr, ts, tls, vo) { ok(obj instanceof Object, "obj is not instance of Object"); ok(obj instanceof constr, "obj is not instance of its constructor"); ok(obj.hasOwnProperty === Object.prototype.hasOwnProperty, "obj.hasOwnProperty !== Object.prototype.hasOwnProprty"); ok(obj.isPrototypeOf === Object.prototype.isPrototypeOf, "obj.isPrototypeOf !== Object.prototype.isPrototypeOf"); ok(obj.propertyIsEnumerable === Object.prototype.propertyIsEnumerable, "obj.propertyIsEnumerable !== Object.prototype.propertyIsEnumerable"); if(ts) ok(obj.toString === Object.prototype.toString, "obj.toString !== Object.prototype.toString"); else ok(obj.toString != Object.prototype.toString, "obj.toString == Object.prototype.toString"); if(tls) ok(obj.toLocaleString === Object.prototype.toLocaleString, "obj.toLocaleString !== Object.prototype.toLocaleString"); else ok(obj.toLocaleString != Object.prototype.toLocaleString, "obj.toLocaleString == Object.prototype.toLocaleString"); if(vo) ok(obj.valueOf === Object.prototype.valueOf, "obj.valueOf !== Object.prototype.valueOf"); else ok(obj.valueOf != Object.prototype.valueOf, "obj.valueOf == Object.prototype.valueOf"); ok(obj._test === "test", "obj.test = " + obj._test); } Object.prototype._test = "test"; testObjectInherit(new String("test"), String, false, true, false); testObjectInherit(/test/g, RegExp, false, true, true); testObjectInherit(new Number(1), Number, false, false, false); testObjectInherit(new Date(), Date, false, false, false); testObjectInherit(new Boolean(true), Boolean, false, true, false); testObjectInherit(new Array(), Array, false, false, true); testObjectInherit(new Error(), Error, false, true, true); testObjectInherit(testObjectInherit, Function, false, true, true); testObjectInherit(Math, Object, true, true, true); (function() { testObjectInherit(arguments, Object, true, true, true); })(); function testFunctions(obj, arr) { var l; for(var i=0; i<arr.length; i++) { l = obj[arr[i][0]].length; ok(l === arr[i][1], arr[i][0] + ".length = " + l); ok(obj.propertyIsEnumerable(arr[i][0]) === false, arr[i][0] + " is enumerable"); } } testFunctions(Boolean.prototype, [ ["valueOf", 0], ["toString", 0] ]); testFunctions(Number.prototype, [ ["valueOf", 0], ["toString", 1], ["toExponential", 1], ["toLocaleString", 0], ["toPrecision", 1] ]); testFunctions(String.prototype, [ ["valueOf", 0], ["toString", 0], ["anchor", 1], ["big", 0], ["blink", 0], ["bold", 0], ["charAt", 1], ["charCodeAt", 1], ["concat", 1], ["fixed", 0], ["fontcolor", 1], ["fontsize", 1], ["indexOf", 2], ["italics", 0], ["lastIndexOf", 2], ["link", 1], ["localeCompare", 1], ["match", 1], ["replace", 1], ["search", 0], ["slice", 0], ["small", 0], ["split", 2], ["strike", 0], ["sub", 0], ["substr", 2], ["substring", 2], ["sup", 0], ["toLocaleLowerCase", 0], ["toLocaleUpperCase", 0], ["toLowerCase", 0], ["toUpperCase", 0] ]); testFunctions(RegExp.prototype, [ ["toString", 0], ["exec", 1], ["test", 1] ]); testFunctions(Date.prototype, [ ["getDate", 0], ["getDay", 0], ["getFullYear", 0], ["getHours", 0], ["getMilliseconds", 0], ["getMinutes", 0], ["getMonth", 0], ["getSeconds", 0], ["getTime", 0], ["getTimezoneOffset", 0], ["getUTCDate", 0], ["getUTCDay", 0], ["getUTCFullYear", 0], ["getUTCHours", 0], ["getUTCMilliseconds", 0], ["getUTCMinutes", 0], ["getUTCMonth", 0], ["getUTCSeconds", 0], ["getYear", 0], ["setDate", 1], ["setFullYear", 3], ["setHours", 4], ["setMilliseconds", 1], ["setMinutes", 3], ["setMonth", 2], ["setSeconds", 2], ["setTime", 1], ["setUTCDate", 1], ["setUTCFullYear", 3], ["setUTCHours", 4], ["setUTCMilliseconds", 1], ["setUTCMinutes", 3], ["setUTCMonth", 2], ["setUTCSeconds", 2], ["setYear", 1], ["toDateString", 0], ["toLocaleDateString", 0], ["toLocaleString", 0], ["toLocaleTimeString", 0], ["toString", 0], ["toTimeString", 0], ["toUTCString", 0], ["toGMTString", 0], ["valueOf", 0] ]); testFunctions(Array.prototype, [ ["concat", 1], ["join", 1], ["push", 1], ["pop", 0], ["reverse", 0], ["shift", 0], ["slice", 2], ["sort", 1], ["splice", 2], ["toLocaleString", 0], ["toString", 0], ["unshift", 1] ]); testFunctions(Error.prototype, [ ["toString", 0] ]); testFunctions(Math, [ ["abs", 1], ["acos", 1], ["asin", 1], ["atan", 1], ["atan2", 2], ["ceil", 1], ["cos", 1], ["exp", 1], ["floor", 1], ["log", 1], ["max", 2], ["min", 2], ["pow", 2], ["random", 0], ["round", 1], ["sin", 1], ["sqrt", 1], ["tan", 1] ]); testFunctions(Object.prototype, [ ["hasOwnProperty", 1], ["isPrototypeOf", 1], ["propertyIsEnumerable", 1], ["toLocaleString", 0], ["toString", 0], ["valueOf", 0] ]); testFunctions(Function.prototype, [ ["apply", 2], ["call", 1], ["toString", 0] ]); testFunctions(VBArray.prototype, [ ["dimensions", 0], ["getItem", 1], ["lbound", 0], ["toArray", 0], ["ubound", 0] ]); if(invokeVersion < 2) ok(typeof(JSON) === "undefined", "JSON is not undefined"); else testFunctions(JSON, [ ["parse", 2], ["stringify", 3] ]); ok(ActiveXObject.length == 1, "ActiveXObject.length = " + ActiveXObject.length); ok(Array.length == 1, "Array.length = " + Array.length); ok(Boolean.length == 1, "Boolean.length = " + Boolean.length); ok(CollectGarbage.length == 0, "CollectGarbage.length = " + CollectGarbage.length); ok(Date.length == 7, "Date.length = " + Date.length); ok(Enumerator.length == 7, "Enumerator.length = " + Enumerator.length); ok(Error.length == 1, "Error.length = " + Error.length); ok(EvalError.length == 1, "EvalError.length = " + EvalError.length); ok(RegExpError.length == 1, "RegExpError.length = " + RegExpError.length); ok(Function.length == 1, "Function.length = " + Function.length); ok(GetObject.length == 2, "GetObject.length = " + GetObject.length); ok(Number.length == 1, "Number.length = " + Number.length); ok(Object.length == 0, "Object.length = " + Object.length); ok(RangeError.length == 1, "RangeError.length = " + RangeError.length); ok(ReferenceError.length == 1, "ReferenceError.length = " + ReferenceError.length); ok(RegExp.length == 2, "RegExp.length = " + RegExp.length); ok(ScriptEngine.length == 0, "ScriptEngine.length = " + ScriptEngine.length); ok(ScriptEngineBuildVersion.length == 0, "ScriptEngineBuildVersion.length = " + ScriptEngineBuildVersion.length); ok(ScriptEngineMajorVersion.length == 0, "ScriptEngineMajorVersion.length = " + ScriptEngineMajorVersion.length); ok(ScriptEngineMinorVersion.length == 0, "ScriptEngineMinorVersion.length = " + ScriptEngineMinorVersion.length); ok(String.length == 1, "String.length = " + String.length); ok(SyntaxError.length == 1, "SyntaxError.length = " + SyntaxError.length); ok(TypeError.length == 1, "TypeError.length = " + TypeError.length); ok(URIError.length == 1, "URIError.length = " + URIError.length); ok(VBArray.length == 1, "VBArray.length = " + VBArray.length); ok(decodeURI.length == 1, "decodeURI.length = " + decodeURI.length); ok(decodeURIComponent.length == 1, "decodeURIComponent.length = " + decodeURIComponent.length); ok(encodeURI.length == 1, "encodeURI.length = " + encodeURI.length); ok(encodeURIComponent.length == 1, "encodeURIComponent.length = " + encodeURIComponent.length); ok(escape.length == 1, "escape.length = " + escape.length); ok(eval.length == 1, "eval.length = " + eval.length); ok(isFinite.length == 1, "isFinite.length = " + isFinite.length); ok(isNaN.length == 1, "isNaN.length = " + isNaN.length); ok(parseFloat.length == 1, "parseFloat.length = " + parseFloat.length); ok(parseInt.length == 2, "parseInt.length = " + parseInt.length); ok(unescape.length == 1, "unescape.length = " + unescape.length); String.length = 3; ok(String.length == 1, "String.length = " + String.length); var tmp = createArray(); ok(getVT(tmp) == "VT_ARRAY|VT_VARIANT", "getVT(createArray()) = " + getVT(tmp)); ok(getVT(VBArray(tmp)) == "VT_ARRAY|VT_VARIANT", "getVT(VBArray(tmp)) = " + getVT(VBArray(tmp))); tmp = new VBArray(tmp); tmp = new VBArray(VBArray(createArray())); ok(tmp.dimensions() == 2, "tmp.dimensions() = " + tmp.dimensions()); ok(tmp.lbound() == 0, "tmp.lbound() = " + tmp.lbound()); ok(tmp.lbound(1) == 0, "tmp.lbound(1) = " + tmp.lbound(1)); ok(tmp.lbound(2, 1) == 2, "tmp.lbound(2, 1) = " + tmp.lbound(2, 1)); ok(tmp.ubound() == 4, "tmp.ubound() = " + tmp.ubound()); ok(tmp.ubound("2") == 3, "tmp.ubound(\"2\") = " + tmp.ubound("2")); ok(tmp.getItem(1, 2) == 3, "tmp.getItem(1, 2) = " + tmp.getItem(1, 2)); ok(tmp.getItem(2, 3) == 33, "tmp.getItem(2, 3) = " + tmp.getItem(2, 3)); ok(tmp.getItem(3, 2) == 13, "tmp.getItem(3, 2) = " + tmp.getItem(3, 2)); ok(tmp.toArray() == "2,3,12,13,22,23,32,33,42,43", "tmp.toArray() = " + tmp.toArray()); ok(createArray().toArray() == "2,3,12,13,22,23,32,33,42,43", "createArray.toArray()=" + createArray().toArray()); reportSuccess();