]> git.saurik.com Git - apple/javascriptcore.git/blame - API/tests/testapi.js
JavaScriptCore-903.5.tar.gz
[apple/javascriptcore.git] / API / tests / testapi.js
CommitLineData
b37bf2e1
A
1/*
2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
ba379fdc
A
26function bludgeonArguments() { if (0) arguments; return function g() {} }
27h = bludgeonArguments();
28gc();
29
30var failed = false;
31function pass(msg)
32{
33 print("PASS: " + msg, "green");
34}
35
36function fail(msg)
37{
38 print("FAIL: " + msg, "red");
39 failed = true;
40}
41
b37bf2e1
A
42function shouldBe(a, b)
43{
44 var evalA;
45 try {
46 evalA = eval(a);
47 } catch(e) {
48 evalA = e;
49 }
50
51 if (evalA == b || isNaN(evalA) && typeof evalA == 'number' && isNaN(b) && typeof b == 'number')
ba379fdc 52 pass(a + " should be " + b + " and is.");
b37bf2e1 53 else
ba379fdc 54 fail(a + " should be " + b + " but instead is " + evalA + ".");
b37bf2e1
A
55}
56
57function shouldThrow(a)
58{
b37bf2e1
A
59 var evalA;
60 try {
61 eval(a);
62 } catch(e) {
ba379fdc
A
63 pass(a + " threw: " + e);
64 return;
b37bf2e1 65 }
ba379fdc
A
66
67 fail(a + " did not throw an exception.");
b37bf2e1
A
68}
69
70function globalStaticFunction()
71{
72 return 4;
73}
74
75shouldBe("globalStaticValue", 3);
76shouldBe("globalStaticFunction()", 4);
77
78shouldBe("typeof MyObject", "function"); // our object implements 'call'
79MyObject.cantFind = 1;
80shouldBe("MyObject.cantFind", undefined);
81MyObject.regularType = 1;
82shouldBe("MyObject.regularType", 1);
83MyObject.alwaysOne = 2;
84shouldBe("MyObject.alwaysOne", 1);
85MyObject.cantDelete = 1;
86delete MyObject.cantDelete;
87shouldBe("MyObject.cantDelete", 1);
ba379fdc 88shouldBe("delete MyObject.throwOnDelete", "an exception");
b37bf2e1
A
89MyObject.cantSet = 1;
90shouldBe("MyObject.cantSet", undefined);
ba379fdc
A
91shouldBe("MyObject.throwOnGet", "an exception");
92shouldBe("MyObject.throwOnSet = 5", "an exception");
93shouldBe("MyObject('throwOnCall')", "an exception");
94shouldBe("new MyObject('throwOnConstruct')", "an exception");
95shouldBe("'throwOnHasInstance' instanceof MyObject", "an exception");
b37bf2e1 96
14957cd0
A
97MyObject.nullGetForwardSet = 1;
98shouldBe("MyObject.nullGetForwardSet", 1);
99
b37bf2e1
A
100var foundMyPropertyName = false;
101var foundRegularType = false;
102for (var p in MyObject) {
103 if (p == "myPropertyName")
104 foundMyPropertyName = true;
105 if (p == "regularType")
106 foundRegularType = true;
107}
ba379fdc
A
108
109if (foundMyPropertyName)
110 pass("MyObject.myPropertyName was enumerated");
111else
112 fail("MyObject.myPropertyName was not enumerated");
113
114if (foundRegularType)
115 pass("MyObject.regularType was enumerated");
116else
117 fail("MyObject.regularType was not enumerated");
b37bf2e1 118
f9bf01c6
A
119var alwaysOneDescriptor = Object.getOwnPropertyDescriptor(MyObject, "alwaysOne");
120shouldBe('typeof alwaysOneDescriptor', "object");
121shouldBe('alwaysOneDescriptor.value', MyObject.alwaysOne);
122shouldBe('alwaysOneDescriptor.configurable', true);
123shouldBe('alwaysOneDescriptor.enumerable', false); // Actually it is.
124var cantFindDescriptor = Object.getOwnPropertyDescriptor(MyObject, "cantFind");
125shouldBe('typeof cantFindDescriptor', "object");
126shouldBe('cantFindDescriptor.value', MyObject.cantFind);
127shouldBe('cantFindDescriptor.configurable', true);
128shouldBe('cantFindDescriptor.enumerable', false);
129try {
130 // If getOwnPropertyDescriptor() returned an access descriptor, this wouldn't throw.
131 Object.getOwnPropertyDescriptor(MyObject, "throwOnGet");
132} catch (e) {
133 pass("getting property descriptor of throwOnGet threw exception");
134}
135var myPropertyNameDescriptor = Object.getOwnPropertyDescriptor(MyObject, "myPropertyName");
136shouldBe('typeof myPropertyNameDescriptor', "object");
137shouldBe('myPropertyNameDescriptor.value', MyObject.myPropertyName);
138shouldBe('myPropertyNameDescriptor.configurable', true);
139shouldBe('myPropertyNameDescriptor.enumerable', false); // Actually it is.
140try {
141 // if getOwnPropertyDescriptor() returned an access descriptor, this wouldn't throw.
142 Object.getOwnPropertyDescriptor(MyObject, "hasPropertyLie");
143} catch (e) {
144 pass("getting property descriptor of hasPropertyLie threw exception");
145}
146shouldBe('Object.getOwnPropertyDescriptor(MyObject, "doesNotExist")', undefined);
147
b37bf2e1
A
148myObject = new MyObject();
149
150shouldBe("delete MyObject.regularType", true);
151shouldBe("MyObject.regularType", undefined);
152shouldBe("MyObject(0)", 1);
153shouldBe("MyObject()", undefined);
154shouldBe("typeof myObject", "object");
155shouldBe("MyObject ? 1 : 0", true); // toBoolean
156shouldBe("+MyObject", 1); // toNumber
157shouldBe("(MyObject.toString())", "[object MyObject]"); // toString
9dae56ea 158shouldBe("String(MyObject)", "MyObjectAsString"); // type conversion to string
ba379fdc 159shouldBe("MyObject - 0", 1); // toNumber
b37bf2e1
A
160
161shouldBe("typeof MyConstructor", "object");
162constructedObject = new MyConstructor(1);
163shouldBe("typeof constructedObject", "object");
164shouldBe("constructedObject.value", 1);
165shouldBe("myObject instanceof MyObject", true);
166shouldBe("(new Object()) instanceof MyObject", false);
167
14957cd0
A
168MyObject.nullGetSet = 1;
169shouldBe("MyObject.nullGetSet", 1);
b37bf2e1
A
170shouldThrow("MyObject.nullCall()");
171shouldThrow("MyObject.hasPropertyLie");
172
173derived = new Derived();
174
f9bf01c6
A
175shouldBe("derived instanceof Derived", true);
176shouldBe("derived instanceof Base", true);
177
b37bf2e1
A
178// base properties and functions return 1 when called/gotten; derived, 2
179shouldBe("derived.baseProtoDup()", 2);
180shouldBe("derived.baseProto()", 1);
181shouldBe("derived.baseDup", 2);
182shouldBe("derived.baseOnly", 1);
183shouldBe("derived.protoOnly()", 2);
184shouldBe("derived.protoDup", 2);
185shouldBe("derived.derivedOnly", 2)
186
187// base properties throw 1 when set; derived, 2
188shouldBe("derived.baseDup = 0", 2);
189shouldBe("derived.baseOnly = 0", 1);
190shouldBe("derived.derivedOnly = 0", 2)
191shouldBe("derived.protoDup = 0", 2);
ba379fdc 192
f9bf01c6
A
193derived2 = new Derived2();
194
195shouldBe("derived2 instanceof Derived2", true);
196shouldBe("derived2 instanceof Derived", true);
197shouldBe("derived2 instanceof Base", true);
198
199// base properties and functions return 1 when called/gotten; derived, 2
200shouldBe("derived2.baseProtoDup()", 2);
201shouldBe("derived2.baseProto()", 1);
202shouldBe("derived2.baseDup", 2);
203shouldBe("derived2.baseOnly", 1);
204shouldBe("derived2.protoOnly()", 2);
205shouldBe("derived2.protoDup", 2);
206shouldBe("derived2.derivedOnly", 2)
207
208// base properties throw 1 when set; derived, 2
209shouldBe("derived2.baseDup = 0", 2);
210shouldBe("derived2.baseOnly = 0", 1);
211shouldBe("derived2.derivedOnly = 0", 2)
212shouldBe("derived2.protoDup = 0", 2);
213
214shouldBe('Object.getOwnPropertyDescriptor(derived, "baseProto")', undefined);
215shouldBe('Object.getOwnPropertyDescriptor(derived, "baseProtoDup")', undefined);
216var baseDupDescriptor = Object.getOwnPropertyDescriptor(derived, "baseDup");
217shouldBe('typeof baseDupDescriptor', "object");
218shouldBe('baseDupDescriptor.value', derived.baseDup);
219shouldBe('baseDupDescriptor.configurable', true);
220shouldBe('baseDupDescriptor.enumerable', false);
221var baseOnlyDescriptor = Object.getOwnPropertyDescriptor(derived, "baseOnly");
222shouldBe('typeof baseOnlyDescriptor', "object");
223shouldBe('baseOnlyDescriptor.value', derived.baseOnly);
224shouldBe('baseOnlyDescriptor.configurable', true);
225shouldBe('baseOnlyDescriptor.enumerable', false);
226shouldBe('Object.getOwnPropertyDescriptor(derived, "protoOnly")', undefined);
227var protoDupDescriptor = Object.getOwnPropertyDescriptor(derived, "protoDup");
228shouldBe('typeof protoDupDescriptor', "object");
229shouldBe('protoDupDescriptor.value', derived.protoDup);
230shouldBe('protoDupDescriptor.configurable', true);
231shouldBe('protoDupDescriptor.enumerable', false);
232var derivedOnlyDescriptor = Object.getOwnPropertyDescriptor(derived, "derivedOnly");
233shouldBe('typeof derivedOnlyDescriptor', "object");
234shouldBe('derivedOnlyDescriptor.value', derived.derivedOnly);
235shouldBe('derivedOnlyDescriptor.configurable', true);
236shouldBe('derivedOnlyDescriptor.enumerable', false);
237
ba379fdc
A
238shouldBe("undefined instanceof MyObject", false);
239EvilExceptionObject.hasInstance = function f() { return f(); };
240EvilExceptionObject.__proto__ = undefined;
241shouldThrow("undefined instanceof EvilExceptionObject");
242EvilExceptionObject.hasInstance = function () { return true; };
243shouldBe("undefined instanceof EvilExceptionObject", true);
244
245EvilExceptionObject.toNumber = function f() { return f(); }
246shouldThrow("EvilExceptionObject*5");
247EvilExceptionObject.toStringExplicit = function f() { return f(); }
248shouldThrow("String(EvilExceptionObject)");
249
250shouldBe("EmptyObject", "[object CallbackObject]");
251
14957cd0
A
252for (var i = 0; i < 6; ++i)
253 PropertyCatchalls.x = i;
254shouldBe("PropertyCatchalls.x", 4);
255
256for (var i = 0; i < 6; ++i)
257 var x = PropertyCatchalls.x;
258shouldBe("x", null);
259
260for (var i = 0; i < 10; ++i) {
261 for (var p in PropertyCatchalls) {
262 if (p == "x")
263 continue;
264 shouldBe("p", i % 10);
265 break;
266 }
267}
268
269PropertyCatchalls.__proto__ = { y: 1 };
270for (var i = 0; i < 6; ++i)
271 var y = PropertyCatchalls.y;
272shouldBe("y", null);
273
274var o = { __proto__: PropertyCatchalls };
275for (var i = 0; i < 6; ++i)
276 var z = PropertyCatchalls.z;
277shouldBe("z", null);
278
ba379fdc
A
279if (failed)
280 throw "Some tests failed";