blob: 8bf8a2d4f83181d46340bf00a34ec8f450ebcf86 [file] [log] [blame]
mstarzinger@chromium.orgde886792012-09-11 13:22:37 +00001// Copyright 2012 the V8 project authors. All rights reserved.
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28// Flags: --expose-debug-as debug
29// Test the mirror object for objects
30
ager@chromium.org32912102009-01-16 10:38:43 +000031function MirrorRefCache(json_refs) {
32 var tmp = eval('(' + json_refs + ')');
33 this.refs_ = [];
34 for (var i = 0; i < tmp.length; i++) {
35 this.refs_[tmp[i].handle] = tmp[i];
36 }
37}
38
39MirrorRefCache.prototype.lookup = function(handle) {
40 return this.refs_[handle];
danno@chromium.org160a7b02011-04-18 15:51:38 +000041};
ager@chromium.org32912102009-01-16 10:38:43 +000042
43function testObjectMirror(obj, cls_name, ctor_name, hasSpecialProperties) {
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000044 // Create mirror and JSON representation.
ager@chromium.org32912102009-01-16 10:38:43 +000045 var mirror = debug.MakeMirror(obj);
46 var serializer = debug.MakeMirrorSerializer();
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +000047 var json = JSON.stringify(serializer.serializeValue(mirror));
48 var refs = new MirrorRefCache(
49 JSON.stringify(serializer.serializeReferencedObjects()));
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000050
51 // Check the mirror hierachy.
mstarzinger@chromium.orgde886792012-09-11 13:22:37 +000052 assertTrue(mirror instanceof debug.Mirror, 'Unexpected mirror hierarchy');
53 assertTrue(mirror instanceof debug.ValueMirror, 'Unexpected mirror hierarchy');
54 assertTrue(mirror instanceof debug.ObjectMirror, 'Unexpected mirror hierarchy');
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000055
56 // Check the mirror properties.
ager@chromium.org32912102009-01-16 10:38:43 +000057 assertTrue(mirror.isObject(), 'Unexpected mirror');
58 assertEquals('object', mirror.type(), 'Unexpected mirror type');
59 assertFalse(mirror.isPrimitive(), 'Unexpected primitive mirror');
60 assertEquals(cls_name, mirror.className(), 'Unexpected mirror class name');
mstarzinger@chromium.orgde886792012-09-11 13:22:37 +000061 assertTrue(mirror.constructorFunction() instanceof debug.ObjectMirror, 'Unexpected mirror hierarchy');
ager@chromium.org32912102009-01-16 10:38:43 +000062 assertEquals(ctor_name, mirror.constructorFunction().name(), 'Unexpected constructor function name');
mstarzinger@chromium.orgde886792012-09-11 13:22:37 +000063 assertTrue(mirror.protoObject() instanceof debug.Mirror, 'Unexpected mirror hierarchy');
64 assertTrue(mirror.prototypeObject() instanceof debug.Mirror, 'Unexpected mirror hierarchy');
ager@chromium.org32912102009-01-16 10:38:43 +000065 assertFalse(mirror.hasNamedInterceptor(), 'No named interceptor expected');
66 assertFalse(mirror.hasIndexedInterceptor(), 'No indexed interceptor expected');
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000067
68 var names = mirror.propertyNames();
danno@chromium.org160a7b02011-04-18 15:51:38 +000069 var properties = mirror.properties();
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000070 assertEquals(names.length, properties.length);
71 for (var i = 0; i < properties.length; i++) {
mstarzinger@chromium.orgde886792012-09-11 13:22:37 +000072 assertTrue(properties[i] instanceof debug.Mirror, 'Unexpected mirror hierarchy');
73 assertTrue(properties[i] instanceof debug.PropertyMirror, 'Unexpected mirror hierarchy');
ager@chromium.org32912102009-01-16 10:38:43 +000074 assertEquals('property', properties[i].type(), 'Unexpected mirror type');
75 assertEquals(names[i], properties[i].name(), 'Unexpected property name');
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000076 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +000077
mstarzinger@chromium.orgde886792012-09-11 13:22:37 +000078 var internalProperties = mirror.internalProperties();
79 for (var i = 0; i < internalProperties.length; i++) {
80 assertTrue(internalProperties[i] instanceof debug.Mirror, 'Unexpected mirror hierarchy');
81 assertTrue(internalProperties[i] instanceof debug.InternalPropertyMirror, 'Unexpected mirror hierarchy');
82 assertEquals('internalProperty', internalProperties[i].type(), 'Unexpected mirror type');
83 }
84
ager@chromium.org32912102009-01-16 10:38:43 +000085 for (var p in obj) {
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000086 var property_mirror = mirror.property(p);
87 assertTrue(property_mirror instanceof debug.PropertyMirror);
88 assertEquals(p, property_mirror.name());
89 // If the object has some special properties don't test for these.
90 if (!hasSpecialProperties) {
91 assertEquals(0, property_mirror.attributes(), property_mirror.name());
92 assertFalse(property_mirror.isReadOnly());
93 assertTrue(property_mirror.isEnum());
94 assertTrue(property_mirror.canDelete());
95 }
96 }
97
98 // Parse JSON representation and check.
99 var fromJSON = eval('(' + json + ')');
ager@chromium.org32912102009-01-16 10:38:43 +0000100 assertEquals('object', fromJSON.type, 'Unexpected mirror type in JSON');
101 assertEquals(cls_name, fromJSON.className, 'Unexpected mirror class name in JSON');
102 assertEquals(mirror.constructorFunction().handle(), fromJSON.constructorFunction.ref, 'Unexpected constructor function handle in JSON');
103 assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type, 'Unexpected constructor function type in JSON');
104 assertEquals(ctor_name, refs.lookup(fromJSON.constructorFunction.ref).name, 'Unexpected constructor function name in JSON');
105 assertEquals(mirror.protoObject().handle(), fromJSON.protoObject.ref, 'Unexpected proto object handle in JSON');
106 assertEquals(mirror.protoObject().type(), refs.lookup(fromJSON.protoObject.ref).type, 'Unexpected proto object type in JSON');
107 assertEquals(mirror.prototypeObject().handle(), fromJSON.prototypeObject.ref, 'Unexpected prototype object handle in JSON');
108 assertEquals(mirror.prototypeObject().type(), refs.lookup(fromJSON.prototypeObject.ref).type, 'Unexpected prototype object type in JSON');
109 assertEquals(void 0, fromJSON.namedInterceptor, 'No named interceptor expected in JSON');
110 assertEquals(void 0, fromJSON.indexedInterceptor, 'No indexed interceptor expected in JSON');
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000111
112 // Check that the serialization contains all properties.
ager@chromium.org32912102009-01-16 10:38:43 +0000113 assertEquals(names.length, fromJSON.properties.length, 'Some properties missing in JSON');
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000114 for (var i = 0; i < fromJSON.properties.length; i++) {
115 var name = fromJSON.properties[i].name;
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +0000116 if (typeof name == 'undefined') name = fromJSON.properties[i].index;
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000117 var found = false;
118 for (var j = 0; j < names.length; j++) {
119 if (names[j] == name) {
ager@chromium.org32912102009-01-16 10:38:43 +0000120 // Check that serialized handle is correct.
121 assertEquals(properties[i].value().handle(), fromJSON.properties[i].ref, 'Unexpected serialized handle');
122
123 // Check that serialized name is correct.
124 assertEquals(properties[i].name(), fromJSON.properties[i].name, 'Unexpected serialized name');
125
126 // If property type is normal property type is not serialized.
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000127 if (properties[i].propertyType() != debug.PropertyType.Normal) {
ager@chromium.org32912102009-01-16 10:38:43 +0000128 assertEquals(properties[i].propertyType(), fromJSON.properties[i].propertyType, 'Unexpected serialized property type');
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000129 } else {
ager@chromium.org32912102009-01-16 10:38:43 +0000130 assertTrue(typeof(fromJSON.properties[i].propertyType) === 'undefined', 'Unexpected serialized property type');
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000131 }
ager@chromium.org32912102009-01-16 10:38:43 +0000132
133 // If there are no attributes attributes are not serialized.
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000134 if (properties[i].attributes() != debug.PropertyAttribute.None) {
ager@chromium.org32912102009-01-16 10:38:43 +0000135 assertEquals(properties[i].attributes(), fromJSON.properties[i].attributes, 'Unexpected serialized attributes');
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000136 } else {
ager@chromium.org32912102009-01-16 10:38:43 +0000137 assertTrue(typeof(fromJSON.properties[i].attributes) === 'undefined', 'Unexpected serialized attributes');
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000138 }
ager@chromium.org32912102009-01-16 10:38:43 +0000139
danno@chromium.org160a7b02011-04-18 15:51:38 +0000140 // Lookup the serialized object from the handle reference.
ager@chromium.org32912102009-01-16 10:38:43 +0000141 var o = refs.lookup(fromJSON.properties[i].ref);
142 assertTrue(o != void 0, 'Referenced object is not serialized');
143
144 assertEquals(properties[i].value().type(), o.type, 'Unexpected serialized property type for ' + name);
145 if (properties[i].value().isPrimitive()) {
danno@chromium.org160a7b02011-04-18 15:51:38 +0000146 if (properties[i].value().type() == "null" ||
147 properties[i].value().type() == "undefined") {
148 // Null and undefined has no value property.
149 assertFalse("value" in o, 'Unexpected value property for ' + name);
150 } else if (properties[i].value().type() == "number" &&
151 !isFinite(properties[i].value().value())) {
152 assertEquals(String(properties[i].value().value()), o.value,
153 'Unexpected serialized property value for ' + name);
ager@chromium.orgddb913d2009-01-27 10:01:48 +0000154 } else {
155 assertEquals(properties[i].value().value(), o.value, 'Unexpected serialized property value for ' + name);
156 }
ager@chromium.org32912102009-01-16 10:38:43 +0000157 } else if (properties[i].value().isFunction()) {
158 assertEquals(properties[i].value().source(), o.source, 'Unexpected serialized property value for ' + name);
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000159 }
160 found = true;
161 }
162 }
christian.plesner.hansen@gmail.comaca49682009-01-07 14:29:04 +0000163 assertTrue(found, '"' + name + '" not found (' + json + ')');
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000164 }
165}
166
167
168function Point(x,y) {
169 this.x_ = x;
170 this.y_ = y;
171}
172
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000173// Test a number of different objects.
174testObjectMirror({}, 'Object', 'Object');
175testObjectMirror({'a':1,'b':2}, 'Object', 'Object');
176testObjectMirror({'1':void 0,'2':null,'f':function pow(x,y){return Math.pow(x,y);}}, 'Object', 'Object');
177testObjectMirror(new Point(-1.2,2.003), 'Object', 'Point');
ager@chromium.org32912102009-01-16 10:38:43 +0000178testObjectMirror(this, 'global', '', true); // Global object has special properties
ager@chromium.orgddb913d2009-01-27 10:01:48 +0000179testObjectMirror(this.__proto__, 'Object', '');
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000180testObjectMirror([], 'Array', 'Array');
181testObjectMirror([1,2], 'Array', 'Array');
mstarzinger@chromium.orgde886792012-09-11 13:22:37 +0000182testObjectMirror(Object(17), 'Number', 'Number');
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000183
christian.plesner.hansen@gmail.comaca49682009-01-07 14:29:04 +0000184// Test circular references.
185o = {};
186o.o = o;
187testObjectMirror(o, 'Object', 'Object');
188
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000189// Test that non enumerable properties are part of the mirror
190global_mirror = debug.MakeMirror(this);
191assertEquals('property', global_mirror.property("Math").type());
192assertFalse(global_mirror.property("Math").isEnum(), "Math is enumerable" + global_mirror.property("Math").attributes());
193
194math_mirror = global_mirror.property("Math").value();
195assertEquals('property', math_mirror.property("E").type());
196assertFalse(math_mirror.property("E").isEnum(), "Math.E is enumerable");
197assertTrue(math_mirror.property("E").isReadOnly());
198assertFalse(math_mirror.property("E").canDelete());
199
200// Test objects with JavaScript accessors.
201o = {}
ager@chromium.org32912102009-01-16 10:38:43 +0000202o.__defineGetter__('a', function(){return 'a';});
203o.__defineSetter__('b', function(){});
204o.__defineGetter__('c', function(){throw 'c';});
205o.__defineSetter__('c', function(){throw 'c';});
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000206testObjectMirror(o, 'Object', 'Object');
207mirror = debug.MakeMirror(o);
208// a has getter but no setter.
ager@chromium.org32912102009-01-16 10:38:43 +0000209assertTrue(mirror.property('a').hasGetter());
210assertFalse(mirror.property('a').hasSetter());
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000211assertEquals(debug.PropertyType.Callbacks, mirror.property('a').propertyType());
ager@chromium.org32912102009-01-16 10:38:43 +0000212assertEquals('function', mirror.property('a').getter().type());
213assertEquals('undefined', mirror.property('a').setter().type());
214assertEquals('function (){return \'a\';}', mirror.property('a').getter().source());
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000215// b has setter but no getter.
ager@chromium.org32912102009-01-16 10:38:43 +0000216assertFalse(mirror.property('b').hasGetter());
217assertTrue(mirror.property('b').hasSetter());
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000218assertEquals(debug.PropertyType.Callbacks, mirror.property('b').propertyType());
ager@chromium.org32912102009-01-16 10:38:43 +0000219assertEquals('undefined', mirror.property('b').getter().type());
220assertEquals('function', mirror.property('b').setter().type());
221assertEquals('function (){}', mirror.property('b').setter().source());
222assertFalse(mirror.property('b').isException());
223// c has both getter and setter. The getter throws an exception.
224assertTrue(mirror.property('c').hasGetter());
225assertTrue(mirror.property('c').hasSetter());
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000226assertEquals(debug.PropertyType.Callbacks, mirror.property('c').propertyType());
ager@chromium.org32912102009-01-16 10:38:43 +0000227assertEquals('function', mirror.property('c').getter().type());
228assertEquals('function', mirror.property('c').setter().type());
229assertEquals('function (){throw \'c\';}', mirror.property('c').getter().source());
230assertEquals('function (){throw \'c\';}', mirror.property('c').setter().source());
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000231
232// Test objects with native accessors.
233mirror = debug.MakeMirror(new String('abc'));
234assertTrue(mirror instanceof debug.ObjectMirror);
ager@chromium.org32912102009-01-16 10:38:43 +0000235assertFalse(mirror.property('length').hasGetter());
236assertFalse(mirror.property('length').hasSetter());
237assertTrue(mirror.property('length').isNative());
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000238assertEquals('a', mirror.property(0).value().value());
239assertEquals('b', mirror.property(1).value().value());
240assertEquals('c', mirror.property(2).value().value());
mstarzinger@chromium.orgde886792012-09-11 13:22:37 +0000241
242// Test value wrapper internal properties.
243mirror = debug.MakeMirror(Object("Capybara"));
244var ip = mirror.internalProperties();
245assertEquals(1, ip.length);
246assertEquals("[[PrimitiveValue]]", ip[0].name());
247assertEquals("string", ip[0].value().type());
248assertEquals("Capybara", ip[0].value().value());
249
250// Test bound function internal properties.
251mirror = debug.MakeMirror(Number.bind(Array, 2));
252ip = mirror.internalProperties();
253assertEquals(3, ip.length);
254var property_map = {};
255for (var i = 0; i < ip.length; i++) {
256 property_map[ip[i].name()] = ip[i];
257}
258assertTrue("[[BoundThis]]" in property_map);
259assertEquals("function", property_map["[[BoundThis]]"].value().type());
260assertEquals(Array, property_map["[[BoundThis]]"].value().value());
261assertTrue("[[TargetFunction]]" in property_map);
262assertEquals("function", property_map["[[TargetFunction]]"].value().type());
263assertEquals(Number, property_map["[[TargetFunction]]"].value().value());
264assertTrue("[[BoundArgs]]" in property_map);
265assertEquals("object", property_map["[[BoundArgs]]"].value().type());
266assertEquals(1, property_map["[[BoundArgs]]"].value().value().length);