Merge my current work done on the kd++ branch:
[reactos.git] / rostests / winetests / jscript / api.js
1 /*
2 * Copyright 2008 Jacek Caban for CodeWeavers
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17 */
18
19 var tmp, i;
20
21 var bigInt = Math.pow(2,40);
22
23 ok(ScriptEngine() === "JScript", "ScriptEngine() = " + ScriptEngine());
24 ok(ScriptEngine(3) === "JScript", "ScriptEngine(3) = " + ScriptEngine(3));
25 ok(ScriptEngineMajorVersion() === ScriptEngineMajorVersion(2), "ScriptEngineMajorVersion() !== ScriptEngineMajorVersion(2)");
26 ok(ScriptEngineMinorVersion() === ScriptEngineMinorVersion(2), "ScriptEngineMinorVersion() !== ScriptEngineMinorVersion(2)");
27 ok(ScriptEngineBuildVersion() === ScriptEngineBuildVersion(2), "ScriptEngineBuildVersion() !== ScriptEngineBuildVersion(2)");
28
29 function testNoEnumerables(expr) {
30 for(var iter in obj)
31 ok(false, expr + " has property " + iter);
32 }
33
34 testNoEnumerables("Object");
35 testNoEnumerables("Object.prototype");
36 testNoEnumerables("new Object()");
37 testNoEnumerables("Math");
38 testNoEnumerables("String");
39 testNoEnumerables("String.prototype");
40 testNoEnumerables("new String()");
41 testNoEnumerables("Number");
42 testNoEnumerables("Number.prototype");
43 testNoEnumerables("new Number(1)");
44 testNoEnumerables("ActiveXObject");
45 testNoEnumerables("Array");
46 testNoEnumerables("Array.prototype");
47 testNoEnumerables("new Array()");
48 testNoEnumerables("Boolean");
49 testNoEnumerables("Boolean.prototype");
50 testNoEnumerables("new Boolean()");
51 testNoEnumerables("Date");
52 testNoEnumerables("Date.prototype");
53 testNoEnumerables("new Date()");
54 testNoEnumerables("TypeError");
55 testNoEnumerables("TypeError.prototype");
56 testNoEnumerables("new TypeError()");
57 testNoEnumerables("Function");
58 testNoEnumerables("Function.prototype");
59 testNoEnumerables("testNoEnumerates");
60 testNoEnumerables("VBArray");
61
62 ok(Object.propertyIsEnumerable("prototype") === false, "Object.prototype is enumerable");
63 ok(Math.propertyIsEnumerable("E") === false, "Math.E is enumerable");
64 ok(Math.propertyIsEnumerable("SQRT2") === false, "Math.SQRT2 is enumerable");
65 ok(Math.propertyIsEnumerable("PI") === false, "Math.PI is enumerable");
66 ok("test".propertyIsEnumerable("length") === false, "'test'.length is enumerable");
67 ok([1].propertyIsEnumerable("length") === false, "[1].length is enumerable");
68 ok((new TypeError()).propertyIsEnumerable("message") === true, "(new TypeError()).message is not enumerable");
69 ok((new TypeError()).propertyIsEnumerable("description") === false, "(new TypeError()).description is enumerable");
70 ok((new TypeError()).propertyIsEnumerable("name") === false, "(new TypeError()).name is enumerable");
71 ok((new TypeError()).propertyIsEnumerable("number") === false, "(new TypeError()).number is enumerable");
72 ok(Object.propertyIsEnumerable.propertyIsEnumerable("length") === false, "Object.propertyIsEnumerable.length is enumerable");
73
74 tmp = new Object();
75 tmp.test = "1";
76 ok(tmp.propertyIsEnumerable("test"), "tmp.test is not enumerable");
77
78 tmp = { test: 1 };
79 ok(tmp.propertyIsEnumerable("test"), "tmp.test is not enumerable");
80
81 ok([1].concat([2]).propertyIsEnumerable("1"), "[1].concat([2]).1 is not enumerable");
82 ok("t.e.s.t".split(".").propertyIsEnumerable("0"), "'test'.split().0 is not enumerable");
83
84 (function() {
85 ok(arguments.propertyIsEnumerable("0") === false, "arguments.0 is enumerable");
86 ok(arguments.propertyIsEnumerable("length") === false, "arguments.length is enumerable");
87 ok(arguments.propertyIsEnumerable("calee") === false, "arguments.calee is enumerable");
88 })();
89
90 tmp = [1];
91 tmp.push("");
92 ok(tmp.propertyIsEnumerable("1"), "[1].push() ... 1 is not enumerable");
93
94 ok([1,2].reverse().propertyIsEnumerable("1"), "[1,2].rverse().1 is not enumerable");
95 ok([1,2].propertyIsEnumerable("0"), "[1,2].0 is not enumerable");
96
97 i = parseInt("0");
98 ok(i === 0, "parseInt('0') = " + i);
99 i = parseInt("123");
100 ok(i === 123, "parseInt('123') = " + i);
101 i = parseInt("-123");
102 ok(i === -123, "parseInt('-123') = " + i);
103 i = parseInt("0xff");
104 ok(i === 0xff, "parseInt('0xff') = " + i);
105 i = parseInt("11", 8);
106 ok(i === 9, "parseInt('11', 8) = " + i);
107 i = parseInt("1j", 22);
108 ok(i === 41, "parseInt('1j', 32) = " + i);
109 i = parseInt("123", 0);
110 ok(i === 123, "parseInt('123', 0) = " + i);
111 i = parseInt("123", 10, "test");
112 ok(i === 123, "parseInt('123', 10, 'test') = " + i);
113 i = parseInt("11", "8");
114 ok(i === 9, "parseInt('11', '8') = " + i);
115 i = parseInt("010");
116 ok(i === 8, "parseInt('010') = " + i);
117 i = parseInt("");
118 ok(isNaN(i), "parseInt('') = " + i);
119 i = parseInt("0x");
120 ok(isNaN(i), "parseInt('0x') = " + i);
121 i = parseInt("+");
122 ok(isNaN(i), "parseInt('+') = " + i);
123 i = parseInt("-");
124 ok(isNaN(i), "parseInt('-') = " + i);
125 i = parseInt("0x10", 11);
126 ok(i === 0, "parseInt('0x10', 11) = " + i);
127 i = parseInt("010", 7);
128 ok(i === 7, "parseInt('010', 7) = " + i);
129 i = parseInt("123abc");
130 ok(i === 123, "parseInt('123abc') = " + i);
131 i = parseInt(" \t123abc");
132 ok(i === 123, "parseInt(' \\t123abc') = " + i);
133 i = parseInt("abc");
134 ok(isNaN(i), "parseInt('123abc') = " + i);
135 i = parseInt("-12", 11);
136 ok(i === -13, "parseInt('-12') = " + i);
137 i = parseInt("-0x10");
138 ok(i === -16, "parseInt('-0x10') = " + i);
139 i = parseInt("-010");
140 ok(i === -8, "parseInt('-010') = " + i);
141 i = parseInt("123", 0);
142 ok(i === 123, "parseInt('123', 0) = " + i);
143 i = parseInt("0x10", 0);
144 ok(i === 16, "parseInt('123', 0) = " + i);
145 i = parseInt("0x10", 10);
146 ok(i === 0, "parseInt('0x10', 10) = " + i);
147 i = parseInt("0xz");
148 ok(isNaN(i), "parseInt('0xz') = " + i);
149 i = parseInt("1", 1);
150 ok(isNaN(i), "parseInt('1', 1) = " + i);
151 i = parseInt("1", -1);
152 ok(isNaN(i), "parseInt('1', -1) = " + i);
153 i = parseInt("1", 37);
154 ok(isNaN(i), "parseInt('1', 37) = " + i);
155 i = parseInt("1", 36);
156 ok(i === 1, "parseInt('1', 36) = " + i);
157
158 tmp = encodeURI("abc");
159 ok(tmp === "abc", "encodeURI('abc') = " + tmp);
160 tmp = encodeURI("{abc}");
161 ok(tmp === "%7Babc%7D", "encodeURI('{abc}') = " + tmp);
162 tmp = encodeURI("");
163 ok(tmp === "", "encodeURI('') = " + tmp);
164 tmp = encodeURI("\01\02\03\04");
165 ok(tmp === "%01%02%03%04", "encodeURI('\\01\\02\\03\\04') = " + tmp);
166 tmp = encodeURI("{#@}");
167 ok(tmp === "%7B#@%7D", "encodeURI('{#@}') = " + tmp);
168 tmp = encodeURI("\xa1 ");
169 ok(tmp === "%C2%A1%20", "encodeURI(\\xa1 ) = " + tmp);
170 tmp = encodeURI("\xffff");
171 ok(tmp.length === 8, "encodeURI('\\xffff').length = " + tmp.length);
172 tmp = encodeURI("abcABC123;/?:@&=+$,-_.!~*'()");
173 ok(tmp === "abcABC123;/?:@&=+$,-_.!~*'()", "encodeURI('abcABC123;/?:@&=+$,-_.!~*'()') = " + tmp);
174 tmp = encodeURI("%");
175 ok(tmp === "%25", "encodeURI('%') = " + tmp);
176 tmp = encodeURI();
177 ok(tmp === "undefined", "encodeURI() = " + tmp);
178 tmp = encodeURI("abc", "test");
179 ok(tmp === "abc", "encodeURI('abc') = " + tmp);
180
181 tmp = decodeURI("abc");
182 ok(tmp === "abc", "decodeURI('abc') = " + tmp);
183 tmp = decodeURI("{abc}");
184 ok(tmp === "{abc}", "decodeURI('{abc}') = " + tmp);
185 tmp = decodeURI("");
186 ok(tmp === "", "decodeURI('') = " + tmp);
187 tmp = decodeURI("\01\02\03\04");
188 ok(tmp === "\01\02\03\04", "decodeURI('\\01\\02\\03\\04') = " + tmp);
189 tmp = decodeURI();
190 ok(tmp === "undefined", "decodeURI() = " + tmp);
191 tmp = decodeURI("abc", "test");
192 ok(tmp === "abc", "decodeURI('abc') = " + tmp);
193 tmp = decodeURI("%7babc%7d");
194 ok(tmp === "{abc}", "decodeURI('%7Babc%7D') = " + tmp);
195 tmp = decodeURI("%01%02%03%04");
196 ok(tmp === "\01\02\03\04", "decodeURI('%01%02%03%04') = " + tmp);
197 tmp = decodeURI("%C2%A1%20");
198 ok(tmp === "\xa1 ", "decodeURI('%C2%A1%20') = " + tmp);
199 tmp = decodeURI("%C3%BFff");
200 ok(tmp.length === 3, "decodeURI('%C3%BFff').length = " + tmp.length);
201
202 tmp = encodeURIComponent("abc");
203 ok(tmp === "abc", "encodeURIComponent('abc') = " + tmp);
204 dec = decodeURIComponent(tmp);
205 ok(dec === "abc", "decodeURIComponent('" + tmp + "') = " + dec);
206 tmp = encodeURIComponent("{abc}");
207 ok(tmp === "%7Babc%7D", "encodeURIComponent('{abc}') = " + tmp);
208 dec = decodeURIComponent(tmp);
209 ok(dec === "{abc}", "decodeURIComponent('" + tmp + "') = " + dec);
210 tmp = encodeURIComponent("");
211 ok(tmp === "", "encodeURIComponent('') = " + tmp);
212 dec = decodeURIComponent(tmp);
213 ok(dec === "", "decodeURIComponent('" + tmp + "') = " + dec);
214 tmp = encodeURIComponent("\01\02\03\04");
215 ok(tmp === "%01%02%03%04", "encodeURIComponent('\\01\\02\\03\\04') = " + tmp);
216 dec = decodeURIComponent(tmp);
217 ok(dec === "\01\02\03\04", "decodeURIComponent('" + tmp + "') = " + dec);
218 tmp = encodeURIComponent("{#@}");
219 ok(tmp === "%7B%23%40%7D", "encodeURIComponent('{#@}') = " + tmp);
220 dec = decodeURIComponent(tmp);
221 ok(dec === "{#@}", "decodeURIComponent('" + tmp + "') = " + dec);
222 tmp = encodeURIComponent("\xa1 ");
223 ok(tmp === "%C2%A1%20", "encodeURIComponent(\\xa1 ) = " + tmp);
224 dec = decodeURIComponent(tmp);
225 ok(dec === "\xa1 ", "decodeURIComponent('" + tmp + "') = " + dec);
226 tmp = encodeURIComponent("\xffff");
227 ok(tmp.length === 8, "encodeURIComponent('\\xffff').length = " + tmp.length);
228 dec = decodeURIComponent(tmp);
229 ok(dec === "\xffff", "decodeURIComponent('" + tmp + "') = " + dec);
230 tmp = encodeURIComponent("abcABC123;/?:@&=+$,-_.!~*'()");
231 ok(tmp === "abcABC123%3B%2F%3F%3A%40%26%3D%2B%24%2C-_.!~*'()", "encodeURIComponent('abcABC123;/?:@&=+$,-_.!~*'()') = " + tmp);
232 dec = decodeURIComponent(tmp);
233 ok(dec === "abcABC123;/?:@&=+$,-_.!~*'()", "decodeURIComponent('" + tmp + "') = " + dec);
234 tmp = encodeURIComponent();
235 ok(tmp === "undefined", "encodeURIComponent() = " + tmp);
236 tmp = encodeURIComponent("abc", "test");
237 ok(tmp === "abc", "encodeURIComponent('abc') = " + tmp);
238 dec = decodeURIComponent();
239 ok(dec === "undefined", "decodeURIComponent() = " + dec);
240 dec = decodeURIComponent("abc", "test");
241 ok(dec === "abc", "decodeURIComponent('abc') = " + dec);
242
243 tmp = escape("abc");
244 ok(tmp === "abc", "escape('abc') = " + tmp);
245 tmp = escape("");
246 ok(tmp === "", "escape('') = " + tmp);
247 tmp = escape("a1b c!d+e@*-_+./,");
248 ok(tmp === "a1b%20c%21d+e@*-_+./%2C", "escape('a1b c!d+e@*-_+./,') = " + tmp);
249 tmp = escape();
250 ok(tmp === "undefined", "escape() = " + tmp);
251 tmp = escape('\u1234\123\xf3');
252 ok(tmp == "%u1234S%F3", "escape('\u1234\123\xf3') = " + tmp);
253
254 tmp = unescape("abc");
255 ok(tmp === "abc", "unescape('abc') = " + tmp);
256 tmp = unescape("");
257 ok(tmp === "", "unescape('') = " + tmp);
258 tmp = unescape("%%%");
259 ok(tmp === "%%%", "unescape('%%%') = " + tmp);
260 tmp = unescape();
261 ok(tmp === "undefined", "unescape() = " + tmp);
262 tmp = unescape("%54%65s%u0074");
263 ok(tmp === "Test", "unescape('%54%65s%u0074') = " + tmp);
264
265 tmp = "aA1~`!@#$%^&*()_+=-][{}';:/.,<>?\|";
266 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));
267 ok(unescape(escape(tmp)) === tmp, "unescape(escape('" + tmp + "')) = " + unescape(escape(tmp)));
268
269 ok(Object.prototype.hasOwnProperty('toString'), "Object.prototype.hasOwnProperty('toString') is false");
270 ok(Object.prototype.hasOwnProperty('isPrototypeOf'), "Object.prototype.hasOwnProperty('isPrototypeOf') is false");
271 ok(Function.prototype.hasOwnProperty('call'), "Function.prototype.hasOwnProperty('call') is false");
272
273 obj = new Object();
274
275 ok(!obj.hasOwnProperty('toString'), "obj.hasOwnProperty('toString') is true");
276 ok(!obj.hasOwnProperty('isPrototypeOf'), "obj.hasOwnProperty('isPrototypeOf') is true");
277 ok(!Object.hasOwnProperty('toString'), "Object.hasOwnProperty('toString') is true");
278 ok(!Object.hasOwnProperty('isPrototypeOf'), "Object.hasOwnProperty('isPrototypeOf') is true");
279 ok(!parseFloat.hasOwnProperty('call'), "parseFloat.hasOwnProperty('call') is true");
280 ok(!Function.hasOwnProperty('call'), "Function.hasOwnProperty('call') is true");
281
282 obj = new Array();
283 ok(Array.prototype.hasOwnProperty('sort'), "Array.prototype.hasOwnProperty('sort') is false");
284 ok(Array.prototype.hasOwnProperty('length'), "Array.prototype.hasOwnProperty('length') is false");
285 ok(!obj.hasOwnProperty('sort'), "obj.hasOwnProperty('sort') is true");
286 ok(obj.hasOwnProperty('length'), "obj.hasOwnProperty('length') is true");
287
288 obj = new Boolean(false);
289 ok(!obj.hasOwnProperty('toString'), "obj.hasOwnProperty('toString') is true");
290 ok(!Boolean.hasOwnProperty('toString'), "Boolean.hasOwnProperty('toString') is true");
291 ok(Boolean.prototype.hasOwnProperty('toString'), "Boolean.prototype.hasOwnProperty('toString') is false");
292
293 obj = new Date();
294 ok(!obj.hasOwnProperty('getTime'), "obj.hasOwnProperty('getTime') is true");
295 ok(!Date.hasOwnProperty('getTime'), "Date.hasOwnProperty('getTime') is true");
296 ok(Date.prototype.hasOwnProperty('getTime'), "Date.prototype.hasOwnProperty('getTime') is false");
297
298 obj = new Number();
299 ok(!obj.hasOwnProperty('toFixed'), "obj.hasOwnProperty('toFixed') is true");
300 ok(!Number.hasOwnProperty('toFixed'), "Number.hasOwnProperty('toFixed') is true");
301 ok(Number.prototype.hasOwnProperty('toFixed'), "Number.prototype.hasOwnProperty('toFixed') is false");
302
303 obj = /x/;
304 ok(!obj.hasOwnProperty('exec'), "obj.hasOwnProperty('exec') is true");
305 ok(obj.hasOwnProperty('source'), "obj.hasOwnProperty('source') is false");
306 ok(!RegExp.hasOwnProperty('exec'), "RegExp.hasOwnProperty('exec') is true");
307 ok(!RegExp.hasOwnProperty('source'), "RegExp.hasOwnProperty('source') is true");
308 ok(RegExp.prototype.hasOwnProperty('source'), "RegExp.prototype.hasOwnProperty('source') is false");
309
310 obj = new String();
311 ok(!obj.hasOwnProperty('charAt'), "obj.hasOwnProperty('charAt') is true");
312 ok(obj.hasOwnProperty('length'), "obj.hasOwnProperty('length') is false");
313 ok(!String.hasOwnProperty('charAt'), "String.hasOwnProperty('charAt') is true");
314 ok(String.prototype.hasOwnProperty('charAt'), "String.prototype.hasOwnProperty('charAt') is false");
315 ok(String.prototype.hasOwnProperty('length'), "String.prototype.hasOwnProperty('length') is false");
316
317 tmp = "" + new Object();
318 ok(tmp === "[object Object]", "'' + new Object() = " + tmp);
319 (tmp = new Array).f = Object.prototype.toString;
320 ok(tmp.f() === "[object Array]", "tmp.f() = " + tmp.f());
321 (tmp = new Boolean).f = Object.prototype.toString;
322 ok(tmp.f() === "[object Boolean]", "tmp.f() = " + tmp.f());
323 (tmp = new Date).f = Object.prototype.toString;
324 ok(tmp.f() === "[object Date]", "tmp.f() = " + tmp.f());
325 (tmp = function() {}).f = Object.prototype.toString;
326 ok(tmp.f() === "[object Function]", "tmp.f() = " + tmp.f());
327 Math.f = Object.prototype.toString;
328 ok(Math.f() === "[object Math]", "tmp.f() = " + tmp.f());
329 (tmp = new Number).f = Object.prototype.toString;
330 ok(tmp.f() === "[object Number]", "tmp.f() = " + tmp.f());
331 (tmp = new RegExp("")).f = Object.prototype.toString;
332 ok(tmp.f() === "[object RegExp]", "tmp.f() = " + tmp.f());
333 (tmp = new String).f = Object.prototype.toString;
334 ok(tmp.f() === "[object String]", "tmp.f() = " + tmp.f());
335 tmp = Object.prototype.toString.call(testObj);
336 ok(tmp === "[object Object]", "toString.call(testObj) = " + tmp);
337 tmp = Object.prototype.toString.call(this);
338 ok(tmp === "[object Object]", "toString.call(this) = " + tmp);
339 (function () { tmp = Object.prototype.toString.call(arguments); })();
340 ok(tmp === "[object Object]", "toString.call(arguments) = " + tmp);
341 tmp = Object.prototype.toString.call(new VBArray(createArray()));
342 ok(tmp === "[object Object]", "toString.call(new VBArray()) = " + tmp);
343
344 function TSTestConstr() {}
345 TSTestConstr.prototype = { toString: function() { return "test"; } };
346 obj = new TSTestConstr();
347 ok(obj.toString() === "test", "obj.toString() = " + obj.toString());
348
349 ok(Object(1) instanceof Number, "Object(1) is not instance of Number");
350 ok(Object("") instanceof String, "Object('') is not instance of String");
351 ok(Object(false) instanceof Boolean, "Object(false) is not instance of Boolean");
352
353 obj = new Object();
354 ok(Object(obj) === obj, "Object(obj) !== obj");
355
356 ok(typeof(Object()) === "object", "typeof(Object()) !== 'object'");
357 ok(typeof(Object(undefined)) === "object", "typeof(Object(undefined)) !== 'object'");
358 ok(typeof(Object(null)) === "object", "typeof(Object(null)) !== 'object'");
359
360 var obj = new Object();
361 obj.toString = function (x) {
362 ok(arguments.length === 0, "arguments.length = " + arguments.length);
363 return "test";
364 };
365 ok((tmp = obj.toLocaleString()) === "test", "obj.toLocaleString() = " + tmp);
366 ok((tmp = obj.toLocaleString(1)) === "test", "obj.toLocaleString(1) = " + tmp);
367 ok(obj === obj.valueOf(), "obj !== obj.valueOf");
368
369 ok("".length === 0, "\"\".length = " + "".length);
370 ok(getVT("".length) == "VT_I4", "\"\".length = " + "".length);
371 ok("abc".length === 3, "\"abc\".length = " + "abc".length);
372 ok(String.prototype.length === 0, "String.prototype.length = " + String.prototype.length);
373
374 tmp = "".toString();
375 ok(tmp === "", "''.toString() = " + tmp);
376 tmp = "test".toString();
377 ok(tmp === "test", "''.toString() = " + tmp);
378 tmp = "test".toString(3);
379 ok(tmp === "test", "''.toString(3) = " + tmp);
380
381 tmp = "".valueOf();
382 ok(tmp === "", "''.valueOf() = " + tmp);
383 tmp = "test".valueOf();
384 ok(tmp === "test", "''.valueOf() = " + tmp);
385 tmp = "test".valueOf(3);
386 ok(tmp === "test", "''.valueOf(3) = " + tmp);
387
388 var str = new String("test");
389 ok(str.toString() === "test", "str.toString() = " + str.toString());
390 var str = new String();
391 ok(str.toString() === "", "str.toString() = " + str.toString());
392 var str = new String("test", "abc");
393 ok(str.toString() === "test", "str.toString() = " + str.toString());
394
395 var strObj = new Object();
396 strObj.toString = function() { return "abcd" };
397 strObj.substr = String.prototype.substr;
398 strObj.lastIndexOf = String.prototype.lastIndexOf;
399
400 tmp = "value " + str;
401 ok(tmp === "value test", "'value ' + str = " + tmp);
402
403 tmp = String();
404 ok(tmp === "", "String() = " + tmp);
405 tmp = String(false);
406 ok(tmp === "false", "String(false) = " + tmp);
407 tmp = String(null);
408 ok(tmp === "null", "String(null) = " + tmp);
409 tmp = String("test");
410 ok(tmp === "test", "String('test') = " + tmp);
411 tmp = String("test", "abc");
412 ok(tmp === "test", "String('test','abc') = " + tmp);
413
414 tmp = "abc".charAt(0);
415 ok(tmp === "a", "'abc',charAt(0) = " + tmp);
416 tmp = "abc".charAt(1);
417 ok(tmp === "b", "'abc',charAt(1) = " + tmp);
418 tmp = "abc".charAt(2);
419 ok(tmp === "c", "'abc',charAt(2) = " + tmp);
420 tmp = "abc".charAt(3);
421 ok(tmp === "", "'abc',charAt(3) = " + tmp);
422 tmp = "abc".charAt(4);
423 ok(tmp === "", "'abc',charAt(4) = " + tmp);
424 tmp = "abc".charAt();
425 ok(tmp === "a", "'abc',charAt() = " + tmp);
426 tmp = "abc".charAt(-1);
427 ok(tmp === "", "'abc',charAt(-1) = " + tmp);
428 tmp = "abc".charAt(0,2);
429 ok(tmp === "a", "'abc',charAt(0.2) = " + tmp);
430 tmp = "abc".charAt(NaN);
431 ok(tmp === "a", "'abc',charAt(NaN) = " + tmp);
432 tmp = "abc".charAt(bigInt);
433 ok(tmp === "", "'abc',charAt(bigInt) = " + tmp);
434
435 tmp = "abc".charCodeAt(0);
436 ok(tmp === 0x61, "'abc'.charCodeAt(0) = " + tmp);
437 tmp = "abc".charCodeAt(1);
438 ok(tmp === 0x62, "'abc'.charCodeAt(1) = " + tmp);
439 tmp = "abc".charCodeAt(2);
440 ok(tmp === 0x63, "'abc'.charCodeAt(2) = " + tmp);
441 tmp = "abc".charCodeAt();
442 ok(tmp === 0x61, "'abc'.charCodeAt() = " + tmp);
443 tmp = "abc".charCodeAt(true);
444 ok(tmp === 0x62, "'abc'.charCodeAt(true) = " + tmp);
445 tmp = "abc".charCodeAt(0,2);
446 ok(tmp === 0x61, "'abc'.charCodeAt(0,2) = " + tmp);
447 tmp = "\u49F4".charCodeAt(0);
448 ok(tmp === 0x49F4, "'\u49F4'.charCodeAt(0) = " + tmp);
449 tmp = "\052".charCodeAt(0);
450 ok(tmp === 0x2A, "'\052'.charCodeAt(0) = " + tmp);
451 tmp = "\xa2".charCodeAt(0);
452 ok(tmp === 0xA2, "'\xa2'.charCodeAt(0) = " + tmp);
453 tmp = "abc".charCodeAt(bigInt);
454 ok(isNaN(tmp), "'abc'.charCodeAt(bigInt) = " + tmp);
455
456 tmp = "abcd".substring(1,3);
457 ok(tmp === "bc", "'abcd'.substring(1,3) = " + tmp);
458 tmp = "abcd".substring(-1,3);
459 ok(tmp === "abc", "'abcd'.substring(-1,3) = " + tmp);
460 tmp = "abcd".substring(1,6);
461 ok(tmp === "bcd", "'abcd'.substring(1,6) = " + tmp);
462 tmp = "abcd".substring(3,1);
463 ok(tmp === "bc", "'abcd'.substring(3,1) = " + tmp);
464 tmp = "abcd".substring(2,2);
465 ok(tmp === "", "'abcd'.substring(2,2) = " + tmp);
466 tmp = "abcd".substring(true,"3");
467 ok(tmp === "bc", "'abcd'.substring(true,'3') = " + tmp);
468 tmp = "abcd".substring(1,3,2);
469 ok(tmp === "bc", "'abcd'.substring(1,3,2) = " + tmp);
470 tmp = "abcd".substring();
471 ok(tmp === "abcd", "'abcd'.substring() = " + tmp);
472
473 tmp = "abcd".substr(1,3);
474 ok(tmp === "bcd", "'abcd'.substr(1,3) = " + tmp);
475 tmp = "abcd".substr(-1,3);
476 ok(tmp === "abc", "'abcd'.substr(-1,3) = " + tmp);
477 tmp = "abcd".substr(1,6);
478 ok(tmp === "bcd", "'abcd'.substr(1,6) = " + tmp);
479 tmp = "abcd".substr(2,-1);
480 ok(tmp === "", "'abcd'.substr(3,1) = " + tmp);
481 tmp = "abcd".substr(2,0);
482 ok(tmp === "", "'abcd'.substr(2,2) = " + tmp);
483 tmp = "abcd".substr(true,"3");
484 ok(tmp === "bcd", "'abcd'.substr(true,'3') = " + tmp);
485 tmp = "abcd".substr(1,3,2);
486 ok(tmp === "bcd", "'abcd'.substr(1,3,2) = " + tmp);
487 tmp = "abcd".substr();
488 ok(tmp === "abcd", "'abcd'.substr() = " + tmp);
489 tmp = strObj.substr(1,1);
490 ok(tmp === "b", "'abcd'.substr(1,3) = " + tmp);
491
492 tmp = "abcd".slice(1,3);
493 ok(tmp === "bc", "'abcd'.slice(1,3) = " + tmp);
494 tmp = "abcd".slice(1,-1);
495 ok(tmp === "bc", "'abcd'.slice(1,-1) = " + tmp);
496 tmp = "abcd".slice(-3,3);
497 ok(tmp === "bc", "'abcd'.slice(-3,3) = " + tmp);
498 tmp = "abcd".slice(-6,3);
499 ok(tmp === "abc", "'abcd'.slice(-6,3) = " + tmp);
500 tmp = "abcd".slice(3,1);
501 ok(tmp === "", "'abcd'.slice(3,1) = " + tmp);
502 tmp = "abcd".slice(true,3);
503 ok(tmp === "bc", "'abcd'.slice(true,3) = " + tmp);
504 tmp = "abcd".slice();
505 ok(tmp === "abcd", "'abcd'.slice() = " + tmp);
506 tmp = "abcd".slice(1);
507 ok(tmp === "bcd", "'abcd'.slice(1) = " + tmp);
508
509 tmp = "abc".concat(["d",1],2,false);
510 ok(tmp === "abcd,12false", "concat returned " + tmp);
511 var arr = new Array(2,"a");
512 arr.concat = String.prototype.concat;
513 tmp = arr.concat("d");
514 ok(tmp === "2,ad", "arr.concat = " + tmp);
515
516 m = "a+bcabc".match("a+");
517 ok(typeof(m) === "object", "typeof m is not object");
518 ok(m.length === 1, "m.length is not 1");
519 ok(m["0"] === "a", "m[0] is not \"a\"");
520
521 r = "- [test] -".replace("[test]", "success");
522 ok(r === "- success -", "r = " + r + " expected '- success -'");
523
524 r = "- [test] -".replace("[test]", "success", "test");
525 ok(r === "- success -", "r = " + r + " expected '- success -'");
526
527 r = "test".replace();
528 ok(r === "test", "r = " + r + " expected 'test'");
529
530 function replaceFunc3(m, off, str) {
531 ok(arguments.length === 3, "arguments.length = " + arguments.length);
532 ok(m === "[test]", "m = " + m + " expected [test]");
533 ok(off === 1, "off = " + off + " expected 0");
534 ok(str === "-[test]-", "str = " + arguments[3]);
535 return "ret";
536 }
537
538 r = "-[test]-".replace("[test]", replaceFunc3);
539 ok(r === "-ret-", "r = " + r + " expected '-ret-'");
540
541 r = "-[test]-".replace("[test]", replaceFunc3, "test");
542 ok(r === "-ret-", "r = " + r + " expected '-ret-'");
543
544 r = "x,x,x".replace("x", "y");
545 ok(r === "y,x,x", "r = " + r + " expected 'y,x,x'");
546
547 r = "x,x,x".replace("", "y");
548 ok(r === "yx,x,x", "r = " + r + " expected 'yx,x,x'");
549
550 r = "x,x,x".replace("", "");
551 ok(r === "x,x,x", "r = " + r + " expected 'x,x,x'");
552
553 r = "1,2,3".split(",");
554 ok(typeof(r) === "object", "typeof(r) = " + typeof(r));
555 ok(r.length === 3, "r.length = " + r.length);
556 ok(r[0] === "1", "r[0] = " + r[0]);
557 ok(r[1] === "2", "r[1] = " + r[1]);
558 ok(r[2] === "3", "r[2] = " + r[2]);
559
560 r = "1,2,3".split(",*");
561 ok(r.length === 1, "r.length = " + r.length);
562 ok(r[0] === "1,2,3", "r[0] = " + r[0]);
563
564 r = "123".split("");
565 ok(r.length === 3, "r.length = " + r.length);
566 ok(r[0] === "1", "r[0] = " + r[0]);
567 ok(r[1] === "2", "r[1] = " + r[1]);
568 ok(r[2] === "3", "r[2] = " + r[2]);
569
570 r = "123".split(2);
571 ok(r.length === 2, "r.length = " + r.length);
572 ok(r[0] === "1", "r[0] = " + r[0]);
573 ok(r[1] === "3", "r[1] = " + r[1]);
574
575 r = "1,2,".split(",");
576 ok(typeof(r) === "object", "typeof(r) = " + typeof(r));
577 ok(r.length === 3, "r.length = " + r.length);
578 ok(r[0] === "1", "r[0] = " + r[0]);
579 ok(r[1] === "2", "r[1] = " + r[1]);
580 ok(r[2] === "", "r[2] = " + r[2]);
581
582 r = "1,2,3".split(",", 2);
583 ok(typeof(r) === "object", "typeof(r) = " + typeof(r));
584 ok(r.length === 2, "r.length = " + r.length);
585 ok(r[0] === "1", "r[0] = " + r[0]);
586 ok(r[1] === "2", "r[1] = " + r[1]);
587
588 r = "1,2,3".split(",", 0);
589 ok(typeof(r) === "object", "typeof(r) = " + typeof(r));
590 ok(r.length === 0, "r.length = " + r.length);
591
592 r = "1,2,3".split(",", -1);
593 ok(typeof(r) === "object", "typeof(r) = " + typeof(r));
594 ok(r.length === 3, "r.length = " + r.length);
595 ok(r[0] === "1", "r[0] = " + r[0]);
596 ok(r[1] === "2", "r[1] = " + r[1]);
597 ok(r[2] === "3", "r[1] = " + r[1]);
598
599 tmp = "abcd".indexOf("bc",0);
600 ok(tmp === 1, "indexOf = " + tmp);
601 tmp = "abcd".indexOf("bc",1);
602 ok(tmp === 1, "indexOf = " + tmp);
603 tmp = "abcd".indexOf("bc");
604 ok(tmp === 1, "indexOf = " + tmp);
605 tmp = "abcd".indexOf("ac");
606 ok(tmp === -1, "indexOf = " + tmp);
607 tmp = "abcd".indexOf("bc",2);
608 ok(tmp === -1, "indexOf = " + tmp);
609 tmp = "abcd".indexOf("a",0);
610 ok(tmp === 0, "indexOf = " + tmp);
611 tmp = "abcd".indexOf("bc",0,"test");
612 ok(tmp === 1, "indexOf = " + tmp);
613 tmp = "abcd".indexOf();
614 ok(tmp == -1, "indexOf = " + tmp);
615 tmp = "abcd".indexOf("b", bigInt);
616 ok(tmp == -1, "indexOf = " + tmp);
617
618 tmp = "abcd".lastIndexOf("bc",1);
619 ok(tmp === 1, "lastIndexOf = " + tmp);
620 tmp = "abcd".lastIndexOf("bc",2);
621 ok(tmp === 1, "lastIndexOf = " + tmp);
622 tmp = "abcd".lastIndexOf("bc");
623 ok(tmp === 1, "lastIndexOf = " + tmp);
624 tmp = "abcd".lastIndexOf("ac");
625 ok(tmp === -1, "lastIndexOf = " + tmp);
626 tmp = "abcd".lastIndexOf("d",10);
627 ok(tmp === 3, "lastIndexOf = " + tmp);
628 tmp = "abcd".lastIndexOf("bc",0,"test");
629 ok(tmp === -1, "lastIndexOf = " + tmp);
630 tmp = "abcd".lastIndexOf();
631 ok(tmp === -1, "lastIndexOf = " + tmp);
632 tmp = "aaaa".lastIndexOf("a",2);
633 ok(tmp == 2, "lastIndexOf = " + tmp);
634 tmp = strObj.lastIndexOf("b");
635 ok(tmp === 1, "lastIndexOf = " + tmp);
636 tmp = "bbb".lastIndexOf("b", bigInt);
637 ok(tmp === 2, "lastIndexOf = " + tmp);
638
639 tmp = "".toLowerCase();
640 ok(tmp === "", "''.toLowerCase() = " + tmp);
641 tmp = "test".toLowerCase();
642 ok(tmp === "test", "''.toLowerCase() = " + tmp);
643 tmp = "test".toLowerCase(3);
644 ok(tmp === "test", "''.toLowerCase(3) = " + tmp);
645 tmp = "tEsT".toLowerCase();
646 ok(tmp === "test", "''.toLowerCase() = " + tmp);
647 tmp = "tEsT".toLowerCase(3);
648 ok(tmp === "test", "''.toLowerCase(3) = " + tmp);
649
650 tmp = "".toUpperCase();
651 ok(tmp === "", "''.toUpperCase() = " + tmp);
652 tmp = "TEST".toUpperCase();
653 ok(tmp === "TEST", "''.toUpperCase() = " + tmp);
654 tmp = "TEST".toUpperCase(3);
655 ok(tmp === "TEST", "''.toUpperCase(3) = " + tmp);
656 tmp = "tEsT".toUpperCase();
657 ok(tmp === "TEST", "''.toUpperCase() = " + tmp);
658 tmp = "tEsT".toUpperCase(3);
659 ok(tmp === "TEST", "''.toUpperCase(3) = " + tmp);
660
661 tmp = "".anchor();
662 ok(tmp === "<A NAME=\"undefined\"></A>", "''.anchor() = " + tmp);
663 tmp = "".anchor(3);
664 ok(tmp === "<A NAME=\"3\"></A>", "''.anchor(3) = " + tmp);
665 tmp = "".anchor("red");
666 ok(tmp === "<A NAME=\"red\"></A>", "''.anchor('red') = " + tmp);
667 tmp = "test".anchor();
668 ok(tmp === "<A NAME=\"undefined\">test</A>", "'test'.anchor() = " + tmp);
669 tmp = "test".anchor(3);
670 ok(tmp === "<A NAME=\"3\">test</A>", "'test'.anchor(3) = " + tmp);
671 tmp = "test".anchor("green");
672 ok(tmp === "<A NAME=\"green\">test</A>", "'test'.anchor('green') = " + tmp);
673
674 tmp = "".big();
675 ok(tmp === "<BIG></BIG>", "''.big() = " + tmp);
676 tmp = "".big(3);
677 ok(tmp === "<BIG></BIG>", "''.big(3) = " + tmp);
678 tmp = "test".big();
679 ok(tmp === "<BIG>test</BIG>", "'test'.big() = " + tmp);
680 tmp = "test".big(3);
681 ok(tmp === "<BIG>test</BIG>", "'test'.big(3) = " + tmp);
682
683 tmp = "".blink();
684 ok(tmp === "<BLINK></BLINK>", "''.blink() = " + tmp);
685 tmp = "".blink(3);
686 ok(tmp === "<BLINK></BLINK>", "''.blink(3) = " + tmp);
687 tmp = "test".blink();
688 ok(tmp === "<BLINK>test</BLINK>", "'test'.blink() = " + tmp);
689 tmp = "test".blink(3);
690 ok(tmp === "<BLINK>test</BLINK>", "'test'.blink(3) = " + tmp);
691
692 tmp = "".bold();
693 ok(tmp === "<B></B>", "''.bold() = " + tmp);
694 tmp = "".bold(3);
695 ok(tmp === "<B></B>", "''.bold(3) = " + tmp);
696 tmp = "test".bold();
697 ok(tmp === "<B>test</B>", "'test'.bold() = " + tmp);
698 tmp = "test".bold(3);
699 ok(tmp === "<B>test</B>", "'test'.bold(3) = " + tmp);
700
701 tmp = "".fixed();
702 ok(tmp === "<TT></TT>", "''.fixed() = " + tmp);
703 tmp = "".fixed(3);
704 ok(tmp === "<TT></TT>", "''.fixed(3) = " + tmp);
705 tmp = "test".fixed();
706 ok(tmp === "<TT>test</TT>", "'test'.fixed() = " + tmp);
707 tmp = "test".fixed(3);
708 ok(tmp === "<TT>test</TT>", "'test'.fixed(3) = " + tmp);
709
710 tmp = "".fontcolor();
711 ok(tmp === "<FONT COLOR=\"undefined\"></FONT>", "''.fontcolor() = " + tmp);
712 tmp = "".fontcolor(3);
713 ok(tmp === "<FONT COLOR=\"3\"></FONT>", "''.fontcolor(3) = " + tmp);
714 tmp = "".fontcolor("red");
715 ok(tmp === "<FONT COLOR=\"red\"></FONT>", "''.fontcolor('red') = " + tmp);
716 tmp = "test".fontcolor();
717 ok(tmp === "<FONT COLOR=\"undefined\">test</FONT>", "'test'.fontcolor() = " + tmp);
718 tmp = "test".fontcolor(3);
719 ok(tmp === "<FONT COLOR=\"3\">test</FONT>", "'test'.fontcolor(3) = " + tmp);
720 tmp = "test".fontcolor("green");
721 ok(tmp === "<FONT COLOR=\"green\">test</FONT>", "'test'.fontcolor('green') = " + tmp);
722
723 tmp = "".fontsize();
724 ok(tmp === "<FONT SIZE=\"undefined\"></FONT>", "''.fontsize() = " + tmp);
725 tmp = "".fontsize(3);
726 ok(tmp === "<FONT SIZE=\"3\"></FONT>", "''.fontsize(3) = " + tmp);
727 tmp = "".fontsize("red");
728 ok(tmp === "<FONT SIZE=\"red\"></FONT>", "''.fontsize('red') = " + tmp);
729 tmp = "test".fontsize();
730 ok(tmp === "<FONT SIZE=\"undefined\">test</FONT>", "'test'.fontsize() = " + tmp);
731 tmp = "test".fontsize(3);
732 ok(tmp === "<FONT SIZE=\"3\">test</FONT>", "'test'.fontsize(3) = " + tmp);
733 tmp = "test".fontsize("green");
734 ok(tmp === "<FONT SIZE=\"green\">test</FONT>", "'test'.fontsize('green') = " + tmp);
735
736 tmp = ("".fontcolor()).fontsize();
737 ok(tmp === "<FONT SIZE=\"undefined\"><FONT COLOR=\"undefined\"></FONT></FONT>", "(''.fontcolor()).fontsize() = " + tmp);
738
739 tmp = "".italics();
740 ok(tmp === "<I></I>", "''.italics() = " + tmp);
741 tmp = "".italics(3);
742 ok(tmp === "<I></I>", "''.italics(3) = " + tmp);
743 tmp = "test".italics();
744 ok(tmp === "<I>test</I>", "'test'.italics() = " + tmp);
745 tmp = "test".italics(3);
746 ok(tmp === "<I>test</I>", "'test'.italics(3) = " + tmp);
747
748 tmp = "".link();
749 ok(tmp === "<A HREF=\"undefined\"></A>", "''.link() = " + tmp);
750 tmp = "".link(3);
751 ok(tmp === "<A HREF=\"3\"></A>", "''.link(3) = " + tmp);
752 tmp = "".link("red");
753 ok(tmp === "<A HREF=\"red\"></A>", "''.link('red') = " + tmp);
754 tmp = "test".link();
755 ok(tmp === "<A HREF=\"undefined\">test</A>", "'test'.link() = " + tmp);
756 tmp = "test".link(3);
757 ok(tmp === "<A HREF=\"3\">test</A>", "'test'.link(3) = " + tmp);
758 tmp = "test".link("green");
759 ok(tmp === "<A HREF=\"green\">test</A>", "'test'.link('green') = " + tmp);
760
761 tmp = "".small();
762 ok(tmp === "<SMALL></SMALL>", "''.small() = " + tmp);
763 tmp = "".small(3);
764 ok(tmp === "<SMALL></SMALL>", "''.small(3) = " + tmp);
765 tmp = "test".small();
766 ok(tmp === "<SMALL>test</SMALL>", "'test'.small() = " + tmp);
767 tmp = "test".small(3);
768 ok(tmp === "<SMALL>test</SMALL>", "'test'.small(3) = " + tmp);
769
770 tmp = "".strike();
771 ok(tmp === "<STRIKE></STRIKE>", "''.strike() = " + tmp);
772 tmp = "".strike(3);
773 ok(tmp === "<STRIKE></STRIKE>", "''.strike(3) = " + tmp);
774 tmp = "test".strike();
775 ok(tmp === "<STRIKE>test</STRIKE>", "'test'.strike() = " + tmp);
776 tmp = "test".strike(3);
777 ok(tmp === "<STRIKE>test</STRIKE>", "'test'.strike(3) = " + tmp);
778
779 tmp = "".sub();
780 ok(tmp === "<SUB></SUB>", "''.sub() = " + tmp);
781 tmp = "".sub(3);
782 ok(tmp === "<SUB></SUB>", "''.sub(3) = " + tmp);
783 tmp = "test".sub();
784 ok(tmp === "<SUB>test</SUB>", "'test'.sub() = " + tmp);
785 tmp = "test".sub(3);
786 ok(tmp === "<SUB>test</SUB>", "'test'.sub(3) = " + tmp);
787
788 tmp = "".sup();
789 ok(tmp === "<SUP></SUP>", "''.sup() = " + tmp);
790 tmp = "".sup(3);
791 ok(tmp === "<SUP></SUP>", "''.sup(3) = " + tmp);
792 tmp = "test".sup();
793 ok(tmp === "<SUP>test</SUP>", "'test'.sup() = " + tmp);
794 tmp = "test".sup(3);
795 ok(tmp === "<SUP>test</SUP>", "'test'.sup(3) = " + tmp);
796
797 ok(String.fromCharCode() === "", "String.fromCharCode() = " + String.fromCharCode());
798 ok(String.fromCharCode(65,"66",67) === "ABC", "String.fromCharCode(65,'66',67) = " + String.fromCharCode(65,"66",67));
799 ok(String.fromCharCode(1024*64+65, -1024*64+65) === "AA",
800 "String.fromCharCode(1024*64+65, -1024*64+65) = " + String.fromCharCode(1024*64+65, -1024*64+65));
801 ok(String.fromCharCode(65, NaN, undefined).length === 3,
802 "String.fromCharCode(65, NaN, undefined).length = " + String.fromCharCode(65, NaN, undefined).length);
803
804 var arr = new Array();
805 ok(typeof(arr) === "object", "arr () is not object");
806 ok((arr.length === 0), "arr.length is not 0");
807 ok(arr["0"] === undefined, "arr[0] is not undefined");
808
809 var arr = new Array(1, 2, "test");
810 ok(typeof(arr) === "object", "arr (1,2,test) is not object");
811 ok((arr.length === 3), "arr.length is not 3");
812 ok(arr["0"] === 1, "arr[0] is not 1");
813 ok(arr["1"] === 2, "arr[1] is not 2");
814 ok(arr["2"] === "test", "arr[2] is not \"test\"");
815
816 arr["7"] = true;
817 ok((arr.length === 8), "arr.length is not 8");
818
819 tmp = "" + [];
820 ok(tmp === "", "'' + [] = " + tmp);
821 tmp = "" + [1,true];
822 ok(tmp === "1,true", "'' + [1,true] = " + tmp);
823
824 var arr = new Array(6);
825 ok(typeof(arr) === "object", "arr (6) is not object");
826 ok((arr.length === 6), "arr.length is not 6");
827 ok(arr["0"] === undefined, "arr[0] is not undefined");
828
829 ok(arr.push() === 6, "arr.push() !== 6");
830 ok(arr.push(1) === 7, "arr.push(1) !== 7");
831 ok(arr[6] === 1, "arr[6] != 1");
832 ok(arr.length === 7, "arr.length != 10");
833 ok(arr.push(true, 'b', false) === 10, "arr.push(true, 'b', false) !== 10");
834 ok(arr[8] === "b", "arr[8] != 'b'");
835 ok(arr.length === 10, "arr.length != 10");
836
837 var arr = new Object();
838 arr.push = Array.prototype.push;
839
840 arr.length = 6;
841
842 ok(arr.push() === 6, "arr.push() !== 6");
843 ok(arr.push(1) === 7, "arr.push(1) !== 7");
844 ok(arr[6] === 1, "arr[6] != 1");
845 ok(arr.length === 7, "arr.length != 10");
846 ok(arr.push(true, 'b', false) === 10, "arr.push(true, 'b', false) !== 10");
847 ok(arr[8] === "b", "arr[8] != 'b'");
848 ok(arr.length === 10, "arr.length != 10");
849
850 arr.pop = Array.prototype.pop;
851 ok(arr.pop() === false, "arr.pop() !== false");
852 ok(arr[8] === "b", "arr[8] !== 'b'");
853 ok(arr.pop() === 'b', "arr.pop() !== 'b'");
854 ok(arr[8] === undefined, "arr[8] !== undefined");
855
856 arr = [3,4,5];
857 tmp = arr.pop();
858 ok(arr.length === 2, "arr.length = " + arr.length);
859 ok(tmp === 5, "pop() = " + tmp);
860 tmp = arr.pop(2);
861 ok(arr.length === 1, "arr.length = " + arr.length);
862 ok(tmp === 4, "pop() = " + tmp);
863 tmp = arr.pop();
864 ok(arr.length === 0, "arr.length = " + arr.length);
865 ok(tmp === 3, "pop() = " + tmp);
866 for(tmp in arr)
867 ok(false, "not deleted " + tmp);
868 tmp = arr.pop();
869 ok(arr.length === 0, "arr.length = " + arr.length);
870 ok(tmp === undefined, "tmp = " + tmp);
871 arr = new Object();
872 arr.pop = Array.prototype.pop;
873 tmp = arr.pop();
874 ok(arr.length === 0, "arr.length = " + arr.length);
875 ok(tmp === undefined, "tmp = " + tmp);
876 arr = [,,,,,];
877 tmp = arr.pop();
878 ok(arr.length === 5, "arr.length = " + arr.length);
879 ok(tmp === undefined, "tmp = " + tmp);
880
881 function PseudoArray() {
882 this[0] = 0;
883 }
884 PseudoArray.prototype = {length: 1};
885 arr = new PseudoArray();
886 Array.prototype.push.call(arr, 2);
887 ok(arr.propertyIsEnumerable("length"), "arr.length is not enumerable");
888
889 arr = [1,2,null,false,undefined,,"a"];
890
891 tmp = arr.join();
892 ok(tmp === "1,2,,false,,,a", "arr.join() = " + tmp);
893 tmp = arr.join(";");
894 ok(tmp === "1;2;;false;;;a", "arr.join(';') = " + tmp);
895 tmp = arr.join(";","test");
896 ok(tmp === "1;2;;false;;;a", "arr.join(';') = " + tmp);
897 tmp = arr.join("");
898 ok(tmp === "12falsea", "arr.join('') = " + tmp);
899
900 tmp = arr.toString();
901 ok(tmp === "1,2,,false,,,a", "arr.toString() = " + tmp);
902 tmp = arr.toString("test");
903 ok(tmp === "1,2,,false,,,a", "arr.toString() = " + tmp);
904
905 arr = new Object();
906 arr.length = 3;
907 arr[0] = "aa";
908 arr[2] = 2;
909 arr[7] = 3;
910 arr.join = Array.prototype.join;
911 tmp = arr.join(",");
912 ok(arr.length === 3, "arr.length = " + arr.length);
913 ok(tmp === "aa,,2", "tmp = " + tmp);
914
915 arr = [5,true,2,-1,3,false,"2.5"];
916 tmp = arr.sort(function(x,y) { return y-x; });
917 ok(tmp === arr, "tmp !== arr");
918 tmp = [5,3,"2.5",2,true,false,-1];
919 for(var i=0; i < arr.length; i++)
920 ok(arr[i] === tmp[i], "arr[" + i + "] = " + arr[i] + " expected " + tmp[i]);
921
922 arr = [5,false,2,0,"abc",3,"a",-1];
923 tmp = arr.sort();
924 ok(tmp === arr, "tmp !== arr");
925 tmp = [-1,0,2,3,5,"a","abc",false];
926 for(var i=0; i < arr.length; i++)
927 ok(arr[i] === tmp[i], "arr[" + i + "] = " + arr[i] + " expected " + tmp[i]);
928
929 arr = ["a", "b", "ab"];
930 tmp = ["a", "ab", "b"];
931 ok(arr.sort() === arr, "arr.sort() !== arr");
932 for(var i=0; i < arr.length; i++)
933 ok(arr[i] === tmp[i], "arr[" + i + "] = " + arr[i] + " expected " + tmp[i]);
934
935 arr = new Object();
936 arr.length = 3;
937 arr[0] = 1;
938 arr[2] = "aa";
939 arr.sort = Array.prototype.sort;
940 tmp = arr.sort();
941 ok(arr === tmp, "tmp !== arr");
942 ok(arr[0]===1 && arr[1]==="aa" && arr[2]===undefined, "arr is sorted incorrectly");
943
944 tmp = [["bb","aa"],["ab","aa"]].sort().toString();
945 ok(tmp === "ab,aa,bb,aa", "sort() = " + tmp);
946
947 tmp = [["bb","aa"],"ab"].sort().toString();
948 ok(tmp === "ab,bb,aa", "sort() = " + tmp);
949
950 tmp = [["bb","aa"],"cc"].sort().toString();
951 ok(tmp === "bb,aa,cc", "sort() = " + tmp);
952
953 tmp = [2,"1"].sort().toString();
954 ok(tmp === "1,2", "sort() = " + tmp);
955
956 tmp = ["2",1].sort().toString();
957 ok(tmp === "1,2", "sort() = " + tmp);
958
959 tmp = [,,0,"z"].sort().toString();
960 ok(tmp === "0,z,,", "sort() = " + tmp);
961
962 tmp = ["a,b",["a","a"],["a","c"]].sort().toString();
963 ok(tmp === "a,a,a,b,a,c", "sort() = " + tmp);
964
965 arr = ["1", "2", "3"];
966 arr.length = 1;
967 ok(arr.length === 1, "arr.length = " + arr.length);
968 arr.length = 3;
969 ok(arr.length === 3, "arr.length = " + arr.length);
970 ok(arr.toString() === "1,,", "arr.toString() = " + arr.toString());
971
972 arr = Array("a","b","c");
973 ok(arr.toString() === "a,b,c", "arr.toString() = " + arr.toString());
974
975 ok(arr.valueOf === Object.prototype.valueOf, "arr.valueOf !== Object.prototype.valueOf");
976 ok(arr === arr.valueOf(), "arr !== arr.valueOf");
977
978 arr = [1,2,3];
979 tmp = arr.reverse();
980 ok(tmp === arr, "tmp !== arr");
981 ok(arr.length === 3, "arr.length = " + arr.length);
982 ok(arr.toString() === "3,2,1", "arr.toString() = " + arr.toString());
983
984 arr = [];
985 arr[3] = 5;
986 arr[5] = 1;
987 tmp = arr.reverse();
988 ok(tmp === arr, "tmp !== arr");
989 ok(arr.length === 6, "arr.length = " + arr.length);
990 ok(arr.toString() === "1,,5,,,", "arr.toString() = " + arr.toString());
991
992 arr = new Object();
993 arr.length = 3;
994 arr[0] = "aa";
995 arr[2] = 2;
996 arr[7] = 3;
997 arr.reverse = Array.prototype.reverse;
998 tmp = arr.reverse();
999 ok(tmp === arr, "tmp !== arr");
1000 ok(arr.length === 3, "arr.length = " + arr.length);
1001 ok(arr[0] === 2 && arr[1] === undefined && arr[2] === "aa", "unexpected array");
1002
1003 arr = [1,2,3];
1004 tmp = arr.unshift(0);
1005 ok(tmp === (invokeVersion < 2 ? undefined : 4), "[1,2,3].unshift(0) returned " +tmp);
1006 ok(arr.length === 4, "arr.length = " + arr.length);
1007 ok(arr.toString() === "0,1,2,3", "arr.toString() = " + arr.toString());
1008
1009 arr = new Array(3);
1010 arr[0] = 1;
1011 arr[2] = 3;
1012 tmp = arr.unshift(-1,0);
1013 ok(tmp === (invokeVersion < 2 ? undefined : 5), "unshift returned " +tmp);
1014 ok(arr.length === 5, "arr.length = " + arr.length);
1015 ok(arr.toString() === "-1,0,1,,3", "arr.toString() = " + arr.toString());
1016
1017 arr = [1,2,3];
1018 tmp = arr.unshift();
1019 ok(tmp === (invokeVersion < 2 ? undefined : 3), "unshift returned " +tmp);
1020 ok(arr.length === 3, "arr.length = " + arr.length);
1021 ok(arr.toString() === "1,2,3", "arr.toString() = " + arr.toString());
1022
1023 arr = new Object();
1024 arr.length = 2;
1025 arr[0] = 1;
1026 arr[1] = 2;
1027 tmp = Array.prototype.unshift.call(arr, 0);
1028 ok(tmp === (invokeVersion < 2 ? undefined : 3), "unshift returned " +tmp);
1029 ok(arr.length === 3, "arr.length = " + arr.length);
1030 ok(arr[0] === 0 && arr[1] === 1 && arr[2] === 2, "unexpected array");
1031
1032 arr = [1,2,,4];
1033 tmp = arr.shift();
1034 ok(tmp === 1, "[1,2,,4].shift() = " + tmp);
1035 ok(arr.toString() === "2,,4", "arr = " + arr.toString());
1036
1037 arr = [];
1038 tmp = arr.shift();
1039 ok(tmp === undefined, "[].shift() = " + tmp);
1040 ok(arr.toString() === "", "arr = " + arr.toString());
1041
1042 arr = [1,2,,4];
1043 tmp = arr.shift(2);
1044 ok(tmp === 1, "[1,2,,4].shift(2) = " + tmp);
1045 ok(arr.toString() === "2,,4", "arr = " + arr.toString());
1046
1047 arr = [1,];
1048 tmp = arr.shift();
1049 ok(tmp === 1, "[1,].shift() = " + tmp);
1050 ok(arr.toString() === "", "arr = " + arr.toString());
1051
1052 obj = new Object();
1053 obj[0] = "test";
1054 obj[2] = 3;
1055 obj.length = 3;
1056 tmp = Array.prototype.shift.call(obj);
1057 ok(tmp === "test", "obj.shift() = " + tmp);
1058 ok(obj.length == 2, "obj.length = " + obj.length);
1059 ok(obj[1] === 3, "obj[1] = " + obj[1]);
1060
1061 var num = new Number(6);
1062 arr = [0,1,2];
1063 tmp = arr.concat(3, [4,5], num);
1064 ok(tmp !== arr, "tmp === arr");
1065 for(var i=0; i<6; i++)
1066 ok(tmp[i] === i, "tmp[" + i + "] = " + tmp[i]);
1067 ok(tmp[6] === num, "tmp[6] !== num");
1068 ok(tmp.length === 7, "tmp.length = " + tmp.length);
1069
1070 arr = [].concat();
1071 ok(arr.length === 0, "arr.length = " + arr.length);
1072
1073 arr = [1,];
1074 tmp = arr.concat([2]);
1075 ok(tmp.length === 3, "tmp.length = " + tmp.length);
1076 ok(tmp[1] === undefined, "tmp[1] = " + tmp[1]);
1077
1078 arr = [1,false,'a',null,undefined,'a'];
1079 ok(arr.slice(0,6).toString() === "1,false,a,,,a", "arr.slice(0,6).toString() = " + arr.slice(0,6));
1080 ok(arr.slice(0,6).length === 6, "arr.slice(0,6).length = " + arr.slice(0,6).length);
1081 ok(arr.slice().toString() === "1,false,a,,,a", "arr.slice().toString() = " + arr.slice());
1082 ok(arr.slice("abc").toString() === "1,false,a,,,a", "arr.slice(\"abc\").toString() = " + arr.slice("abc"));
1083 ok(arr.slice(3,8).toString() === ",,a", "arr.slice(3,8).toString() = " + arr.slice(3,8));
1084 ok(arr.slice(3,8).length === 3, "arr.slice(3,8).length = " + arr.slice(3,8).length);
1085 ok(arr.slice(1).toString() === "false,a,,,a", "arr.slice(1).toString() = " + arr.slice(1));
1086 ok(arr.slice(-2).toString() === ",a", "arr.slice(-2).toString() = " + arr.slice(-2));
1087 ok(arr.slice(3,1).toString() === "", "arr.slice(3,1).toString() = " + arr.slice(3,1));
1088 tmp = arr.slice(0,6);
1089 for(var i=0; i < arr.length; i++)
1090 ok(arr[i] === tmp[i], "arr[" + i + "] = " + arr[i] + " expected " + tmp[i]);
1091 arr[12] = 2;
1092 ok(arr.slice(5).toString() === "a,,,,,,,2", "arr.slice(5).toString() = " + arr.slice(5).toString());
1093 ok(arr.slice(5).length === 8, "arr.slice(5).length = " + arr.slice(5).length);
1094
1095 arr = [1,2,3,4,5];
1096 tmp = arr.splice(2,2);
1097 ok(tmp.toString() == "3,4", "arr.splice(2,2) returned " + tmp.toString());
1098 ok(arr.toString() == "1,2,5", "arr.splice(2,2) is " + arr.toString());
1099
1100 arr = [1,2,3,4,5];
1101 tmp = arr.splice(2,2,"a");
1102 ok(tmp.toString() == "3,4", "arr.splice(2,2,'a') returned " + tmp.toString());
1103 ok(arr.toString() == "1,2,a,5", "arr.splice(2,2,'a') is " + arr.toString());
1104
1105 arr = [1,2,3,4,5];
1106 tmp = arr.splice(2,2,'a','b','c');
1107 ok(tmp.toString() == "3,4", "arr.splice(2,2,'a','b','c') returned " + tmp.toString());
1108 ok(arr.toString() == "1,2,a,b,c,5", "arr.splice(2,2,'a','b','c') is " + arr.toString());
1109
1110 arr = [1,2,3,4,];
1111 tmp = arr.splice(2,2,'a','b','c');
1112 ok(tmp.toString() == "3,4", "arr.splice(2,2,'a','b','c') returned " + tmp.toString());
1113 ok(arr.toString() == "1,2,a,b,c,", "arr.splice(2,2,'a','b','c') is " + arr.toString());
1114
1115 arr = [1,2,3,4,];
1116 arr.splice(2,2,'a','b','c');
1117 ok(arr.toString() == "1,2,a,b,c,", "arr.splice(2,2,'a','b','c') is " + arr.toString());
1118
1119 arr = [1,2,3,4,5];
1120 tmp = arr.splice(2,2,'a','b');
1121 ok(tmp.toString() == "3,4", "arr.splice(2,2,'a','b') returned " + tmp.toString());
1122 ok(arr.toString() == "1,2,a,b,5", "arr.splice(2,2,'a','b') is " + arr.toString());
1123
1124 arr = [1,2,3,4,5];
1125 tmp = arr.splice(-1,2);
1126 ok(tmp.toString() == "5", "arr.splice(-1,2) returned " + tmp.toString());
1127 ok(arr.toString() == "1,2,3,4", "arr.splice(-1,2) is " + arr.toString());
1128
1129 arr = [1,2,3,4,5];
1130 tmp = arr.splice(-10,3);
1131 ok(tmp.toString() == "1,2,3", "arr.splice(-10,3) returned " + tmp.toString());
1132 ok(arr.toString() == "4,5", "arr.splice(-10,3) is " + arr.toString());
1133
1134 arr = [1,2,3,4,5];
1135 tmp = arr.splice(-10,100);
1136 ok(tmp.toString() == "1,2,3,4,5", "arr.splice(-10,100) returned " + tmp.toString());
1137 ok(arr.toString() == "", "arr.splice(-10,100) is " + arr.toString());
1138
1139 arr = [1,2,3,4,5];
1140 tmp = arr.splice(2,-1);
1141 ok(tmp.toString() == "", "arr.splice(2,-1) returned " + tmp.toString());
1142 ok(arr.toString() == "1,2,3,4,5", "arr.splice(2,-1) is " + arr.toString());
1143
1144 arr = [1,2,3,4,5];
1145 tmp = arr.splice(2);
1146 ok(tmp.toString() == "", "arr.splice(2,-1) returned " + tmp.toString());
1147 ok(arr.toString() == "1,2,3,4,5", "arr.splice(2,-1) is " + arr.toString());
1148
1149 arr = [1,2,3,4,5];
1150 tmp = arr.splice();
1151 ok(tmp.toString() == "", "arr.splice(2,-1) returned " + tmp.toString());
1152 ok(arr.toString() == "1,2,3,4,5", "arr.splice(2,-1) is " + arr.toString());
1153
1154 arr = [1,2,3,4,5];
1155 tmp = arr.splice(bigInt);
1156 ok(tmp.toString() == "", "arr.splice(bigInt) returned " + tmp.toString());
1157 ok(arr.toString() == "1,2,3,4,5", "arr.splice(bigInt) is " + arr.toString());
1158
1159 arr = [1,2,3,4,5];
1160 tmp = arr.splice(-bigInt);
1161 ok(tmp.toString() == "", "arr.splice(-bigInt) returned " + tmp.toString());
1162 ok(arr.toString() == "1,2,3,4,5", "arr.splice(-bigInt) is " + arr.toString());
1163
1164 if(invokeVersion >= 2) {
1165 arr = [1,2,3,4,5];
1166 tmp = arr.splice(2, bigInt);
1167 ok(tmp.toString() == "3,4,5", "arr.splice(2, bigInt) returned " + tmp.toString());
1168 ok(arr.toString() == "1,2", "arr.splice(2, bigInt) is " + arr.toString());
1169 }
1170
1171 arr = [1,2,3,4,5];
1172 tmp = arr.splice(2, -bigInt);
1173 ok(tmp.toString() == "", "arr.splice(2, -bigInt) returned " + tmp.toString());
1174 ok(arr.toString() == "1,2,3,4,5", "arr.splice(2, -bigInt) is " + arr.toString());
1175
1176 obj = new Object();
1177 obj.length = 3;
1178 obj[0] = 1;
1179 obj[1] = 2;
1180 obj[2] = 3;
1181 tmp = Array.prototype.splice.call(obj, 1, 1, 'a', 'b');
1182 ok(tmp.toString() === "2", "obj.splice returned " + tmp);
1183 ok(obj.length === 4, "obj.length = " + obj.length);
1184 ok(obj[0] === 1, "obj[0] = " + obj[0]);
1185 ok(obj[1] === 'a', "obj[1] = " + obj[1]);
1186 ok(obj[2] === 'b', "obj[2] = " + obj[2]);
1187 ok(obj[3] === 3, "obj[3] = " + obj[3]);
1188
1189 obj = new Object();
1190 obj.length = 3;
1191 obj[0] = 1;
1192 obj[1] = 2;
1193 obj[2] = 3;
1194 tmp = Array.prototype.slice.call(obj, 1, 2);
1195 ok(tmp.length === 1, "tmp.length = " + tmp.length);
1196 ok(tmp[0] === 2, "tmp[0] = " + tmp[0]);
1197
1198 tmp = (new Number(2)).toString();
1199 ok(tmp === "2", "num(2).toString = " + tmp);
1200 tmp = (new Number()).toString();
1201 ok(tmp === "0", "num().toString = " + tmp);
1202 tmp = (new Number(5.5)).toString(2);
1203 ok(tmp === "101.1", "num(5.5).toString(2) = " + tmp);
1204
1205 tmp = (new Number(3)).toFixed(3);
1206 ok(tmp === "3.000", "num(3).toFixed(3) = " + tmp);
1207 tmp = (new Number(3)).toFixed();
1208 ok(tmp === "3", "Number(3).toFixed() = " + tmp);
1209 tmp = (new Number(0)).toFixed();
1210 ok(tmp === "0", "Number(0).toFixed() = " + tmp);
1211 tmp = (new Number(0)).toFixed(1);
1212 ok(tmp === "0.0", "Number(0).toFixed(1) = " + tmp);
1213 tmp = (new Number(0)).toFixed(2);
1214 ok(tmp === "0.00", "Number(0).toFixed(2) = " + tmp);
1215 tmp = (new Number(1.76)).toFixed(1);
1216 ok(tmp === "1.8", "num(1.76).toFixed(1) = " + tmp);
1217 tmp = (new Number(7.92)).toFixed(5);
1218 ok(tmp === "7.92000", "num(7.92).toFixed(5) = " + tmp);
1219 tmp = (new Number(2.88)).toFixed();
1220 ok(tmp === "3", "num(2.88).toFixed = " + tmp);
1221 tmp = (new Number(-2.5)).toFixed();
1222 ok(tmp === "-3", "num(-2.5).toFixed = " + tmp);
1223 tmp = (new Number(1000000000000000128)).toFixed(0);
1224 //todo_wine ok(tmp === "1000000000000000100", "num(1000000000000000128) = " + tmp);
1225 tmp = (new Number(3.14).toFixed(NaN));
1226 ok(tmp === "3", "num(3.14).toFixed = " + tmp);
1227 tmp = (new Number(0.95).toFixed(1));
1228 ok(tmp === "1.0", "num(0.95).toFixed(1) = " + tmp);
1229 tmp = (new Number(1e900)).toFixed(0);
1230 ok(tmp === "Infinity", "num(1000000000000000128) = " + tmp);
1231 tmp = (new Number(0.12345678901234567890123)).toFixed(20);
1232 ok(tmp === "0.12345678901234568000", "num(0.12345678901234567890123) = " + tmp);
1233
1234 tmp = (new Number(2)).toExponential(3);
1235 ok(tmp === "2.000e+0", "num(2).toExponential(3) = " + tmp);
1236 tmp = (new Number(1.17e-32)).toExponential(20);
1237 ok(tmp === "1.17000000000000000000e-32", "num(1.17e-32).toExponential(20) = " + tmp);
1238 tmp = (new Number(0)).toExponential(7);
1239 ok(tmp === "0.0000000e+0", "num(0).toExponential(7) = " + tmp);
1240 tmp = (new Number(0)).toExponential(0);
1241 ok(tmp === "0e+0", "num(0).toExponential() = " + tmp);
1242 tmp = (new Number(-13.7567)).toExponential();
1243 ok(tmp === "-1.37567e+1", "num(-13.7567).toExponential() = " + tmp);
1244 tmp = (new Number(-32.1)).toExponential();
1245 ok(tmp === "-3.21e+1", "num(-32.1).toExponential() = " + tmp);
1246 tmp = (new Number(4723.4235)).toExponential();
1247 ok(tmp === "4.7234235e+3", "num(4723.4235).toExponential() = " + tmp);
1248
1249 tmp = (new Number(5)).toPrecision(12);
1250 ok(tmp == "5.00000000000", "num(5).toPrecision(12) = " + tmp);
1251 tmp = (new Number(7.73)).toPrecision(7);
1252 ok(tmp == "7.730000", "num(7.73).toPrecision(7) = " + tmp);
1253 tmp = (new Number(-127547.47472)).toPrecision(17);
1254 ok(tmp == "-127547.47472000000", "num(-127547.47472).toPrecision(17) = " + tmp);
1255 tmp = (new Number(0)).toPrecision(3);
1256 ok(tmp == "0.00", "num(0).toPrecision(3) = " + tmp);
1257 tmp = (new Number(42345.52342465464562334)).toPrecision(15);
1258 ok(tmp == "42345.5234246546", "num(42345.52342465464562334).toPrecision(15) = " + tmp);
1259 tmp = (new Number(1.182e30)).toPrecision(5);
1260 ok(tmp == "1.1820e+30", "num(1.182e30)).toPrecision(5) = " + tmp);
1261 tmp = (new Number(1.123)).toPrecision();
1262 ok(tmp == "1.123", "num(1.123).toPrecision() = " + tmp);
1263
1264 ok(Number() === 0, "Number() = " + Number());
1265 ok(Number(false) === 0, "Number(false) = " + Number(false));
1266 ok(Number("43") === 43, "Number('43') = " + Number("43"));
1267
1268 tmp = (new Number(1)).valueOf();
1269 ok(tmp === 1, "(new Number(1)).valueOf = " + tmp);
1270 tmp = (new Number(1,2)).valueOf();
1271 ok(tmp === 1, "(new Number(1,2)).valueOf = " + tmp);
1272 tmp = (new Number()).valueOf();
1273 ok(tmp === 0, "(new Number()).valueOf = " + tmp);
1274 tmp = Number.prototype.valueOf();
1275 ok(tmp === 0, "Number.prototype.valueOf = " + tmp);
1276
1277 function equals(val, base) {
1278 var i;
1279 var num = 0;
1280 var str = val.toString(base);
1281
1282 for(i=0; i<str.length; i++) {
1283 if(str.substring(i, i+1) == '(') break;
1284 if(str.substring(i, i+1) == '.') break;
1285 num = num*base + parseInt(str.substring(i, i+1));
1286 }
1287
1288 if(str.substring(i, i+1) == '.') {
1289 var mult = base;
1290 for(i++; i<str.length; i++) {
1291 if(str.substring(i, i+1) == '(') break;
1292 num += parseInt(str.substring(i, i+1))/mult;
1293 mult *= base;
1294 }
1295 }
1296
1297 if(str.substring(i, i+1) == '(') {
1298 exp = parseInt(str.substring(i+2));
1299 num *= Math.pow(base, exp);
1300 }
1301
1302 ok(num>val-val/1000 && num<val+val/1000, "equals: num = " + num);
1303 }
1304
1305 ok((10).toString(11) === "a", "(10).toString(11) = " + (10).toString(11));
1306 ok((213213433).toString(17) === "8e2ddcb", "(213213433).toString(17) = " + (213213433).toString(17));
1307 ok((-3254343).toString(33) === "-2oicf", "(-3254343).toString(33) = " + (-3254343).toString(33));
1308 ok((NaN).toString(12) === "NaN", "(NaN).toString(11) = " + (NaN).toString(11));
1309 ok((Infinity).toString(13) === "Infinity", "(Infinity).toString(11) = " + (Infinity).toString(11));
1310 for(i=2; i<10; i++) {
1311 equals(1.123, i);
1312 equals(2305843009200000000, i);
1313 equals(5.123, i);
1314 equals(21711, i);
1315 equals(1024*1024*1024*1024*1024*1024*1.9999, i);
1316 equals(748382, i);
1317 equals(0.6, i);
1318 equals(4.65661287308e-10, i);
1319 ok((0).toString(i) === "0", "(0).toString("+i+") = " + (0).toString(i));
1320 }
1321
1322 ok(parseFloat('123') === 123, "parseFloat('123') = " + parseFloat('123'));
1323 ok(parseFloat('-13.7') === -13.7, "parseFloat('-13.7') = " + parseFloat('-13.7'));
1324 ok(parseFloat('-0.01e-2') === -0.01e-2, "parseFloat('-0.01e-2') = " + parseFloat('-0.01e-2'));
1325 ok(parseFloat('-12e+5') === -12e+5, "parseFloat('-12e+5') = " + parseFloat('-12e+5'));
1326 ok(parseFloat('1E5 not parsed') === 1E5, "parseFloat('1E5 not parsed') = " + parseFloat('1E5 not parsed'));
1327 ok(isNaN(parseFloat('not a number')), "parseFloat('not a number') is not NaN");
1328 ok(parseFloat('+13.2e-3') === 13.2e-3, "parseFloat('+13.2e-3') = " + parseFloat('+13.2e-3'));
1329 ok(parseFloat('.12') === 0.12, "parseFloat('.12') = " + parseFloat('.12'));
1330 ok(parseFloat('1e') === 1, "parseFloat('1e') = " + parseFloat('1e'));
1331
1332 tmp = Math.min(1);
1333 ok(tmp === 1, "Math.min(1) = " + tmp);
1334
1335 tmp = Math.min(1, false);
1336 ok(tmp === 0, "Math.min(1, false) = " + tmp);
1337
1338 tmp = Math.min();
1339 ok(tmp === Infinity, "Math.min() = " + tmp);
1340
1341 tmp = Math.min(1, NaN, -Infinity, false);
1342 ok(isNaN(tmp), "Math.min(1, NaN, -Infinity, false) is not NaN");
1343
1344 tmp = Math.min(1, false, true, null, -3);
1345 ok(tmp === -3, "Math.min(1, false, true, null, -3) = " + tmp);
1346
1347 tmp = Math.max(1);
1348 ok(tmp === 1, "Math.max(1) = " + tmp);
1349
1350 tmp = Math.max(true, 0);
1351 ok(tmp === 1, "Math.max(true, 0) = " + tmp);
1352
1353 tmp = Math.max(-2, false, true, null, 1);
1354 ok(tmp === 1, "Math.max(-2, false, true, null, 1) = " + tmp);
1355
1356 tmp = Math.max();
1357 ok(tmp === -Infinity, "Math.max() = " + tmp);
1358
1359 tmp = Math.max(true, NaN, 0);
1360 ok(isNaN(tmp), "Math.max(true, NaN, 0) is not NaN");
1361
1362 tmp = Math.round(0.5);
1363 ok(tmp === 1, "Math.round(0.5) = " + tmp);
1364
1365 tmp = Math.round(-0.5);
1366 ok(tmp === 0, "Math.round(-0.5) = " + tmp);
1367
1368 tmp = Math.round(1.1);
1369 ok(tmp === 1, "Math.round(1.1) = " + tmp);
1370
1371 tmp = Math.round(true);
1372 ok(tmp === 1, "Math.round(true) = " + tmp);
1373
1374 tmp = Math.round(1.1, 3, 4);
1375 ok(tmp === 1, "Math.round(1.1, 3, 4) = " + tmp);
1376
1377 tmp = Math.round();
1378 ok(isNaN(tmp), "Math.round() is not NaN");
1379
1380 tmp = Math.ceil(0.5);
1381 ok(tmp === 1, "Math.ceil(0.5) = " + tmp);
1382
1383 tmp = Math.ceil(-0.5);
1384 ok(tmp === 0, "Math.ceil(-0.5) = " + tmp);
1385
1386 tmp = Math.ceil(1.1);
1387 ok(tmp === 2, "Math.round(1.1) = " + tmp);
1388
1389 tmp = Math.ceil(true);
1390 ok(tmp === 1, "Math.ceil(true) = " + tmp);
1391
1392 tmp = Math.ceil(1.1, 3, 4);
1393 ok(tmp === 2, "Math.ceil(1.1, 3, 4) = " + tmp);
1394
1395 tmp = Math.ceil();
1396 ok(isNaN(tmp), "ceil() is not NaN");
1397
1398 tmp = Math.floor(0.5);
1399 ok(tmp === 0, "Math.floor(0.5) = " + tmp);
1400
1401 tmp = Math.floor(-0.5);
1402 ok(tmp === -1, "Math.floor(-0.5) = " + tmp);
1403
1404 tmp = Math.floor(1.1);
1405 ok(tmp === 1, "Math.floor(1.1) = " + tmp);
1406
1407 tmp = Math.floor(true);
1408 ok(tmp === 1, "Math.floor(true) = " + tmp);
1409
1410 tmp = Math.floor(1.1, 3, 4);
1411 ok(tmp === 1, "Math.floor(1.1, 3, 4) = " + tmp);
1412
1413 tmp = Math.floor();
1414 ok(isNaN(tmp), "floor is not NaN");
1415
1416 tmp = Math.abs(3);
1417 ok(tmp === 3, "Math.abs(3) = " + tmp);
1418
1419 tmp = Math.abs(-3);
1420 ok(tmp === 3, "Math.abs(-3) = " + tmp);
1421
1422 tmp = Math.abs(true);
1423 ok(tmp === 1, "Math.abs(true) = " + tmp);
1424
1425 tmp = Math.abs();
1426 ok(isNaN(tmp), "Math.abs() is not NaN");
1427
1428 tmp = Math.abs(NaN);
1429 ok(isNaN(tmp), "Math.abs() is not NaN");
1430
1431 tmp = Math.abs(-Infinity);
1432 ok(tmp === Infinity, "Math.abs(-Infinite) = " + tmp);
1433
1434 tmp = Math.abs(-3, 2);
1435 ok(tmp === 3, "Math.abs(-3, 2) = " + tmp);
1436
1437 tmp = Math.cos(0);
1438 ok(tmp === 1, "Math.cos(0) = " + tmp);
1439
1440 tmp = Math.cos(Math.PI/2);
1441 ok(Math.floor(tmp*100) === 0, "Math.cos(Math.PI/2) = " + tmp);
1442
1443 tmp = Math.cos(-Math.PI/2);
1444 ok(Math.floor(tmp*100) === 0, "Math.cos(-Math.PI/2) = " + tmp);
1445
1446 tmp = Math.cos(Math.PI/3, 2);
1447 ok(Math.floor(tmp*100) === 50, "Math.cos(Math.PI/3, 2) = " + tmp);
1448
1449 tmp = Math.cos(true);
1450 ok(Math.floor(tmp*100) === 54, "Math.cos(true) = " + tmp);
1451
1452 tmp = Math.cos(false);
1453 ok(tmp === 1, "Math.cos(false) = " + tmp);
1454
1455 tmp = Math.cos();
1456 ok(isNaN(tmp), "Math.cos() is not NaN");
1457
1458 tmp = Math.cos(NaN);
1459 ok(isNaN(tmp), "Math.cos(NaN) is not NaN");
1460
1461 tmp = Math.cos(Infinity);
1462 ok(isNaN(tmp), "Math.cos(Infinity) is not NaN");
1463
1464 tmp = Math.cos(-Infinity);
1465 ok(isNaN(tmp), "Math.cos(-Infinity) is not NaN");
1466
1467 tmp = Math.pow(2, 2);
1468 ok(tmp === 4, "Math.pow(2, 2) = " + tmp);
1469
1470 tmp = Math.pow(4, 0.5);
1471 ok(tmp === 2, "Math.pow(2, 2) = " + tmp);
1472
1473 tmp = Math.pow(2, 2, 3);
1474 ok(tmp === 4, "Math.pow(2, 2, 3) = " + tmp);
1475
1476 tmp = Math.pow(2);
1477 ok(isNaN(tmp), "Math.pow(2) is not NaN");
1478
1479 tmp = Math.pow();
1480 ok(isNaN(tmp), "Math.pow() is not NaN");
1481
1482 tmp = Math.random();
1483 ok(typeof(tmp) == "number", "typeof(tmp) = " + typeof(tmp));
1484 ok(0 <= tmp && tmp <= 1, "Math.random() = " + tmp);
1485
1486 tmp = Math.random(100);
1487 ok(typeof(tmp) == "number", "typeof(tmp) = " + typeof(tmp));
1488 ok(0 <= tmp && tmp <= 1, "Math.random(100) = " + tmp);
1489
1490 tmp = Math.acos(0);
1491 ok(Math.floor(tmp*100) === 157, "Math.acos(0) = " + tmp);
1492
1493 tmp = Math.acos(1);
1494 ok(Math.floor(tmp*100) === 0, "Math.acos(1) = " + tmp);
1495
1496 tmp = Math.acos(-1);
1497 ok(Math.floor(tmp*100) === 314, "Math.acos(-1) = " + tmp);
1498
1499 tmp = Math.acos(Math.PI/4, 2);
1500 ok(Math.floor(tmp*100) === 66, "Math.acos(Math.PI/4, 2) = " + tmp);
1501
1502 tmp = Math.acos(true);
1503 ok(Math.floor(tmp*100) === 0, "Math.acos(true) = " + tmp);
1504
1505 tmp = Math.acos(false);
1506 ok(Math.floor(tmp*100) === 157, "Math.acos(false) = " + tmp);
1507
1508 tmp = Math.acos(1.1);
1509 ok(isNaN(tmp), "Math.acos(1.1) is not NaN");
1510
1511 tmp = Math.acos();
1512 ok(isNaN(tmp), "Math.acos() is not NaN");
1513
1514 tmp = Math.acos(NaN);
1515 ok(isNaN(tmp), "Math.acos(NaN) is not NaN");
1516
1517 tmp = Math.acos(Infinity);
1518 ok(isNaN(tmp), "Math.acos(Infinity) is not NaN");
1519
1520 tmp = Math.acos(-Infinity);
1521 ok(isNaN(tmp), "Math.acos(-Infinity) is not NaN");
1522
1523 tmp = Math.asin(0);
1524 ok(Math.floor(tmp*100) === 0, "Math.asin(0) = " + tmp);
1525
1526 tmp = Math.asin(1);
1527 ok(Math.floor(tmp*100) === 157, "Math.asin(1) = " + tmp);
1528
1529 tmp = Math.asin(-1);
1530 ok(Math.floor(tmp*100) === -158, "Math.asin(-1) = " + tmp);
1531
1532 tmp = Math.asin(Math.PI/4, 2);
1533 ok(Math.floor(tmp*100) === 90, "Math.asin(Math.PI/4, 2) = " + tmp);
1534
1535 tmp = Math.asin(true);
1536 ok(Math.floor(tmp*100) === 157, "Math.asin(true) = " + tmp);
1537
1538 tmp = Math.asin(false);
1539 ok(Math.floor(tmp*100) === 0, "Math.asin(false) = " + tmp);
1540
1541 tmp = Math.asin(1.1);
1542 ok(isNaN(tmp), "Math.asin(1.1) is not NaN");
1543
1544 tmp = Math.asin();
1545 ok(isNaN(tmp), "Math.asin() is not NaN");
1546
1547 tmp = Math.asin(NaN);
1548 ok(isNaN(tmp), "Math.asin(NaN) is not NaN");
1549
1550 tmp = Math.asin(Infinity);
1551 ok(isNaN(tmp), "Math.asin(Infinity) is not NaN");
1552
1553 tmp = Math.asin(-Infinity);
1554 ok(isNaN(tmp), "Math.asin(-Infinity) is not NaN");
1555
1556 tmp = Math.atan(0);
1557 ok(Math.floor(tmp*100) === 0, "Math.atan(0) = " + tmp);
1558
1559 tmp = Math.atan(1);
1560 ok(Math.floor(tmp*100) === 78, "Math.atan(1) = " + tmp);
1561
1562 tmp = Math.atan(-1);
1563 ok(Math.floor(tmp*100) === -79, "Math.atan(-1) = " + tmp);
1564
1565 tmp = Math.atan(true);
1566 ok(Math.floor(tmp*100) === 78, "Math.atan(true) = " + tmp);
1567
1568 tmp = Math.atan(false);
1569 ok(Math.floor(tmp*100) === 0, "Math.atan(false) = " + tmp);
1570
1571 tmp = Math.atan();
1572 ok(isNaN(tmp), "Math.atan() is not NaN");
1573
1574 tmp = Math.atan(NaN);
1575 ok(isNaN(tmp), "Math.atan(NaN) is not NaN");
1576
1577 tmp = Math.atan(Infinity);
1578 ok(Math.floor(tmp*100) === 157, "Math.atan(Infinity) = " + tmp);
1579
1580 tmp = Math.atan(-Infinity);
1581 ok(Math.floor(tmp*100) === -158, "Math.atan(Infinity) = " + tmp);
1582
1583 tmp = Math.atan2(0, 0);
1584 ok(Math.floor(tmp*100) === 0, "Math.atan2(0, 0) = " + tmp);
1585
1586 tmp = Math.atan2(0, 1);
1587 ok(Math.floor(tmp*100) === 0, "Math.atan2(0, 1) = " + tmp);
1588
1589 tmp = Math.atan2(0, Infinity);
1590 ok(Math.floor(tmp*100) === 0, "Math.atan2(0, Infinity) = " + tmp);
1591
1592 tmp = Math.atan2(0, -1);
1593 ok(Math.floor(tmp*100) === 314, "Math.atan2(0, -1) = " + tmp);
1594
1595 tmp = Math.atan2(0, -Infinity);
1596 ok(Math.floor(tmp*100) === 314, "Math.atan2(0, -Infinity) = " + tmp);
1597
1598 tmp = Math.atan2(1, 0);
1599 ok(Math.floor(tmp*100) === 157, "Math.atan2(1, 0) = " + tmp);
1600
1601 tmp = Math.atan2(Infinity, 0);
1602 ok(Math.floor(tmp*100) === 157, "Math.atan2(Infinity, 0) = " + tmp);
1603
1604 tmp = Math.atan2(-1, 0);
1605 ok(Math.floor(tmp*100) === -158, "Math.atan2(-1, 0) = " + tmp);
1606
1607 tmp = Math.atan2(-Infinity, 0);
1608 ok(Math.floor(tmp*100) === -158, "Math.atan2(-Infinity, 0) = " + tmp);
1609
1610 tmp = Math.atan2(1, 1);
1611 ok(Math.floor(tmp*100) === 78, "Math.atan2(1, 1) = " + tmp);
1612
1613 tmp = Math.atan2(-1, -1);
1614 ok(Math.floor(tmp*100) === -236, "Math.atan2(-1, -1) = " + tmp);
1615
1616 tmp = Math.atan2(-1, 1);
1617 ok(Math.floor(tmp*100) === -79, "Math.atan2(-1, 1) = " + tmp);
1618
1619 tmp = Math.atan2(Infinity, Infinity);
1620 ok(Math.floor(tmp*100) === 78, "Math.atan2(Infinity, Infinity) = " + tmp);
1621
1622 tmp = Math.atan2(Infinity, -Infinity, 1);
1623 ok(Math.floor(tmp*100) === 235, "Math.atan2(Infinity, -Infinity, 1) = " + tmp);
1624
1625 tmp = Math.atan2();
1626 ok(isNaN(tmp), "Math.atan2() is not NaN");
1627
1628 tmp = Math.atan2(1);
1629 ok(isNaN(tmp), "Math.atan2(1) is not NaN");
1630
1631 tmp = Math.exp(0);
1632 ok(tmp === 1, "Math.exp(0) = " + tmp);
1633
1634 tmp = Math.exp(1);
1635 ok(Math.floor(tmp*100) === 271, "Math.exp(1) = " + tmp);
1636
1637 tmp = Math.exp(-1);
1638 ok(Math.floor(tmp*100) === 36, "Math.exp(-1) = " + tmp);
1639
1640 tmp = Math.exp(true);
1641 ok(Math.floor(tmp*100) === 271, "Math.exp(true) = " + tmp);
1642
1643 tmp = Math.exp(1, 1);
1644 ok(Math.floor(tmp*100) === 271, "Math.exp(1, 1) = " + tmp);
1645
1646 tmp = Math.exp();
1647 ok(isNaN(tmp), "Math.exp() is not NaN");
1648
1649 tmp = Math.exp(NaN);
1650 ok(isNaN(tmp), "Math.exp(NaN) is not NaN");
1651
1652 tmp = Math.exp(Infinity);
1653 ok(tmp === Infinity, "Math.exp(Infinity) = " + tmp);
1654
1655 tmp = Math.exp(-Infinity);
1656 ok(tmp === 0, "Math.exp(-Infinity) = " + tmp);
1657
1658 tmp = Math.log(1);
1659 ok(Math.floor(tmp*100) === 0, "Math.log(1) = " + tmp);
1660
1661 tmp = Math.log(-1);
1662 ok(isNaN(tmp), "Math.log(-1) is not NaN");
1663
1664 tmp = Math.log(true);
1665 ok(Math.floor(tmp*100) === 0, "Math.log(true) = " + tmp);
1666
1667 tmp = Math.log(1, 1);
1668 ok(Math.floor(tmp*100) === 0, "Math.log(1, 1) = " + tmp);
1669
1670 tmp = Math.log();
1671 ok(isNaN(tmp), "Math.log() is not NaN");
1672
1673 tmp = Math.log(NaN);
1674 ok(isNaN(tmp), "Math.log(NaN) is not NaN");
1675
1676 tmp = Math.log(Infinity);
1677 ok(tmp === Infinity, "Math.log(Infinity) = " + tmp);
1678
1679 tmp = Math.log(-Infinity);
1680 ok(isNaN(tmp), "Math.log(-Infinity) is not NaN");
1681
1682 tmp = Math.sin(0);
1683 ok(tmp === 0, "Math.sin(0) = " + tmp);
1684
1685 tmp = Math.sin(Math.PI/2);
1686 ok(tmp === 1, "Math.sin(Math.PI/2) = " + tmp);
1687
1688 tmp = Math.sin(-Math.PI/2);
1689 ok(tmp === -1, "Math.sin(-Math.PI/2) = " + tmp);
1690
1691 tmp = Math.sin(Math.PI/3, 2);
1692 ok(Math.floor(tmp*100) === 86, "Math.sin(Math.PI/3, 2) = " + tmp);
1693
1694 tmp = Math.sin(true);
1695 ok(Math.floor(tmp*100) === 84, "Math.sin(true) = " + tmp);
1696
1697 tmp = Math.sin(false);
1698 ok(tmp === 0, "Math.sin(false) = " + tmp);
1699
1700 tmp = Math.sin();
1701 ok(isNaN(tmp), "Math.sin() is not NaN");
1702
1703 tmp = Math.sin(NaN);
1704 ok(isNaN(tmp), "Math.sin(NaN) is not NaN");
1705
1706 tmp = Math.sin(Infinity);
1707 ok(isNaN(tmp), "Math.sin(Infinity) is not NaN");
1708
1709 tmp = Math.sin(-Infinity);
1710 ok(isNaN(tmp), "Math.sin(-Infinity) is not NaN");
1711
1712 tmp = Math.sqrt(0);
1713 ok(tmp === 0, "Math.sqrt(0) = " + tmp);
1714
1715 tmp = Math.sqrt(4);
1716 ok(tmp === 2, "Math.sqrt(4) = " + tmp);
1717
1718 tmp = Math.sqrt(-1);
1719 ok(isNaN(tmp), "Math.sqrt(-1) is not NaN");
1720
1721 tmp = Math.sqrt(2, 2);
1722 ok(Math.floor(tmp*100) === 141, "Math.sqrt(2, 2) = " + tmp);
1723
1724 tmp = Math.sqrt(true);
1725 ok(tmp === 1, "Math.sqrt(true) = " + tmp);
1726
1727 tmp = Math.sqrt(false);
1728 ok(tmp === 0, "Math.sqrt(false) = " + tmp);
1729
1730 tmp = Math.sqrt();
1731 ok(isNaN(tmp), "Math.sqrt() is not NaN");
1732
1733 tmp = Math.sqrt(NaN);
1734 ok(isNaN(tmp), "Math.sqrt(NaN) is not NaN");
1735
1736 tmp = Math.sqrt(Infinity);
1737 ok(tmp === Infinity, "Math.sqrt(Infinity) = " + tmp);
1738
1739 tmp = Math.sqrt(-Infinity);
1740 ok(isNaN(tmp), "Math.sqrt(-Infinity) is not NaN");
1741
1742 tmp = Math.tan(0);
1743 ok(tmp === 0, "Math.tan(0) = " + tmp);
1744
1745 tmp = Math.tan(Math.PI);
1746 ok(Math.floor(tmp*100) === -1, "Math.tan(Math.PI) = " + tmp);
1747
1748 tmp = Math.tan(2, 2);
1749 ok(Math.floor(tmp*100) === -219, "Math.tan(2, 2) = " + tmp);
1750
1751 tmp = Math.tan(true);
1752 ok(Math.floor(tmp*100) === 155, "Math.tan(true) = " + tmp);
1753
1754 tmp = Math.tan(false);
1755 ok(tmp === 0, "Math.tan(false) = " + tmp);
1756
1757 tmp = Math.tan();
1758 ok(isNaN(tmp), "Math.tan() is not NaN");
1759
1760 tmp = Math.tan(NaN);
1761 ok(isNaN(tmp), "Math.tan(NaN) is not NaN");
1762
1763 tmp = Math.tan(Infinity);
1764 ok(isNaN(tmp), "Math.tan(Infinity) is not NaN");
1765
1766 tmp = Math.tan(-Infinity);
1767 ok(isNaN(tmp), "Math.tan(-Infinity) is not NaN");
1768
1769 var func = function (a) {
1770 var a = 1;
1771 if(a) return;
1772 };
1773 ok(func.toString() === "function (a) {\n var a = 1;\n if(a) return;\n }",
1774 "func.toString() = " + func.toString());
1775 ok("" + func === "function (a) {\n var a = 1;\n if(a) return;\n }",
1776 "'' + func.toString() = " + func);
1777
1778 ok(func.valueOf === Object.prototype.valueOf, "func.valueOf !== Object.prototype.valueOf");
1779 ok(func === func.valueOf(), "func !== func.valueOf()");
1780
1781 function testFuncToString(x,y) {
1782 return x+y;
1783 }
1784 ok(testFuncToString.toString() === "function testFuncToString(x,y) {\n return x+y;\n}",
1785 "testFuncToString.toString() = " + testFuncToString.toString());
1786 ok("" + testFuncToString === "function testFuncToString(x,y) {\n return x+y;\n}",
1787 "'' + testFuncToString = " + testFuncToString);
1788
1789 tmp = new Object();
1790
1791 function callTest(argc) {
1792 ok(this === tmp, "this !== tmp\n");
1793 ok(arguments.length === argc+1, "arguments.length = " + arguments.length + " expected " + (argc+1));
1794 for(var i=1; i <= argc; i++)
1795 ok(arguments[i] === i, "arguments[i] = " + arguments[i]);
1796 var a = arguments;
1797 for(var i=1; i <= argc; i++)
1798 ok(a[i] === i, "a[i] = " + a[i]);
1799 }
1800
1801 callTest.call(tmp, 1, 1);
1802 callTest.call(tmp, 2, 1, 2);
1803 callTest.call(tmp, 3, 1, 2, 3);
1804
1805 callTest.apply(tmp, [1, 1]);
1806 callTest.apply(tmp, [2, 1, 2]);
1807 callTest.apply(tmp, [3, 1, 2, 3]);
1808 (function () { callTest.apply(tmp, arguments); })(2,1,2);
1809
1810 function callTest2() {
1811 ok(this === tmp, "this !== tmp\n");
1812 ok(arguments.length === 0, "callTest2: arguments.length = " + arguments.length + " expected 0");
1813 }
1814
1815 callTest2.call(tmp);
1816 callTest2.apply(tmp, []);
1817 callTest2.apply(tmp);
1818 (function () { callTest2.apply(tmp, arguments); })();
1819
1820 function callTest3() {
1821 testThis(this);
1822 ok(arguments.length === 0, "arguments.length = " + arguments.length + " expected 0");
1823 }
1824
1825 callTest3.call();
1826 callTest3.call(undefined);
1827 callTest3.call(null);
1828 callTest3.apply();
1829 callTest3.apply(undefined);
1830 callTest3.apply(null);
1831
1832 tmp = Number.prototype.toString.call(3);
1833 ok(tmp === "3", "Number.prototype.toString.call(3) = " + tmp);
1834
1835 var func = new Function("return 3;");
1836
1837 tmp = func();
1838 ok(tmp === 3, "func() = " + tmp);
1839 ok(func.call() === 3, "func.call() = " + tmp);
1840 ok(func.length === 0, "func.length = " + func.length);
1841 tmp = func.toString();
1842 ok(tmp === "function anonymous() {\nreturn 3;\n}", "func.toString() = " + tmp);
1843
1844 func = new Function("x", "return x+2;");
1845 tmp = func(1);
1846 ok(tmp === 3, "func(1) = " + tmp);
1847 tmp = func.toString();
1848 ok(tmp === "function anonymous(x) {\nreturn x+2;\n}", "func.toString() = " + tmp);
1849
1850 tmp = (new Function("x ", "return x+2;")).toString();
1851 ok(tmp === "function anonymous(x ) {\nreturn x+2;\n}", "func.toString() = " + tmp);
1852
1853 func = new Function("x", "y", "return x+y");
1854 tmp = func(1,3);
1855 ok(tmp === 4, "func(1,3) = " + tmp);
1856 tmp = func.toString();
1857 ok(tmp === "function anonymous(x, y) {\nreturn x+y\n}", "func.toString() = " + tmp);
1858
1859 func = new Function(" x, \ty", "\tz", "return x+y+z;");
1860 tmp = func(1,3,2);
1861 ok(tmp === 6, "func(1,3,2) = " + tmp);
1862 ok(func.length === 3, "func.length = " + func.length);
1863 tmp = func.toString();
1864 ok(tmp === "function anonymous( x, \ty, \tz) {\nreturn x+y+z;\n}", "func.toString() = " + tmp);
1865
1866 func = new Function();
1867 tmp = func();
1868 ok(tmp === undefined, "func() = " + tmp);
1869 tmp = func.toString();
1870 ok(tmp == "function anonymous() {\n\n}", "func.toString() = " + tmp);
1871
1872 func = (function() {
1873 var tmp = 3;
1874 return new Function("return tmp;");
1875 })();
1876 tmp = 2;
1877 tmp = func();
1878 ok(tmp === 2, "func() = " + tmp);
1879
1880 var date = new Date();
1881
1882 date = new Date(100);
1883 ok(date.getTime() === 100, "date.getTime() = " + date.getTime());
1884 ok(Date.prototype.getTime() === 0, "date.prototype.getTime() = " + Date.prototype.getTime());
1885 date = new Date(8.64e15);
1886 ok(date.getTime() === 8.64e15, "date.getTime() = " + date.getTime());
1887 date = new Date(8.64e15+1);
1888 ok(isNaN(0+date.getTime()), "date.getTime() is not NaN");
1889 date = new Date(Infinity);
1890 ok(isNaN(0+date.getTime()), "date.getTime() is not NaN");
1891 date = new Date("3 July 2009 22:28:00 UTC+0100");
1892 ok(date.getTime() === 1246656480000, "date.getTime() = " + date.getTime());
1893 date = new Date(1984, 11, 29, 13, 51, 24, 120);
1894 ok(date.getFullYear() === 1984, "date.getFullYear() = " + date.getFullYear());
1895 ok(date.getMonth() === 11, "date.getMonth() = " + date.getMonth());
1896 ok(date.getDate() === 29, "date.getDate() = " + date.getDate());
1897 ok(date.getHours() === 13, "date.getHours() = " + date.getHours());
1898 ok(date.getMinutes() === 51, "date.getMinutes() = " + date.getMinutes());
1899 ok(date.getSeconds() === 24, "date.getSeconds() = " + date.getSeconds());
1900 ok(date.getMilliseconds() === 120, "date.getMilliseconds() = " + date.getMilliseconds());
1901 date = new Date(731, -32, 40, -1, 70, 65, -13);
1902 ok(date.getFullYear() === 728, "date.getFullYear() = " + date.getFullYear());
1903 ok(date.getMonth() === 5, "date.getMonth() = " + date.getMonth());
1904 ok(date.getDate() === 9, "date.getDate() = " + date.getDate());
1905 ok(date.getHours() === 0, "date.getHours() = " + date.getHours());
1906 ok(date.getMinutes() === 11, "date.getMinutes() = " + date.getMinutes());
1907 ok(date.getSeconds() === 4, "date.getSeconds() = " + date.getSeconds());
1908 ok(date.getMilliseconds() === 987, "date.getMilliseconds() = " + date.getMilliseconds());
1909
1910 ok(date.setTime(123) === 123, "date.setTime(123) !== 123");
1911 ok(date.setTime("123", NaN) === 123, "date.setTime(\"123\") !== 123");
1912 ok(isNaN(date.setTime(NaN)), "date.setTime(NaN) is not NaN");
1913
1914 ok(date.setTime(0) === date.getTime(), "date.setTime(0) !== date.getTime()");
1915 ok(date.getUTCFullYear() === 1970, "date.getUTCFullYear() = " + date.getUTCFullYear());
1916 ok(date.getUTCMonth() === 0, "date.getUTCMonth() = " + date.getUTCMonth());
1917 ok(date.getUTCDate() === 1, "date.getUTCDate() = " + date.getUTCDate());
1918 ok(date.getUTCDay() === 4, "date.getUTCDay() = " + date.getUTCDay());
1919 ok(date.getUTCHours() === 0, "date.getUTCHours() = " + date.getUTCHours());
1920 ok(date.getUTCMinutes() === 0, "date.getUTCMinutes() = " + date.getUTCMinutes());
1921 ok(date.getUTCSeconds() === 0, "date.getUTCSeconds() = " + date.getUTCSeconds());
1922 ok(date.getUTCMilliseconds() === 0, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds());
1923
1924 date.setTime(60*24*60*60*1000);
1925 ok(date.getUTCFullYear() === 1970, "date.getUTCFullYear() = " + date.getUTCFullYear());
1926 ok(date.getUTCMonth() === 2, "date.getUTCMonth() = " + date.getUTCMonth());
1927 ok(date.getUTCDate() === 2, "date.getUTCDate() = " + date.getUTCDate());
1928 ok(date.getUTCDay() === 1, "date.getUTCDay() = " + date.getUTCDay());
1929 ok(date.getUTCHours() === 0, "date.getUTCHours() = " + date.getUTCHours());
1930 ok(date.getUTCMinutes() === 0, "date.getUTCMinutes() = " + date.getUTCMinutes());
1931 ok(date.getUTCSeconds() === 0, "date.getUTCSeconds() = " + date.getUTCSeconds());
1932 ok(date.getUTCMilliseconds() === 0, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds());
1933
1934 date.setTime(59*24*60*60*1000 + 4*365*24*60*60*1000 + 60*60*1000 + 2*60*1000 + 2*1000 + 640);
1935 ok(date.getUTCFullYear() === 1974, "date.getUTCFullYear() = " + date.getUTCFullYear());
1936 ok(date.getUTCMonth() === 1, "date.getUTCMonth() = " + date.getUTCMonth());
1937 ok(date.getUTCMonth(123) === 1, "date.getUTCMonth() = " + date.getUTCMonth());
1938 ok(date.getUTCDate() === 28, "date.getUTCDate() = " + date.getUTCDate());
1939 ok(date.getUTCDay() === 4, "date.getUTCDay() = " + date.getUTCDay());
1940 ok(date.getUTCHours() === 1, "date.getUTCHours() = " + date.getUTCHours());
1941 ok(date.getUTCMinutes() === 2, "date.getUTCMinutes() = " + date.getUTCMinutes());
1942 ok(date.getUTCSeconds() === 2, "date.getUTCSeconds() = " + date.getUTCSeconds());
1943 ok(date.getUTCMilliseconds() === 640, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds());
1944
1945 tmp = date.setYear(96);
1946 ok(date.getYear() === 96, "date.getYear() = " + date.getYear());
1947 ok(date.getFullYear() === 1996, "date.getFullYear() = " + date.getYear());
1948 ok(date.getUTCMonth() === 1, "date.getUTCMonth() = " + date.getUTCMonth());
1949 ok(date.getUTCMonth(123) === 1, "date.getUTCMonth() = " + date.getUTCMonth());
1950 ok(date.getUTCMilliseconds() === 640, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds());
1951
1952 tmp = date.setYear(2010);
1953 ok(tmp === date.getTime(), "date.setYear(2010) = " + tmp);
1954 ok(date.getYear() === 2010, "date.getYear() = " + date.getYear());
1955 ok(date.getFullYear() === 2010, "date.getFullYear() = " + date.getYear());
1956 ok(date.getUTCMonth() === 1, "date.getUTCMonth() = " + date.getUTCMonth());
1957 ok(date.getUTCMonth(123) === 1, "date.getUTCMonth() = " + date.getUTCMonth());
1958 ok(date.getUTCMilliseconds() === 640, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds());
1959
1960 date.setTime(Infinity);
1961 ok(isNaN(date.getUTCFullYear()), "date.getUTCFullYear() is not NaN");
1962 ok(isNaN(date.getUTCMonth()), "date.getUTCMonth() is not NaN");
1963 ok(isNaN(date.getUTCDate()), "date.getUTCDate() is not NaN");
1964 ok(isNaN(date.getUTCDay()), "date.getUTCDay() is not NaN");
1965 ok(isNaN(date.getUTCHours()), "date.getUTCHours() is not NaN");
1966 ok(isNaN(date.getUTCMinutes()), "date.getUTCMinutes() is not NaN");
1967 ok(isNaN(date.getUTCSeconds()), "date.getUTCSeconds() is not NaN");
1968 ok(isNaN(date.getUTCMilliseconds()), "date.getUTCMilliseconds() is not NaN");
1969 ok(isNaN(date.setMilliseconds(0)), "date.setMilliseconds() is not NaN");
1970
1971 date.setTime(0);
1972 tmp = date.setYear(NaN);
1973 ok(isNaN(tmp), "date.setYear(NaN) = " + tmp);
1974 ok(isNaN(date.getUTCFullYear()), "date.getUTCFullYear() is not NaN");
1975 ok(isNaN(date.getUTCMonth()), "date.getUTCMonth() is not NaN");
1976
1977 date.setTime(0);
1978 date.setUTCMilliseconds(-10, 2);
1979 ok(date.getUTCMilliseconds() === 990, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds());
1980 date.setUTCMilliseconds(10);
1981 ok(date.getUTCMilliseconds() === 10, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds());
1982 date.setUTCSeconds(-10);
1983 ok(date.getUTCSeconds() === 50, "date.getUTCSeconds() = " + date.getUTCSeconds());
1984 date.setUTCMinutes(-10);
1985 ok(date.getUTCMinutes() === 50, "date.getUTCMinutes() = " + date.getUTCMinutes());
1986 date.setUTCHours(-10);
1987 ok(date.getUTCHours() === 14, "date.getUTCHours() = " + date.getUTCHours());
1988 date.setUTCHours(-123);
1989 ok(date.getTime() === -612549990, "date.getTime() = " + date.getTime());
1990 date.setUTCHours(20);
1991 ok(date.getUTCHours() === 20, "date.getUTCHours() = " + date.getUTCHours());
1992 date.setUTCDate(32);
1993 ok(date.getUTCDate() === 1, "date.getUTCDate() = " + date.getUTCDate());
1994 date.setUTCMonth(22, 37);
1995 ok(date.getTime() === 60987050010, "date.getTime() = " + date.getTime());
1996 date.setUTCFullYear(83, 21, 321);
1997 ok(date.getTime() === -59464984149990, "date.getTime() = " + date.getTime());
1998 ok(Math.abs(date) === 59464984149990, "Math.abs(date) = " + Math.abs(date));
1999 ok(getVT(date+1) === "VT_BSTR", "getVT(date+1) = " + getVT(date+1));
2000
2001 ok(isNaN(Date.parse()), "Date.parse() is not NaN");
2002 ok(isNaN(Date.parse("")), "Date.parse(\"\") is not NaN");
2003 ok(isNaN(Date.parse("Jan Jan 20 2009")), "Date.parse(\"Jan Jan 20 2009\") is not NaN");
2004 ok(Date.parse("Jan 20 2009 UTC") === 1232409600000, "Date.parse(\"Jan 20 2009 UTC\") = " + Date.parse("Jan 20 2009 UTC"));
2005 ok(Date.parse("Jan 20 2009 GMT") === 1232409600000, "Date.parse(\"Jan 20 2009 GMT\") = " + Date.parse("Jan 20 2009 GMT"));
2006 ok(Date.parse("Jan 20 2009 UTC-0") === 1232409600000, "Date.parse(\"Jan 20 2009 UTC-0\") = " + Date.parse("Jan 20 2009 UTC-0"));
2007 ok(Date.parse("Jan 20 2009 UTC+0000") === 1232409600000, "Date.parse(\"Jan 20 2009 UTC+0000\") = " + Date.parse("Jan 20 2009 UTC+0000"));
2008 ok(Date.parse("Ju 13 79 UTC") === 300672000000, "Date.parse(\"Ju 13 79 UTC\") = " + Date.parse("Ju 13 79 UTC"));
2009 ok(Date.parse("12Au91 UTC") === 681955200000, "Date.parse(\"12Au91 UTC\") = " + Date.parse("12Au91 UTC"));
2010 ok(Date.parse("7/02/17 UTC") === -1656806400000, "Date.parse(\"7/02/17 UTC\") = " + Date.parse("7/02/17 UTC"));
2011 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"));
2012 ok(Date.parse("February 31 UTC, 2000 12:31:17 PM") === 952000277000,
2013 "Date.parse(\"February 31 UTC, 2000 12:31:17 PM\") = " + Date.parse("February 31 UTC, 2000 12:31:17 PM"));
2014 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 "));
2015 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"));
2016
2017 ok(typeof(Math.PI) === "number", "typeof(Math.PI) = " + typeof(Math.PI));
2018 ok(Math.floor(Math.PI*100) === 314, "Math.PI = " + Math.PI);
2019 Math.PI = "test";
2020 ok(Math.floor(Math.PI*100) === 314, "modified Math.PI = " + Math.PI);
2021
2022 ok(typeof(Math.E) === "number", "typeof(Math.E) = " + typeof(Math.E));
2023 ok(Math.floor(Math.E*100) === 271, "Math.E = " + Math.E);
2024 Math.E = "test";
2025 ok(Math.floor(Math.E*100) === 271, "modified Math.E = " + Math.E);
2026
2027 ok(typeof(Math.LOG2E) === "number", "typeof(Math.LOG2E) = " + typeof(Math.LOG2E));
2028 ok(Math.floor(Math.LOG2E*100) === 144, "Math.LOG2E = " + Math.LOG2E);
2029 Math.LOG2E = "test";
2030 ok(Math.floor(Math.LOG2E*100) === 144, "modified Math.LOG2E = " + Math.LOG2E);
2031
2032 ok(typeof(Math.LOG10E) === "number", "typeof(Math.LOG10E) = " + typeof(Math.LOG10E));
2033 ok(Math.floor(Math.LOG10E*100) === 43, "Math.LOG10E = " + Math.LOG10E);
2034 Math.LOG10E = "test";
2035 ok(Math.floor(Math.LOG10E*100) === 43, "modified Math.LOG10E = " + Math.LOG10E);
2036
2037 ok(typeof(Math.LN2) === "number", "typeof(Math.LN2) = " + typeof(Math.LN2));
2038 ok(Math.floor(Math.LN2*100) === 69, "Math.LN2 = " + Math.LN2);
2039 Math.LN2 = "test";
2040 ok(Math.floor(Math.LN2*100) === 69, "modified Math.LN2 = " + Math.LN2);
2041
2042 ok(typeof(Math.LN10) === "number", "typeof(Math.LN10) = " + typeof(Math.LN10));
2043 ok(Math.floor(Math.LN10*100) === 230, "Math.LN10 = " + Math.LN10);
2044 Math.LN10 = "test";
2045 ok(Math.floor(Math.LN10*100) === 230, "modified Math.LN10 = " + Math.LN10);
2046
2047 ok(typeof(Math.SQRT2) === "number", "typeof(Math.SQRT2) = " + typeof(Math.SQRT2));
2048 ok(Math.floor(Math.SQRT2*100) === 141, "Math.SQRT2 = " + Math.SQRT2);
2049 Math.SQRT2 = "test";
2050 ok(Math.floor(Math.SQRT2*100) === 141, "modified Math.SQRT2 = " + Math.SQRT2);
2051
2052 ok(typeof(Math.SQRT1_2) === "number", "typeof(Math.SQRT1_2) = " + typeof(Math.SQRT1_2));
2053 ok(Math.floor(Math.SQRT1_2*100) === 70, "Math.SQRT1_2 = " + Math.SQRT1_2);
2054 Math.SQRT1_2 = "test";
2055 ok(Math.floor(Math.SQRT1_2*100) === 70, "modified Math.SQRT1_2 = " + Math.SQRT1_2);
2056
2057 ok(isNaN.toString() === "\nfunction isNaN() {\n [native code]\n}\n",
2058 "isNaN.toString = '" + isNaN.toString() + "'");
2059 ok(Array.toString() === "\nfunction Array() {\n [native code]\n}\n",
2060 "isNaN.toString = '" + Array.toString() + "'");
2061 ok(Function.toString() === "\nfunction Function() {\n [native code]\n}\n",
2062 "isNaN.toString = '" + Function.toString() + "'");
2063 ok(Function.prototype.toString() === "\nfunction prototype() {\n [native code]\n}\n",
2064 "isNaN.toString = '" + Function.prototype.toString() + "'");
2065 ok("".substr.toString() === "\nfunction substr() {\n [native code]\n}\n",
2066 "''.substr.toString = '" + "".substr.toString() + "'");
2067
2068 var bool = new Boolean();
2069 ok(bool.toString() === "false", "bool.toString() = " + bool.toString());
2070 var bool = new Boolean("false");
2071 ok(bool.toString() === "true", "bool.toString() = " + bool.toString());
2072 ok(bool.valueOf() === Boolean(1), "bool.valueOf() = " + bool.valueOf());
2073 ok(bool.toLocaleString() === bool.toString(), "bool.toLocaleString() = " + bool.toLocaleString());
2074
2075 ok(ActiveXObject instanceof Function, "ActiveXObject is not instance of Function");
2076 ok(ActiveXObject.prototype instanceof Object, "ActiveXObject.prototype is not instance of Object");
2077
2078 ok(Error.prototype !== TypeError.prototype, "Error.prototype === TypeError.prototype");
2079 ok(RangeError.prototype !== TypeError.prototype, "RangeError.prototype === TypeError.prototype");
2080 ok(Error.prototype.toLocaleString === Object.prototype.toLocaleString,
2081 "Error.prototype.toLocaleString !== Object.prototype.toLocaleString");
2082 err = new Error();
2083 ok(err.valueOf === Object.prototype.valueOf, "err.valueOf !== Object.prototype.valueOf");
2084 ok(Error.prototype.name === "Error", "Error.prototype.name = " + Error.prototype.name);
2085 ok(err.name === "Error", "err.name = " + err.name);
2086 EvalError.prototype.message = "test";
2087 ok(EvalError.prototype.message === "test", "EvalError.prototype.message = " + EvalError.prototype.message);
2088 ok(err.toString !== Object.prototype.toString, "err.toString === Object.prototype.toString");
2089 ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "Error"), "err.toString() = " + err.toString());
2090 err = new EvalError();
2091 ok(EvalError.prototype.name === "EvalError", "EvalError.prototype.name = " + EvalError.prototype.name);
2092 ok(err.name === "EvalError", "err.name = " + err.name);
2093 ok(err.toString === Error.prototype.toString, "err.toString !== Error.prototype.toString");
2094 ok(err.message === "", "err.message != ''");
2095 err.message = date;
2096 ok(err.message === date, "err.message != date");
2097 ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "EvalError: "+err.message),
2098 "err.toString() = " + err.toString());
2099 ok(err.toString !== Object.prototype.toString, "err.toString === Object.prototype.toString");
2100 err = new RangeError();
2101 ok(RangeError.prototype.name === "RangeError", "RangeError.prototype.name = " + RangeError.prototype.name);
2102 ok(err.name === "RangeError", "err.name = " + err.name);
2103 ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "RangeError"), "err.toString() = " + err.toString());
2104 err = new ReferenceError();
2105 ok(ReferenceError.prototype.name === "ReferenceError", "ReferenceError.prototype.name = " + ReferenceError.prototype.name);
2106 ok(err.name === "ReferenceError", "err.name = " + err.name);
2107 ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "ReferenceError"), "err.toString() = " + err.toString());
2108 err = new SyntaxError();
2109 ok(SyntaxError.prototype.name === "SyntaxError", "SyntaxError.prototype.name = " + SyntaxError.prototype.name);
2110 ok(err.name === "SyntaxError", "err.name = " + err.name);
2111 ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "SyntaxError"), "err.toString() = " + err.toString());
2112 err = new TypeError();
2113 ok(TypeError.prototype.name === "TypeError", "TypeError.prototype.name = " + TypeError.prototype.name);
2114 ok(err.name === "TypeError", "err.name = " + err.name);
2115 ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "TypeError"), "err.toString() = " + err.toString());
2116 err = new URIError();
2117 ok(URIError.prototype.name === "URIError", "URIError.prototype.name = " + URIError.prototype.name);
2118 ok(err.name === "URIError", "err.name = " + err.name);
2119 ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "URIError"), "err.toString() = " + err.toString());
2120 err = new Error("message");
2121 ok(err.message === "message", "err.message !== 'message'");
2122 ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "Error: message"), "err.toString() = " + err.toString());
2123 err = new Error(123);
2124 ok(err.number === 123, "err.number = " + err.number);
2125 err.number = 254;
2126 ok(err.number === 254, "err.number = " + err.number);
2127 err = new Error(0, "message");
2128 ok(err.number === 0, "err.number = " + err.number);
2129 ok(err.message === "message", "err.message = " + err.message);
2130 ok(err.description === "message", "err.description = " + err.description);
2131 err = new Error();
2132 ok(err.number === 0, "err.number = " + err.number);
2133 ok(err.description === "", "err.description = " + err.description);
2134 err.description = 5;
2135 ok(err.description === 5, "err.description = " + err.description);
2136 ok(err.message === "", "err.message = " + err.message);
2137 err.message = 4;
2138 ok(err.message === 4, "err.message = " + err.message);
2139
2140 ok(!("number" in Error), "number is in Error");
2141
2142 tmp = new Object();
2143 ok(tmp.hasOwnProperty("toString") === false, "toString property should be inherited");
2144 tmp.toString = function() { return "test"; };
2145 ok(tmp.hasOwnProperty("toString") === true, "toString own property should exist");
2146 ok(tmp.hasOwnProperty("nonExisting") === false, "nonExisting property should not exist");
2147
2148 tmp = Error.prototype.toString.call(tmp);
2149 ok(tmp === "[object Error]", "Error.prototype.toString.call(tmp) = " + tmp);
2150
2151 tmp = function() { return 0; };
2152 tmp[0] = true;
2153 ok(tmp.hasOwnProperty("toString") === false, "toString property should be inherited");
2154 ok(tmp.hasOwnProperty("0") === true, "hasOwnProperty(0) returned false");
2155 ok(tmp.hasOwnProperty() === false, "hasOwnProperty() returned true");
2156
2157 ok(Object.prototype.hasOwnProperty.call(testObj) === false, "hasOwnProperty without name returned true");
2158
2159 if(invokeVersion >= 2) {
2160 obj = new Object();
2161 obj.name = "test";
2162 tmp = Error.prototype.toString.call(obj);
2163 ok(tmp === "test", "Error.prototype.toString.call(obj) = " + tmp);
2164
2165 obj = new Object();
2166 obj.name = 6;
2167 obj.message = false;
2168 tmp = Error.prototype.toString.call(obj);
2169 ok(tmp === "6: false", "Error.prototype.toString.call(obj) = " + tmp);
2170
2171 obj = new Object();
2172 obj.message = "test";
2173 tmp = Error.prototype.toString.call(obj);
2174 ok(tmp === "test", "Error.prototype.toString.call(obj) = " + tmp);
2175
2176 obj = new Object();
2177 obj.name = "";
2178 obj.message = "test";
2179 tmp = Error.prototype.toString.call(obj);
2180 ok(tmp === "test", "Error.prototype.toString.call(obj) = " + tmp);
2181 }
2182
2183 tmp = Error.prototype.toString.call(testObj);
2184 ok(tmp === "[object Error]", "Error.prototype.toString.call(testObj) = " + tmp);
2185
2186 err = new Error();
2187 err.name = null;
2188 ok(err.name === null, "err.name = " + err.name + " expected null");
2189 if(invokeVersion >= 2)
2190 ok(err.toString() === "null", "err.toString() = " + err.toString());
2191
2192 err = new Error();
2193 err.message = false;
2194 ok(err.message === false, "err.message = " + err.message + " expected false");
2195 if(invokeVersion >= 2)
2196 ok(err.toString() === "Error: false", "err.toString() = " + err.toString());
2197
2198 err = new Error();
2199 err.message = new Object();
2200 err.message.toString = function() { return ""; };
2201 if(invokeVersion >= 2)
2202 ok(err.toString() === "Error", "err.toString() = " + err.toString());
2203
2204 err = new Error();
2205 err.message = undefined;
2206 if(invokeVersion >= 2)
2207 ok(err.toString() === "Error", "err.toString() = " + err.toString());
2208
2209 var exception_array = {
2210 E_INVALID_LENGTH: { type: "RangeError", number: -2146823259 },
2211
2212 E_NOT_DATE: { type: "TypeError", number: -2146823282 },
2213 E_NOT_BOOL: { type: "TypeError", number: -2146823278 },
2214 E_ARG_NOT_OPT: { type: "TypeError", number: -2146827839 },
2215 E_NO_PROPERTY: { type: "TypeError", number: -2146827850 },
2216 E_NOT_NUM: { type: "TypeError", number: -2146823287 },
2217 E_INVALID_CALL_ARG: { type: "TypeError", number: -2146828283 },
2218 E_NOT_FUNC: { type: "TypeError", number: -2146823286 },
2219 E_OBJECT_EXPECTED: { type: "TypeError", number: -2146823281 },
2220 E_OBJECT_REQUIRED: { type: "TypeError", number: -2146827864 },
2221 E_UNSUPPORTED_ACTION: { type: "TypeError", number: -2146827843 },
2222 E_NOT_VBARRAY: { type: "TypeError", number: -2146823275 },
2223 E_INVALID_DELETE: { type: "TypeError", number: -2146823276 },
2224 E_UNDEFINED: { type: "TypeError", number: -2146823279 },
2225 E_JSCRIPT_EXPECTED: { type: "TypeError", number: -2146823274 },
2226 E_NOT_ARRAY: { type: "TypeError", number: -2146823257 },
2227
2228 E_SYNTAX_ERROR: { type: "SyntaxError", number: -2146827286 },
2229 E_LBRACKET: { type: "SyntaxError", number: -2146827283 },
2230 E_RBRACKET: { type: "SyntaxError", number: -2146827282 },
2231 E_SEMICOLON: { type: "SyntaxError", number: -2146827284 },
2232 E_UNTERMINATED_STR: { type: "SyntaxError", number: -2146827273 },
2233 E_DISABLED_CC: { type: "SyntaxError", number: -2146827258 },
2234 E_INVALID_BREAK: { type: "SyntaxError", number: -2146827269 },
2235 E_INVALID_CONTINUE: { type: "SyntaxError", number: -2146827268 },
2236 E_LABEL_NOT_FOUND: { type: "SyntaxError", number: -2146827262 },
2237 E_LABEL_REDEFINED: { type: "SyntaxError", number: -2146827263 },
2238 E_MISPLACED_RETURN: { type: "SyntaxError", number: -2146827270 },
2239
2240 E_ILLEGAL_ASSIGN: { type: "ReferenceError", number: -2146823280 },
2241
2242 E_PRECISION_OUT_OF_RANGE: {type: "RangeError", number: -2146823261 },
2243 E_FRACTION_DIGITS_OUT_OF_RANGE: {type: "RangeError", number: -2146823262 },
2244 E_SUBSCRIPT_OUT_OF_RANGE: {type: "RangeError", number: -2146828279 },
2245
2246 E_REGEXP_SYNTAX_ERROR: { type: "RegExpError", number: -2146823271 },
2247
2248 E_URI_INVALID_CHAR: { type: "URIError", number: -2146823264 },
2249 E_URI_INVALID_CODING: { type: "URIError", number: -2146823263 }
2250 };
2251
2252 function testException(func, id) {
2253 var ex = exception_array[id];
2254 var ret = "", num = "";
2255
2256 try {
2257 func();
2258 } catch(e) {
2259 ret = e.name;
2260 num = e.number;
2261 }
2262
2263 ok(ret === ex.type, "Exception test, ret = " + ret + ", expected " + ex.type +". Executed function: " + func.toString());
2264 ok(num === ex.number, "Exception test, num = " + num + ", expected " + ex.number + ". Executed function: " + func.toString());
2265 }
2266
2267 // RangeError tests
2268 testException(function() {Array(-3);}, "E_INVALID_LENGTH");
2269 testException(function() {createArray().lbound("aaa");}, "E_SUBSCRIPT_OUT_OF_RANGE");
2270 testException(function() {createArray().lbound(3);}, "E_SUBSCRIPT_OUT_OF_RANGE");
2271 testException(function() {createArray().getItem(3);}, "E_SUBSCRIPT_OUT_OF_RANGE");
2272
2273 // TypeError tests
2274 testException(function() {date.setTime();}, "E_ARG_NOT_OPT");
2275 testException(function() {date.setYear();}, "E_ARG_NOT_OPT");
2276 testException(function() {arr.test();}, "E_NO_PROPERTY");
2277 testException(function() {Number.prototype.toString.call(arr);}, "E_NOT_NUM");
2278 testException(function() {Number.prototype.toFixed.call(arr);}, "E_NOT_NUM");
2279 testException(function() {(new Number(3)).toString(1);}, "E_INVALID_CALL_ARG");
2280 testException(function() {(new Number(3)).toFixed(21);}, "E_FRACTION_DIGITS_OUT_OF_RANGE");
2281 testException(function() {(new Number(1)).toPrecision(0);}, "E_PRECISION_OUT_OF_RANGE");
2282 testException(function() {not_existing_variable.something();}, "E_UNDEFINED");
2283 testException(function() {date();}, "E_NOT_FUNC");
2284 testException(function() {arr();}, "E_NOT_FUNC");
2285 testException(function() {(new Object) instanceof (new Object);}, "E_NOT_FUNC");
2286 testException(function() {eval("nonexistingfunc()")}, "E_OBJECT_EXPECTED");
2287 testException(function() {(new Object()) instanceof 3;}, "E_NOT_FUNC");
2288 testException(function() {(new Object()) instanceof null;}, "E_NOT_FUNC");
2289 testException(function() {(new Object()) instanceof nullDisp;}, "E_NOT_FUNC");
2290 testException(function() {"test" in 3;}, "E_OBJECT_EXPECTED");
2291 testException(function() {"test" in null;}, "E_OBJECT_EXPECTED");
2292 testException(function() {"test" in nullDisp;}, "E_OBJECT_EXPECTED");
2293 testException(function() {new 3;}, "E_UNSUPPORTED_ACTION");
2294 testException(function() {new null;}, "E_OBJECT_EXPECTED");
2295 testException(function() {new nullDisp;}, "E_NO_PROPERTY");
2296 testException(function() {new VBArray();}, "E_NOT_VBARRAY");
2297 testException(function() {new VBArray(new VBArray(createArray()));}, "E_NOT_VBARRAY");
2298 testException(function() {VBArray.prototype.lbound.call(new Object());}, "E_NOT_VBARRAY");
2299 testException(function() {+nullDisp.prop;}, "E_OBJECT_REQUIRED");
2300 testException(function() {+nullDisp["prop"];}, "E_OBJECT_REQUIRED");
2301 testException(function() {delete (new Object());}, "E_INVALID_DELETE");
2302 testException(function() {delete false;}, "E_INVALID_DELETE");
2303 testException(function() {undefined.toString();}, "E_OBJECT_EXPECTED");
2304 testException(function() {null.toString();}, "E_OBJECT_EXPECTED");
2305
2306 obj = new Object();
2307 obj.prop = 1;
2308 tmp = false;
2309 testException(function() {delete ((tmp = true) ? obj.prop : obj.prop);}, "E_INVALID_DELETE");
2310 ok(tmp, "delete (..) expression not evaluated");
2311
2312 //FIXME: testException(function() {nonexistent++;}, "E_OBJECT_EXPECTED");
2313 //FIXME: testException(function() {undefined.nonexistent++;}, "E_OBJECT_EXPECTED");
2314
2315
2316 // SyntaxError tests
2317 function testSyntaxError(code, id) {
2318 var ex = exception_array[id];
2319 var ret = "", num = "";
2320
2321 try {
2322 eval(code);
2323 } catch(e) {
2324 ret = e.name;
2325 num = e.number;
2326 }
2327
2328 ok(ret === ex.type, "Syntax exception test, ret = " + ret + ", expected " + ex.type +". Executed code: " + code);
2329 ok(num === ex.number, "Syntax exception test, num = " + num + ", expected " + ex.number + ". Executed code: " + code);
2330 }
2331
2332 testSyntaxError("for(i=0;) {}", "E_SYNTAX_ERROR");
2333 testSyntaxError("function {};", "E_LBRACKET");
2334 testSyntaxError("if", "E_LBRACKET");
2335 testSyntaxError("do i=0; while", "E_LBRACKET");
2336 testSyntaxError("while", "E_LBRACKET");
2337 testSyntaxError("for", "E_LBRACKET");
2338 testSyntaxError("with", "E_LBRACKET");
2339 testSyntaxError("switch", "E_LBRACKET");
2340 testSyntaxError("if(false", "E_RBRACKET");
2341 testSyntaxError("for(i=0; i<10; i++", "E_RBRACKET");
2342 testSyntaxError("while(true", "E_RBRACKET");
2343 testSyntaxError("for(i=0", "E_SEMICOLON");
2344 testSyntaxError("for(i=0;i<10", "E_SEMICOLON");
2345 testSyntaxError("while(", "E_SYNTAX_ERROR");
2346 testSyntaxError("if(", "E_SYNTAX_ERROR");
2347 testSyntaxError("'unterminated", "E_UNTERMINATED_STR");
2348 testSyntaxError("*", "E_SYNTAX_ERROR");
2349 testSyntaxError("@_jscript_version", "E_DISABLED_CC");
2350 testSyntaxError("@a", "E_DISABLED_CC");
2351 testSyntaxError("/* @cc_on @*/ @_jscript_version", "E_DISABLED_CC");
2352 testSyntaxError("ok(false, 'unexpected execution'); break;", "E_INVALID_BREAK");
2353 testSyntaxError("ok(false, 'unexpected execution'); continue;", "E_INVALID_CONTINUE");
2354 testSyntaxError("ok(false, 'unexpected execution'); while(true) break unknown_label;", "E_LABEL_NOT_FOUND");
2355 testSyntaxError("ok(false, 'unexpected execution'); some_label: continue some_label;", "E_INVALID_CONTINUE");
2356 testSyntaxError("ok(false, 'unexpected execution'); while(true) continue some_label;", "E_LABEL_NOT_FOUND");
2357 testSyntaxError("ok(false, 'unexpected execution'); some_label: { while(true) continue some_label; }", "E_INVALID_CONTINUE");
2358 testSyntaxError("ok(false, 'unexpected execution'); some_label: { some_label: while(true); }", "E_LABEL_REDEFINED");
2359 testSyntaxError("return;", "E_MISPLACED_RETURN");
2360
2361 // ReferenceError tests
2362 testException(function() {test = function() {}}, "E_ILLEGAL_ASSIGN");
2363
2364 tmp = false;
2365 testException(function() {test = (tmp = true);}, "E_ILLEGAL_ASSIGN");
2366 ok(tmp, "expr value on invalid assign not evaluated");
2367
2368 tmp = false;
2369 testException(function() {(tmp = true) = false;}, "E_ILLEGAL_ASSIGN");
2370 ok(tmp, "expr assign not evaluated");
2371
2372 tmp = false;
2373 testException(function() {true = (tmp = true);}, "E_ILLEGAL_ASSIGN");
2374 ok(tmp, "expr value assign not evaluated");
2375
2376 tmp = "";
2377 testException(function() {(tmp = tmp+"1") = (tmp = tmp+"2");}, "E_ILLEGAL_ASSIGN");
2378 ok(tmp === "12", "assign evaluated in unexpected order");
2379
2380 tmp = false;
2381 testException(function() { ((tmp = true) && false)++; }, "E_ILLEGAL_ASSIGN")
2382 ok(tmp, "incremented expression not evaluated");
2383
2384 // RegExpError tests
2385 testException(function() {RegExp(/a/, "g");}, "E_REGEXP_SYNTAX_ERROR");
2386
2387 // URIError tests
2388 testException(function() {encodeURI('\udcaa');}, "E_URI_INVALID_CHAR");
2389 testException(function() {encodeURIComponent('\udcaa');}, "E_URI_INVALID_CHAR");
2390 testException(function() {decodeURI('%');}, "E_URI_INVALID_CODING");
2391 testException(function() {decodeURI('%aaaa');}, "E_URI_INVALID_CODING");
2392
2393 function testThisExcept(func, e) {
2394 testException(function() {func.call(new Object())}, e);
2395 }
2396
2397 function testBoolThis(func) {
2398 testThisExcept(Boolean.prototype[func], "E_NOT_BOOL");
2399 }
2400
2401 testBoolThis("toString");
2402 testBoolThis("valueOf");
2403
2404 function testDateThis(func) {
2405 testThisExcept(Date.prototype[func], "E_NOT_DATE");
2406 }
2407
2408 testDateThis("getDate");
2409 testDateThis("getDay");
2410 testDateThis("getFullYear");
2411 testDateThis("getHours");
2412 testDateThis("getMilliseconds");
2413 testDateThis("getMinutes");
2414 testDateThis("getMonth");
2415 testDateThis("getSeconds");
2416 testDateThis("getTime");
2417 testDateThis("getTimezoneOffset");
2418 testDateThis("getUTCDate");
2419 testDateThis("getUTCDay");
2420 testDateThis("getUTCFullYear");
2421 testDateThis("getUTCHours");
2422 testDateThis("getUTCMilliseconds");
2423 testDateThis("getUTCMinutes");
2424 testDateThis("getUTCMonth");
2425 testDateThis("getUTCSeconds");
2426 testDateThis("getYear");
2427 testDateThis("setDate");
2428 testDateThis("setFullYear");
2429 testDateThis("setHours");
2430 testDateThis("setMilliseconds");
2431 testDateThis("setMinutes");
2432 testDateThis("setMonth");
2433 testDateThis("setSeconds");
2434 testDateThis("setTime");
2435 testDateThis("setUTCDate");
2436 testDateThis("setUTCFullYear");
2437 testDateThis("setUTCHours");
2438 testDateThis("setUTCMilliseconds");
2439 testDateThis("setUTCMinutes");
2440 testDateThis("setUTCMonth");
2441 testDateThis("setUTCSeconds");
2442 testDateThis("setYear");
2443 testDateThis("toDateString");
2444 testDateThis("toLocaleDateString");
2445 testDateThis("toLocaleString");
2446 testDateThis("toLocaleTimeString");
2447 testDateThis("toString");
2448 testDateThis("toTimeString");
2449 testDateThis("toUTCString");
2450 testDateThis("valueOf");
2451
2452 function testArrayThis(func) {
2453 testThisExcept(Array.prototype[func], "E_NOT_ARRAY");
2454 }
2455
2456 testArrayThis("toString");
2457
2458 function testFunctionThis(func) {
2459 testThisExcept(Function.prototype[func], "E_NOT_FUNC");
2460 }
2461
2462 testFunctionThis("toString");
2463 testFunctionThis("call");
2464 testFunctionThis("apply");
2465
2466 function testArrayHostThis(func) {
2467 testException(function() { Array.prototype[func].call(testObj); }, "E_JSCRIPT_EXPECTED");
2468 }
2469
2470 testArrayHostThis("push");
2471 testArrayHostThis("shift");
2472 testArrayHostThis("slice");
2473 testArrayHostThis("splice");
2474 testArrayHostThis("unshift");
2475 testArrayHostThis("reverse");
2476 testArrayHostThis("join");
2477 testArrayHostThis("pop");
2478 testArrayHostThis("sort");
2479
2480 function testObjectInherit(obj, constr, ts, tls, vo) {
2481 ok(obj instanceof Object, "obj is not instance of Object");
2482 ok(obj instanceof constr, "obj is not instance of its constructor");
2483
2484 ok(obj.hasOwnProperty === Object.prototype.hasOwnProperty,
2485 "obj.hasOwnProperty !== Object.prototype.hasOwnProprty");
2486 ok(obj.isPrototypeOf === Object.prototype.isPrototypeOf,
2487 "obj.isPrototypeOf !== Object.prototype.isPrototypeOf");
2488 ok(obj.propertyIsEnumerable === Object.prototype.propertyIsEnumerable,
2489 "obj.propertyIsEnumerable !== Object.prototype.propertyIsEnumerable");
2490
2491 if(ts)
2492 ok(obj.toString === Object.prototype.toString,
2493 "obj.toString !== Object.prototype.toString");
2494 else
2495 ok(obj.toString != Object.prototype.toString,
2496 "obj.toString == Object.prototype.toString");
2497
2498 if(tls)
2499 ok(obj.toLocaleString === Object.prototype.toLocaleString,
2500 "obj.toLocaleString !== Object.prototype.toLocaleString");
2501 else
2502 ok(obj.toLocaleString != Object.prototype.toLocaleString,
2503 "obj.toLocaleString == Object.prototype.toLocaleString");
2504
2505 if(vo)
2506 ok(obj.valueOf === Object.prototype.valueOf,
2507 "obj.valueOf !== Object.prototype.valueOf");
2508 else
2509 ok(obj.valueOf != Object.prototype.valueOf,
2510 "obj.valueOf == Object.prototype.valueOf");
2511
2512 ok(obj._test === "test", "obj.test = " + obj._test);
2513 }
2514
2515 Object.prototype._test = "test";
2516 testObjectInherit(new String("test"), String, false, true, false);
2517 testObjectInherit(/test/g, RegExp, false, true, true);
2518 testObjectInherit(new Number(1), Number, false, false, false);
2519 testObjectInherit(new Date(), Date, false, false, false);
2520 testObjectInherit(new Boolean(true), Boolean, false, true, false);
2521 testObjectInherit(new Array(), Array, false, false, true);
2522 testObjectInherit(new Error(), Error, false, true, true);
2523 testObjectInherit(testObjectInherit, Function, false, true, true);
2524 testObjectInherit(Math, Object, true, true, true);
2525
2526 (function() { testObjectInherit(arguments, Object, true, true, true); })();
2527
2528 function testFunctions(obj, arr) {
2529 var l;
2530
2531 for(var i=0; i<arr.length; i++) {
2532 l = obj[arr[i][0]].length;
2533 ok(l === arr[i][1], arr[i][0] + ".length = " + l);
2534
2535 ok(obj.propertyIsEnumerable(arr[i][0]) === false, arr[i][0] + " is enumerable");
2536 }
2537 }
2538
2539 testFunctions(Boolean.prototype, [
2540 ["valueOf", 0],
2541 ["toString", 0]
2542 ]);
2543
2544 testFunctions(Number.prototype, [
2545 ["valueOf", 0],
2546 ["toString", 1],
2547 ["toExponential", 1],
2548 ["toLocaleString", 0],
2549 ["toPrecision", 1]
2550 ]);
2551
2552 testFunctions(String.prototype, [
2553 ["valueOf", 0],
2554 ["toString", 0],
2555 ["anchor", 1],
2556 ["big", 0],
2557 ["blink", 0],
2558 ["bold", 0],
2559 ["charAt", 1],
2560 ["charCodeAt", 1],
2561 ["concat", 1],
2562 ["fixed", 0],
2563 ["fontcolor", 1],
2564 ["fontsize", 1],
2565 ["indexOf", 2],
2566 ["italics", 0],
2567 ["lastIndexOf", 2],
2568 ["link", 1],
2569 ["localeCompare", 1],
2570 ["match", 1],
2571 ["replace", 1],
2572 ["search", 0],
2573 ["slice", 0],
2574 ["small", 0],
2575 ["split", 2],
2576 ["strike", 0],
2577 ["sub", 0],
2578 ["substr", 2],
2579 ["substring", 2],
2580 ["sup", 0],
2581 ["toLocaleLowerCase", 0],
2582 ["toLocaleUpperCase", 0],
2583 ["toLowerCase", 0],
2584 ["toUpperCase", 0]
2585 ]);
2586
2587 testFunctions(RegExp.prototype, [
2588 ["toString", 0],
2589 ["exec", 1],
2590 ["test", 1]
2591 ]);
2592
2593 testFunctions(Date.prototype, [
2594 ["getDate", 0],
2595 ["getDay", 0],
2596 ["getFullYear", 0],
2597 ["getHours", 0],
2598 ["getMilliseconds", 0],
2599 ["getMinutes", 0],
2600 ["getMonth", 0],
2601 ["getSeconds", 0],
2602 ["getTime", 0],
2603 ["getTimezoneOffset", 0],
2604 ["getUTCDate", 0],
2605 ["getUTCDay", 0],
2606 ["getUTCFullYear", 0],
2607 ["getUTCHours", 0],
2608 ["getUTCMilliseconds", 0],
2609 ["getUTCMinutes", 0],
2610 ["getUTCMonth", 0],
2611 ["getUTCSeconds", 0],
2612 ["getYear", 0],
2613 ["setDate", 1],
2614 ["setFullYear", 3],
2615 ["setHours", 4],
2616 ["setMilliseconds", 1],
2617 ["setMinutes", 3],
2618 ["setMonth", 2],
2619 ["setSeconds", 2],
2620 ["setTime", 1],
2621 ["setUTCDate", 1],
2622 ["setUTCFullYear", 3],
2623 ["setUTCHours", 4],
2624 ["setUTCMilliseconds", 1],
2625 ["setUTCMinutes", 3],
2626 ["setUTCMonth", 2],
2627 ["setUTCSeconds", 2],
2628 ["setYear", 1],
2629 ["toDateString", 0],
2630 ["toLocaleDateString", 0],
2631 ["toLocaleString", 0],
2632 ["toLocaleTimeString", 0],
2633 ["toString", 0],
2634 ["toTimeString", 0],
2635 ["toUTCString", 0],
2636 ["toGMTString", 0],
2637 ["valueOf", 0]
2638 ]);
2639
2640 testFunctions(Array.prototype, [
2641 ["concat", 1],
2642 ["join", 1],
2643 ["push", 1],
2644 ["pop", 0],
2645 ["reverse", 0],
2646 ["shift", 0],
2647 ["slice", 2],
2648 ["sort", 1],
2649 ["splice", 2],
2650 ["toLocaleString", 0],
2651 ["toString", 0],
2652 ["unshift", 1]
2653 ]);
2654
2655 testFunctions(Error.prototype, [
2656 ["toString", 0]
2657 ]);
2658
2659 testFunctions(Math, [
2660 ["abs", 1],
2661 ["acos", 1],
2662 ["asin", 1],
2663 ["atan", 1],
2664 ["atan2", 2],
2665 ["ceil", 1],
2666 ["cos", 1],
2667 ["exp", 1],
2668 ["floor", 1],
2669 ["log", 1],
2670 ["max", 2],
2671 ["min", 2],
2672 ["pow", 2],
2673 ["random", 0],
2674 ["round", 1],
2675 ["sin", 1],
2676 ["sqrt", 1],
2677 ["tan", 1]
2678 ]);
2679
2680 testFunctions(Object.prototype, [
2681 ["hasOwnProperty", 1],
2682 ["isPrototypeOf", 1],
2683 ["propertyIsEnumerable", 1],
2684 ["toLocaleString", 0],
2685 ["toString", 0],
2686 ["valueOf", 0]
2687 ]);
2688
2689 testFunctions(Function.prototype, [
2690 ["apply", 2],
2691 ["call", 1],
2692 ["toString", 0]
2693 ]);
2694
2695 testFunctions(VBArray.prototype, [
2696 ["dimensions", 0],
2697 ["getItem", 1],
2698 ["lbound", 0],
2699 ["toArray", 0],
2700 ["ubound", 0]
2701 ]);
2702
2703 ok(ActiveXObject.length == 1, "ActiveXObject.length = " + ActiveXObject.length);
2704 ok(Array.length == 1, "Array.length = " + Array.length);
2705 ok(Boolean.length == 1, "Boolean.length = " + Boolean.length);
2706 ok(CollectGarbage.length == 0, "CollectGarbage.length = " + CollectGarbage.length);
2707 ok(Date.length == 7, "Date.length = " + Date.length);
2708 ok(Enumerator.length == 7, "Enumerator.length = " + Enumerator.length);
2709 ok(Error.length == 1, "Error.length = " + Error.length);
2710 ok(EvalError.length == 1, "EvalError.length = " + EvalError.length);
2711 ok(RegExpError.length == 1, "RegExpError.length = " + RegExpError.length);
2712 ok(Function.length == 1, "Function.length = " + Function.length);
2713 ok(GetObject.length == 2, "GetObject.length = " + GetObject.length);
2714 ok(Number.length == 1, "Number.length = " + Number.length);
2715 ok(Object.length == 0, "Object.length = " + Object.length);
2716 ok(RangeError.length == 1, "RangeError.length = " + RangeError.length);
2717 ok(ReferenceError.length == 1, "ReferenceError.length = " + ReferenceError.length);
2718 ok(RegExp.length == 2, "RegExp.length = " + RegExp.length);
2719 ok(ScriptEngine.length == 0, "ScriptEngine.length = " + ScriptEngine.length);
2720 ok(ScriptEngineBuildVersion.length == 0,
2721 "ScriptEngineBuildVersion.length = " + ScriptEngineBuildVersion.length);
2722 ok(ScriptEngineMajorVersion.length == 0,
2723 "ScriptEngineMajorVersion.length = " + ScriptEngineMajorVersion.length);
2724 ok(ScriptEngineMinorVersion.length == 0,
2725 "ScriptEngineMinorVersion.length = " + ScriptEngineMinorVersion.length);
2726 ok(String.length == 1, "String.length = " + String.length);
2727 ok(SyntaxError.length == 1, "SyntaxError.length = " + SyntaxError.length);
2728 ok(TypeError.length == 1, "TypeError.length = " + TypeError.length);
2729 ok(URIError.length == 1, "URIError.length = " + URIError.length);
2730 ok(VBArray.length == 1, "VBArray.length = " + VBArray.length);
2731 ok(decodeURI.length == 1, "decodeURI.length = " + decodeURI.length);
2732 ok(decodeURIComponent.length == 1, "decodeURIComponent.length = " + decodeURIComponent.length);
2733 ok(encodeURI.length == 1, "encodeURI.length = " + encodeURI.length);
2734 ok(encodeURIComponent.length == 1, "encodeURIComponent.length = " + encodeURIComponent.length);
2735 ok(escape.length == 1, "escape.length = " + escape.length);
2736 ok(eval.length == 1, "eval.length = " + eval.length);
2737 ok(isFinite.length == 1, "isFinite.length = " + isFinite.length);
2738 ok(isNaN.length == 1, "isNaN.length = " + isNaN.length);
2739 ok(parseFloat.length == 1, "parseFloat.length = " + parseFloat.length);
2740 ok(parseInt.length == 2, "parseInt.length = " + parseInt.length);
2741 ok(unescape.length == 1, "unescape.length = " + unescape.length);
2742
2743 String.length = 3;
2744 ok(String.length == 1, "String.length = " + String.length);
2745
2746 var tmp = createArray();
2747 ok(getVT(tmp) == "VT_ARRAY|VT_VARIANT", "getVT(createArray()) = " + getVT(tmp));
2748 ok(getVT(VBArray(tmp)) == "VT_ARRAY|VT_VARIANT", "getVT(VBArray(tmp)) = " + getVT(VBArray(tmp)));
2749 tmp = new VBArray(tmp);
2750 tmp = new VBArray(VBArray(createArray()));
2751 ok(tmp.dimensions() == 2, "tmp.dimensions() = " + tmp.dimensions());
2752 ok(tmp.lbound() == 0, "tmp.lbound() = " + tmp.lbound());
2753 ok(tmp.lbound(1) == 0, "tmp.lbound(1) = " + tmp.lbound(1));
2754 ok(tmp.lbound(2, 1) == 2, "tmp.lbound(2, 1) = " + tmp.lbound(2, 1));
2755 ok(tmp.ubound() == 4, "tmp.ubound() = " + tmp.ubound());
2756 ok(tmp.ubound("2") == 3, "tmp.ubound(\"2\") = " + tmp.ubound("2"));
2757 ok(tmp.getItem(1, 2) == 3, "tmp.getItem(1, 2) = " + tmp.getItem(1, 2));
2758 ok(tmp.getItem(2, 3) == 33, "tmp.getItem(2, 3) = " + tmp.getItem(2, 3));
2759 ok(tmp.getItem(3, 2) == 13, "tmp.getItem(3, 2) = " + tmp.getItem(3, 2));
2760 ok(tmp.toArray() == "2,3,12,13,22,23,32,33,42,43", "tmp.toArray() = " + tmp.toArray());
2761 ok(createArray().toArray() == "2,3,12,13,22,23,32,33,42,43",
2762 "createArray.toArray()=" + createArray().toArray());
2763
2764 reportSuccess();