2 * Copyright 2008 Jacek Caban for CodeWeavers
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.
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.
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
21 ok(true, "true is not true?");
22 ok(!false, "!false is not true");
23 ok(!undefined, "!undefined is not true");
24 ok(!null, "!null is not true");
25 ok(!0, "!0 is not true");
26 ok(!0.0, "!0.0 is not true");
28 ok(1 === 1, "1 === 1 is false");
29 ok(!(1 === 2), "!(1 === 2) is false");
30 ok(1.0 === 1, "1.0 === 1 is false");
31 ok("abc" === "abc", "\"abc\" === \"abc\" is false");
32 ok(true === true, "true === true is false");
33 ok(null === null, "null === null is false");
34 ok(undefined === undefined, "undefined === undefined is false");
35 ok(!(undefined === null), "!(undefined === null) is false");
37 ok(1 !== 2, "1 !== 2 is false");
38 ok(null !== undefined, "null !== undefined is false");
41 ok(trueVar, "trueVar is not true");
43 ok(ScriptEngine.length === 0, "ScriptEngine.length is not 0");
45 function testFunc1(x, y) {
46 ok(this !== undefined, "this is undefined");
47 ok(x === true, "x is not 1");
48 ok(y === "test", "y is not \"test\"");
49 ok(arguments.length === 2, "arguments.length is not 2");
50 ok(arguments["0"] === true, "arguments[0] is not true");
51 ok(arguments["1"] === "test", "arguments[1] is not \"test\"");
56 ok(testFunc1.length === 2, "testFunc1.length is not 2");
58 ok(Object.prototype !== undefined, "Object.prototype is undefined");
59 ok(Object.prototype.prototype === undefined, "Object.prototype is not undefined");
60 ok(String.prototype !== undefined, "String.prototype is undefined");
61 ok(Array.prototype !== undefined, "Array.prototype is undefined");
62 ok(Boolean.prototype !== undefined, "Boolean.prototype is undefined");
63 ok(Number.prototype !== undefined, "Number.prototype is undefined");
64 ok(RegExp.prototype !== undefined, "RegExp.prototype is undefined");
65 ok(Math !== undefined, "Math is undefined");
66 ok(Math.prototype === undefined, "Math.prototype is not undefined");
68 ok(typeof(0) === "number", "typeof(0) is not number");
69 ok(typeof(1.5) === "number", "typeof(1.5) is not number");
70 ok(typeof("abc") === "string", "typeof(\"abc\") is not string");
71 ok(typeof("") === "string", "typeof(\"\") is not string");
72 ok(typeof(true) === "boolean", "typeof(true) is not boolean");
73 ok(typeof(null) === "object", "typeof(null) is not object");
74 ok(typeof(undefined) === "undefined", "typeof(undefined) is not undefined");
75 ok(typeof(Math) === "object", "typeof(Math) is not object");
76 ok(typeof(String.prototype) === "object", "typeof(String.prototype) is not object");
77 ok(typeof(testFunc1) === "function", "typeof(testFunc1) is not function");
78 ok(typeof(String) === "function", "typeof(String) is not function");
79 ok(typeof(ScriptEngine) === "function", "typeof(ScriptEngine) is not function");
80 ok(typeof(this) === "object", "typeof(this) is not object");
82 ok(testFunc1(true, "test") === true, "testFunc1 not returned true");
84 var obj1 = new Object();
85 ok(typeof(obj1) === "object", "typeof(obj1) is not object");
87 obj1.func = function () {
88 ok(this === obj1, "this is not obj1");
89 ok(this.test === true, "this.test is not true");
90 ok(arguments.length === 1, "arguments.length is not 1");
91 ok(arguments["0"] === true, "arguments[0] is not true");
96 ok(obj1.func(true) === "test", "obj1.func(true) is not \"test\"");
98 function testConstr1() {
101 ok(this !== undefined, "this is undefined");
102 ok(arguments.length === 1, "arguments.length is not 1");
103 ok(arguments["0"] === true, "arguments[0] is not 1");
108 testConstr1.prototype.pvar = 1;
110 var obj2 = new testConstr1(true);
111 ok(typeof(obj2) === "object", "typeof(obj2) is not object");
112 ok(obj2.pvar === 1, "obj2.pvar is not 1");
114 testConstr1.prototype.pvar = 2;
115 ok(obj2.pvar === 2, "obj2.pvar is not 2");
118 testConstr1.prototype.pvar = 1;
119 ok(obj2.pvar === 3, "obj2.pvar is not 3");
125 ok(false, "else evaluated");
126 ok(tmp === 1, "tmp !== 1, if not evaluated?");
130 ok(false, "if evaluated");
133 ok(tmp === 1, "tmp !== 1, if not evaluated?");
136 ok(false, "if(false) evaluated");
141 ok(tmp === 1, "tmp !== 1, if(true) not evaluated?");
143 var obj3 = { prop1: 1, prop2: typeof(false) };
144 ok(obj3.prop1 === 1, "obj3.prop1 is not 1");
145 ok(obj3.prop2 === "boolean", "obj3.prop2 is not \"boolean\"");
151 ok(blockVar === 2, "blockVar !== 2");
153 ok((true ? 1 : 2) === 1, "conditional expression true is not 1");
154 ok((0 === 2 ? 1 : 2) === 2, "conditional expression true is not 2");
156 ok(getVT(undefined) === "VT_EMPTY", "getVT(undefined) is not VT_EMPTY");
157 ok(getVT(null) === "VT_NULL", "getVT(null) is not VT_NULL");
158 ok(getVT(0) === "VT_I4", "getVT(0) is not VT_I4");
159 ok(getVT(0.5) === "VT_R8", "getVT(1.5) is not VT_R8");
160 ok(getVT("test") === "VT_BSTR", "getVT(\"test\") is not VT_BSTR");
161 ok(getVT(Math) === "VT_DISPATCH", "getVT(Math) is not VT_DISPATCH");
162 ok(getVT(false) === "VT_BOOL", "getVT(false) is not VT_BOOL");
165 ok(tmp === 4, "2+2 !== 4");
166 ok(getVT(tmp) === "VT_I4", "getVT(2+2) !== VT_I4");
169 ok(tmp === 4.5, "2+2.5 !== 4.5");
170 ok(getVT(tmp) === "VT_R8", "getVT(2+2.5) !== VT_R8");
173 ok(tmp === 4, "1.4+2.5 !== 4");
174 ok(getVT(tmp) === "VT_I4", "getVT(1.5+2.5) !== VT_I4");
177 ok(tmp === 2, "4-2 !== 2");
178 ok(getVT(tmp) === "VT_I4", "getVT(4-2) !== VT_I4");
181 ok(tmp === 2.5, "4.5-2 !== 2.5");
182 ok(getVT(tmp) === "VT_R8", "getVT(4-2) !== VT_R8");
185 ok(tmp === 6, "2*3 !== 6");
186 ok(getVT(tmp) === "VT_I4", "getVT(2*3) !== VT_I4");
189 ok(tmp === 7, "2*3.5 !== 7");
190 ok(getVT(tmp) === "VT_I4", "getVT(2*3.5) !== VT_I4");
193 ok(tmp === 8.75, "2.5*3.5 !== 8.75");
194 ok(getVT(tmp) === "VT_R8", "getVT(2.5*3.5) !== VT_R8");
197 ok(tmp === "abcd", "\"ab\" + \"cd\" !== \"abcd\"");
200 ok((tmp += 1) === 2, "tmp += 1 !== 2");
201 ok(tmp === 2, "tmp !== 2");
204 ok((tmp -= 1) === 1, "tmp -= 1 !== 1");
205 ok(tmp === 1, "tmp !=== 1");
208 ok((tmp *= 1.5) === 3, "tmp *= 1.5 !== 3");
209 ok(tmp === 3, "tmp !=== 3");
211 tmp = 3 || ok(false, "second or expression called");
212 ok(tmp === 3, "3 || (...) is not 3");
215 ok(tmp === 2, "false || 2 is not 2");
217 tmp = 0 && ok(false, "second and expression called");
218 ok(tmp === 0, "0 && (...) is not 0");
220 tmp = true && "test";
221 ok(tmp === "test", "true && \"test\" is not \"test\"");
224 ok(tmp === 0, "true && 0 is not 0");
226 ok(1 < 3.4, "1 < 3.4 failed");
227 ok(!(3.4 < 1), "3.4 < 1");
228 ok("abc" < "abcd", "abc < abcd failed");
229 ok("abcd" < "abce", "abce < abce failed");
230 ok("" < "x", "\"\" < \"x\" failed");
231 ok(!(0 < 0), "0 < 0");
233 ok(1 <= 3.4, "1 <= 3.4 failed");
234 ok(!(3.4 <= 1), "3.4 <= 1");
235 ok("abc" <= "abcd", "abc <= abcd failed");
236 ok("abcd" <= "abce", "abce <= abce failed");
237 ok("" <= "x", "\"\" <= \"x\" failed");
238 ok(0 <= 0, "0 <= 0 failed");
240 ok(3.4 > 1, "3.4 > 1 failed");
241 ok(!(1 > 3.4), "1 > 3.4");
242 ok("abcd" > "abc", "abc > abcd failed");
243 ok("abce" > "abcd", "abce > abce failed");
244 ok("x" > "", "\"x\" > \"\" failed");
245 ok(!(0 > 0), "0 > 0");
247 ok(3.4 >= 1, "3.4 >= 1 failed");
248 ok(!(1 >= 3.4), "1 >= 3.4");
249 ok("abcd" >= "abc", "abc >= abcd failed");
250 ok("abce" >= "abcd", "abce >= abce failed");
251 ok("x" >= "", "\"x\" >= \"\" failed");
252 ok(0 >= 0, "0 >= 0");
255 ok(++tmp === 2, "++tmp (1) is not 2");
256 ok(tmp === 2, "incremented tmp is not 2");
257 ok(--tmp === 1, "--tmp (2) is not 1");
258 ok(tmp === 1, "decremented tmp is not 1");
259 ok(tmp++ === 1, "tmp++ (1) is not 1");
260 ok(tmp === 2, "incremented tmp(1) is not 2");
261 ok(tmp-- === 2, "tmp-- (2) is not 2");
262 ok(tmp === 1, "decremented tmp is not 1");
264 String.prototype.test = true;
265 ok("".test === true, "\"\".test is not true");
267 Boolean.prototype.test = true;
268 ok(true.test === true, "true.test is not true");
270 Number.prototype.test = true;
271 ok((0).test === true, "(0).test is not true");
272 ok((0.5).test === true, "(0.5).test is not true");
276 ok(state === "", "try: state = " + state);
279 ok(false, "unexpected catch");
281 ok(state === "try", "state = " + state + " expected try");
285 ok(state === "", "try: state = " + state);
288 ok(state === "try", "funally: state = " + state);
291 ok(state === "finally", "state = " + state + " expected finally");
295 ok(state === "", "try: state = " + state);
298 ok(false, "unexpected catch");
300 ok(state === "try", "funally: state = " + state);
303 ok(state === "finally", "state = " + state + " expected finally");
307 ok(state === "", "try: state = " + state);
311 ok(state === "try", "catch: state = " + state);
312 ok(ex === "except", "ex is not \"except\"");
315 ok(state === "catch", "state = " + state + " expected catch");
319 ok(state === "", "try: state = " + state);
323 ok(state === "try", "catch: state = " + state);
324 ok(ex === true, "ex is not true");
327 ok(state === "catch", "funally: state = " + state);
330 ok(state === "finally", "state = " + state + " expected finally");
334 ok(state === "", "try: state = " + state);
336 try { throw true; } finally {}
338 ok(state === "try", "catch: state = " + state);
339 ok(ex === true, "ex is not true");
342 ok(state === "catch", "funally: state = " + state);
345 ok(state === "finally", "state = " + state + " expected finally");
349 ok(state === "", "try: state = " + state);
351 try { throw "except"; } catch(ex) { throw true; }
353 ok(state === "try", "catch: state = " + state);
354 ok(ex === true, "ex is not true");
357 ok(state === "catch", "funally: state = " + state);
360 ok(state === "finally", "state = " + state + " expected finally");
362 function throwFunc(x) {
368 ok(state === "", "try: state = " + state);
372 ok(state === "try", "catch: state = " + state);
373 ok(ex === true, "ex is not true");
376 ok(state === "catch", "funally: state = " + state);
379 ok(state === "finally", "state = " + state + " expected finally");