]>
git.saurik.com Git - apple/javascriptcore.git/blob - API/tests/testapi.js
2 * Copyright (C) 2006 Apple Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
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.
13 * THIS SOFTWARE IS PROVIDED BY APPLE 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 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.
26 function bludgeonArguments() { if (0) arguments
; return function g() {} }
27 h
= bludgeonArguments();
33 print("PASS: " + msg
, "green");
38 print("FAIL: " + msg
, "red");
42 function shouldBe(a
, b
)
51 if (evalA
== b
|| isNaN(evalA
) && typeof evalA
== 'number' && isNaN(b
) && typeof b
== 'number')
52 pass(a
+ " should be " + b
+ " and is.");
54 fail(a
+ " should be " + b
+ " but instead is " + evalA
+ ".");
57 function shouldThrow(a
)
63 pass(a
+ " threw: " + e
);
67 fail(a
+ " did not throw an exception.");
70 function globalStaticFunction()
75 shouldBe("globalStaticValue", 3);
76 shouldBe("globalStaticFunction()", 4);
78 shouldBe("typeof MyObject", "function"); // our object implements 'call'
79 MyObject
.cantFind
= 1;
80 shouldBe("MyObject.cantFind", undefined);
81 MyObject
.regularType
= 1;
82 shouldBe("MyObject.regularType", 1);
83 MyObject
.alwaysOne
= 2;
84 shouldBe("MyObject.alwaysOne", 1);
85 MyObject
.cantDelete
= 1;
86 delete MyObject
.cantDelete
;
87 shouldBe("MyObject.cantDelete", 1);
88 shouldBe("delete MyObject.throwOnDelete", "an exception");
90 shouldBe("MyObject.cantSet", undefined);
91 shouldBe("MyObject.throwOnGet", "an exception");
92 shouldBe("MyObject.throwOnSet = 5", "an exception");
93 shouldBe("MyObject('throwOnCall')", "an exception");
94 shouldBe("new MyObject('throwOnConstruct')", "an exception");
95 shouldBe("'throwOnHasInstance' instanceof MyObject", "an exception");
97 MyObject
.nullGetForwardSet
= 1;
98 shouldBe("MyObject.nullGetForwardSet", 1);
100 var foundMyPropertyName
= false;
101 var foundRegularType
= false;
102 for (var p
in MyObject
) {
103 if (p
== "myPropertyName")
104 foundMyPropertyName
= true;
105 if (p
== "regularType")
106 foundRegularType
= true;
109 if (foundMyPropertyName
)
110 pass("MyObject.myPropertyName was enumerated");
112 fail("MyObject.myPropertyName was not enumerated");
114 if (foundRegularType
)
115 pass("MyObject.regularType was enumerated");
117 fail("MyObject.regularType was not enumerated");
119 var alwaysOneDescriptor
= Object
.getOwnPropertyDescriptor(MyObject
, "alwaysOne");
120 shouldBe('typeof alwaysOneDescriptor', "object");
121 shouldBe('alwaysOneDescriptor.value', MyObject
.alwaysOne
);
122 shouldBe('alwaysOneDescriptor.configurable', true);
123 shouldBe('alwaysOneDescriptor.enumerable', false); // Actually it is.
124 var cantFindDescriptor
= Object
.getOwnPropertyDescriptor(MyObject
, "cantFind");
125 shouldBe('typeof cantFindDescriptor', "object");
126 shouldBe('cantFindDescriptor.value', MyObject
.cantFind
);
127 shouldBe('cantFindDescriptor.configurable', true);
128 shouldBe('cantFindDescriptor.enumerable', false);
130 // If getOwnPropertyDescriptor() returned an access descriptor, this wouldn't throw.
131 Object
.getOwnPropertyDescriptor(MyObject
, "throwOnGet");
133 pass("getting property descriptor of throwOnGet threw exception");
135 var myPropertyNameDescriptor
= Object
.getOwnPropertyDescriptor(MyObject
, "myPropertyName");
136 shouldBe('typeof myPropertyNameDescriptor', "object");
137 shouldBe('myPropertyNameDescriptor.value', MyObject
.myPropertyName
);
138 shouldBe('myPropertyNameDescriptor.configurable', true);
139 shouldBe('myPropertyNameDescriptor.enumerable', false); // Actually it is.
141 // if getOwnPropertyDescriptor() returned an access descriptor, this wouldn't throw.
142 Object
.getOwnPropertyDescriptor(MyObject
, "hasPropertyLie");
144 pass("getting property descriptor of hasPropertyLie threw exception");
146 shouldBe('Object.getOwnPropertyDescriptor(MyObject, "doesNotExist")', undefined);
148 myObject
= new MyObject();
150 shouldBe("delete MyObject.regularType", true);
151 shouldBe("MyObject.regularType", undefined);
152 shouldBe("MyObject(0)", 1);
153 shouldBe("MyObject()", undefined);
154 shouldBe("typeof myObject", "object");
155 shouldBe("MyObject ? 1 : 0", true); // toBoolean
156 shouldBe("+MyObject", 1); // toNumber
157 shouldBe("(Object.prototype.toString.call(MyObject))", "[object MyObject]"); // Object.prototype.toString
158 shouldBe("(MyObject.toString())", "[object MyObject]"); // toString
159 shouldBe("String(MyObject)", "MyObjectAsString"); // toString
160 shouldBe("MyObject - 0", 1); // toNumber
161 shouldBe("MyObject.valueOf()", 1); // valueOf
163 shouldBe("typeof MyConstructor", "object");
164 constructedObject
= new MyConstructor(1);
165 shouldBe("typeof constructedObject", "object");
166 shouldBe("constructedObject.value", 1);
167 shouldBe("myObject instanceof MyObject", true);
168 shouldBe("(new Object()) instanceof MyObject", false);
170 shouldThrow("new MyBadConstructor()");
172 MyObject
.nullGetSet
= 1;
173 shouldBe("MyObject.nullGetSet", 1);
174 shouldThrow("MyObject.nullCall()");
175 shouldThrow("MyObject.hasPropertyLie");
177 derived
= new Derived();
179 shouldBe("derived instanceof Derived", true);
180 shouldBe("derived instanceof Base", true);
182 // base properties and functions return 1 when called/gotten; derived, 2
183 shouldBe("derived.baseProtoDup()", 2);
184 shouldBe("derived.baseProto()", 1);
185 shouldBe("derived.baseDup", 2);
186 shouldBe("derived.baseOnly", 1);
187 shouldBe("derived.protoOnly()", 2);
188 shouldBe("derived.protoDup", 2);
189 shouldBe("derived.derivedOnly", 2)
191 shouldBe("derived.baseHardNull()", undefined)
193 // base properties throw 1 when set; derived, 2
194 shouldBe("derived.baseDup = 0", 2);
195 shouldBe("derived.baseOnly = 0", 1);
196 shouldBe("derived.derivedOnly = 0", 2)
197 shouldBe("derived.protoDup = 0", 2);
199 derived2
= new Derived2();
201 shouldBe("derived2 instanceof Derived2", true);
202 shouldBe("derived2 instanceof Derived", true);
203 shouldBe("derived2 instanceof Base", true);
205 // base properties and functions return 1 when called/gotten; derived, 2
206 shouldBe("derived2.baseProtoDup()", 2);
207 shouldBe("derived2.baseProto()", 1);
208 shouldBe("derived2.baseDup", 2);
209 shouldBe("derived2.baseOnly", 1);
210 shouldBe("derived2.protoOnly()", 2);
211 shouldBe("derived2.protoDup", 2);
212 shouldBe("derived2.derivedOnly", 2)
214 // base properties throw 1 when set; derived, 2
215 shouldBe("derived2.baseDup = 0", 2);
216 shouldBe("derived2.baseOnly = 0", 1);
217 shouldBe("derived2.derivedOnly = 0", 2)
218 shouldBe("derived2.protoDup = 0", 2);
220 shouldBe('Object.getOwnPropertyDescriptor(derived, "baseProto")', undefined);
221 shouldBe('Object.getOwnPropertyDescriptor(derived, "baseProtoDup")', undefined);
222 var baseDupDescriptor
= Object
.getOwnPropertyDescriptor(derived
, "baseDup");
223 shouldBe('typeof baseDupDescriptor', "object");
224 shouldBe('baseDupDescriptor.value', derived
.baseDup
);
225 shouldBe('baseDupDescriptor.configurable', true);
226 shouldBe('baseDupDescriptor.enumerable', false);
227 var baseOnlyDescriptor
= Object
.getOwnPropertyDescriptor(derived
, "baseOnly");
228 shouldBe('typeof baseOnlyDescriptor', "object");
229 shouldBe('baseOnlyDescriptor.value', derived
.baseOnly
);
230 shouldBe('baseOnlyDescriptor.configurable', true);
231 shouldBe('baseOnlyDescriptor.enumerable', false);
232 shouldBe('Object.getOwnPropertyDescriptor(derived, "protoOnly")', undefined);
233 var protoDupDescriptor
= Object
.getOwnPropertyDescriptor(derived
, "protoDup");
234 shouldBe('typeof protoDupDescriptor', "object");
235 shouldBe('protoDupDescriptor.value', derived
.protoDup
);
236 shouldBe('protoDupDescriptor.configurable', true);
237 shouldBe('protoDupDescriptor.enumerable', false);
238 var derivedOnlyDescriptor
= Object
.getOwnPropertyDescriptor(derived
, "derivedOnly");
239 shouldBe('typeof derivedOnlyDescriptor', "object");
240 shouldBe('derivedOnlyDescriptor.value', derived
.derivedOnly
);
241 shouldBe('derivedOnlyDescriptor.configurable', true);
242 shouldBe('derivedOnlyDescriptor.enumerable', false);
244 shouldBe("undefined instanceof MyObject", false);
245 EvilExceptionObject
.hasInstance
= function f() { return f(); };
246 EvilExceptionObject
.__proto__
= undefined;
247 shouldThrow("undefined instanceof EvilExceptionObject");
248 EvilExceptionObject
.hasInstance = function () { return true; };
249 shouldBe("undefined instanceof EvilExceptionObject", true);
251 EvilExceptionObject
.toNumber
= function f() { return f(); }
252 shouldThrow("EvilExceptionObject*5");
253 EvilExceptionObject
.toStringExplicit
= function f() { return f(); }
254 shouldThrow("String(EvilExceptionObject)");
256 shouldBe("console", "[object Console]");
257 shouldBe("typeof console.log", "function");
259 shouldBe("EmptyObject", "[object CallbackObject]");
261 for (var i
= 0; i
< 6; ++i
)
262 PropertyCatchalls
.x
= i
;
263 shouldBe("PropertyCatchalls.x", 4);
265 for (var i
= 0; i
< 6; ++i
)
266 var x
= PropertyCatchalls
.x
;
268 var make_throw
= 'make_throw';
269 shouldThrow("PropertyCatchalls[make_throw]=1");
271 shouldThrow("PropertyCatchalls[make_throw]=1");
273 for (var i
= 0; i
< 10; ++i
) {
274 for (var p
in PropertyCatchalls
) {
277 shouldBe("p", i
% 10);
282 PropertyCatchalls
.__proto__
= { y: 1 };
283 for (var i
= 0; i
< 6; ++i
)
284 var y
= PropertyCatchalls
.y
;
287 var o
= { __proto__: PropertyCatchalls
};
288 for (var i
= 0; i
< 6; ++i
)
289 var z
= PropertyCatchalls
.z
;
293 throw "Some tests failed";