jscript: Added to_object(VT_BOOL) implementation.
[wine] / dlls / jscript / tests / lang.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;
20
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");
27
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");
36
37 ok(1 !== 2, "1 !== 2 is false");
38 ok(null !== undefined, "null !== undefined is false");
39
40 var trueVar = true;
41 ok(trueVar, "trueVar is not true");
42
43 ok(ScriptEngine.length === 0, "ScriptEngine.length is not 0");
44
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\"");
52
53     return true;
54 }
55
56 ok(testFunc1.length === 2, "testFunc1.length is not 2");
57
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");
67
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");
81
82 ok(testFunc1(true, "test") === true, "testFunc1 not returned true");
83
84 var obj1 = new Object();
85 ok(typeof(obj1) === "object", "typeof(obj1) is not object");
86 obj1.test = true;
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");
92
93     return "test";
94 };
95
96 ok(obj1.func(true) === "test", "obj1.func(true) is not \"test\"");
97
98 function testConstr1() {
99     this.var1 = 1;
100
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");
104
105     return false;
106 }
107
108 testConstr1.prototype.pvar = 1;
109
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");
113
114 testConstr1.prototype.pvar = 2;
115 ok(obj2.pvar === 2, "obj2.pvar is not 2");
116
117 obj2.pvar = 3;
118 testConstr1.prototype.pvar = 1;
119 ok(obj2.pvar === 3, "obj2.pvar is not 3");
120
121 tmp = 0;
122 if(true)
123     tmp = 1;
124 else
125     ok(false, "else evaluated");
126 ok(tmp === 1, "tmp !== 1, if not evaluated?");
127
128 tmp = 0;
129 if(1 === 0)
130     ok(false, "if evaluated");
131 else
132     tmp = 1;
133 ok(tmp === 1, "tmp !== 1, if not evaluated?");
134
135 if(false)
136     ok(false, "if(false) evaluated");
137
138 tmp = 0;
139 if(true)
140     tmp = 1;
141 ok(tmp === 1, "tmp !== 1, if(true) not evaluated?");
142
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\"");
146
147 {
148     var blockVar = 1;
149     blockVar = 2;
150 }
151 ok(blockVar === 2, "blockVar !== 2");
152
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");
155
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");
163
164 tmp = 2+2;
165 ok(tmp === 4, "2+2 !== 4");
166 ok(getVT(tmp) === "VT_I4", "getVT(2+2) !== VT_I4");
167
168 tmp = 2+2.5;
169 ok(tmp === 4.5, "2+2.5 !== 4.5");
170 ok(getVT(tmp) === "VT_R8", "getVT(2+2.5) !== VT_R8");
171
172 tmp = 1.5+2.5;
173 ok(tmp === 4, "1.4+2.5 !== 4");
174 ok(getVT(tmp) === "VT_I4", "getVT(1.5+2.5) !== VT_I4");
175
176 tmp = "ab" + "cd";
177 ok(tmp === "abcd", "\"ab\" + \"cd\" !== \"abcd\"");
178
179 tmp = 1;
180 ok((tmp += 1) === 2, "tmp += 1 !== 2");
181 ok(tmp === 2, "tmp !== 2");
182
183 tmp = 3 || ok(false, "second or expression called");
184 ok(tmp === 3, "3 || (...) is not 3");
185
186 tmp = false || 2;
187 ok(tmp === 2, "false || 2 is not 2");
188
189 tmp = 0 && ok(false, "second and expression called");
190 ok(tmp === 0, "0 && (...) is not 0");
191
192 tmp = true && "test";
193 ok(tmp === "test", "true && \"test\" is not \"test\"");
194
195 tmp = true && 0;
196 ok(tmp === 0, "true && 0 is not 0");
197
198 ok(1 < 3.4, "1 < 3.4 failed");
199 ok(!(3.4 < 1), "3.4 < 1");
200 ok("abc" < "abcd", "abc < abcd failed");
201 ok("abcd" < "abce", "abce < abce failed");
202 ok("" < "x", "\"\" < \"x\" failed");
203 ok(!(0 < 0), "0 < 0");
204
205 ok(1 <= 3.4, "1 <= 3.4 failed");
206 ok(!(3.4 <= 1), "3.4 <= 1");
207 ok("abc" <= "abcd", "abc <= abcd failed");
208 ok("abcd" <= "abce", "abce <= abce failed");
209 ok("" <= "x", "\"\" <= \"x\" failed");
210 ok(0 <= 0, "0 <= 0 failed");
211
212 ok(3.4 > 1, "3.4 > 1 failed");
213 ok(!(1 > 3.4), "1 > 3.4");
214 ok("abcd" > "abc", "abc > abcd failed");
215 ok("abce" > "abcd", "abce > abce failed");
216 ok("x" > "", "\"x\" > \"\" failed");
217 ok(!(0 > 0), "0 > 0");
218
219 ok(3.4 >= 1, "3.4 >= 1 failed");
220 ok(!(1 >= 3.4), "1 >= 3.4");
221 ok("abcd" >= "abc", "abc >= abcd failed");
222 ok("abce" >= "abcd", "abce >= abce failed");
223 ok("x" >= "", "\"x\" >= \"\" failed");
224 ok(0 >= 0, "0 >= 0");
225
226 tmp = 1;
227 ok(++tmp === 2, "++tmp (1) is not 2");
228 ok(tmp === 2, "incremented tmp is not 2");
229 ok(--tmp === 1, "--tmp (2) is not 1");
230 ok(tmp === 1, "decremented tmp is not 1");
231 ok(tmp++ === 1, "tmp++ (1) is not 1");
232 ok(tmp === 2, "incremented tmp(1) is not 2");
233 ok(tmp-- === 2, "tmp-- (2) is not 2");
234 ok(tmp === 1, "decremented tmp is not 1");
235
236 String.prototype.test = true;
237 ok("".test === true, "\"\".test is not true");
238
239 Boolean.prototype.test = true;
240 ok(true.test === true, "true.test is not true");
241
242 var state = "";
243 try {
244     ok(state === "", "try: state = " + state);
245     state = "try";
246 }catch(ex) {
247     ok(false, "unexpected catch");
248 }
249 ok(state === "try", "state = " + state + " expected try");
250
251 state = "";
252 try {
253     ok(state === "", "try: state = " + state);
254     state = "try";
255 }finally {
256     ok(state === "try", "funally: state = " + state);
257     state = "finally";
258 }
259 ok(state === "finally", "state = " + state + " expected finally");
260
261 state = "";
262 try {
263     ok(state === "", "try: state = " + state);
264     state = "try";
265 }catch(ex) {
266     ok(false, "unexpected catch");
267 }finally {
268     ok(state === "try", "funally: state = " + state);
269     state = "finally";
270 }
271 ok(state === "finally", "state = " + state + " expected finally");
272
273 var state = "";
274 try {
275     ok(state === "", "try: state = " + state);
276     state = "try";
277     throw "except";
278 }catch(ex) {
279     ok(state === "try", "catch: state = " + state);
280     ok(ex === "except", "ex is not \"except\"");
281     state = "catch";
282 }
283 ok(state === "catch", "state = " + state + " expected catch");
284
285 var state = "";
286 try {
287     ok(state === "", "try: state = " + state);
288     state = "try";
289     throw true;
290 }catch(ex) {
291     ok(state === "try", "catch: state = " + state);
292     ok(ex === true, "ex is not true");
293     state = "catch";
294 }finally {
295     ok(state === "catch", "funally: state = " + state);
296     state = "finally";
297 }
298 ok(state === "finally", "state = " + state + " expected finally");
299
300 var state = "";
301 try {
302     ok(state === "", "try: state = " + state);
303     state = "try";
304     try { throw true; } finally {}
305 }catch(ex) {
306     ok(state === "try", "catch: state = " + state);
307     ok(ex === true, "ex is not true");
308     state = "catch";
309 }finally {
310     ok(state === "catch", "funally: state = " + state);
311     state = "finally";
312 }
313 ok(state === "finally", "state = " + state + " expected finally");
314
315 var state = "";
316 try {
317     ok(state === "", "try: state = " + state);
318     state = "try";
319     try { throw "except"; } catch(ex) { throw true; }
320 }catch(ex) {
321     ok(state === "try", "catch: state = " + state);
322     ok(ex === true, "ex is not true");
323     state = "catch";
324 }finally {
325     ok(state === "catch", "funally: state = " + state);
326     state = "finally";
327 }
328 ok(state === "finally", "state = " + state + " expected finally");
329
330 function throwFunc(x) {
331     throw x;
332 }
333
334 var state = "";
335 try {
336     ok(state === "", "try: state = " + state);
337     state = "try";
338     throwFunc(true);
339 }catch(ex) {
340     ok(state === "try", "catch: state = " + state);
341     ok(ex === true, "ex is not true");
342     state = "catch";
343 }finally {
344     ok(state === "catch", "funally: state = " + state);
345     state = "finally";
346 }
347 ok(state === "finally", "state = " + state + " expected finally");
348
349 reportSuccess();