blob: bece37a3ee35ea8630400812670d67f703c722ac [file] [log] [blame]
Steve Blocka7e24c12009-10-30 11:49:00 +00001// Copyright 2008 the V8 project authors. All rights reserved.
2// 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
28function props(x) {
29 var array = [];
30 for (var p in x) array.push(p);
31 return array.sort();
32}
33
Steve Block3ce2e202009-11-05 08:53:23 +000034assertEquals(0, props({}).length, "olen0");
35assertEquals(1, props({x:1}).length, "olen1");
36assertEquals(2, props({x:1, y:2}).length, "olen2");
Steve Blocka7e24c12009-10-30 11:49:00 +000037
Steve Block3ce2e202009-11-05 08:53:23 +000038assertArrayEquals(["x"], props({x:1}), "x");
39assertArrayEquals(["x", "y"], props({x:1, y:2}), "xy");
40assertArrayEquals(["x", "y", "zoom"], props({x:1, y:2, zoom:3}), "xyzoom");
Steve Blocka7e24c12009-10-30 11:49:00 +000041
Steve Block3ce2e202009-11-05 08:53:23 +000042assertEquals(0, props([]).length, "alen0");
43assertEquals(1, props([1]).length, "alen1");
44assertEquals(2, props([1,2]).length, "alen2");
Steve Blocka7e24c12009-10-30 11:49:00 +000045
Steve Block3ce2e202009-11-05 08:53:23 +000046assertArrayEquals(["0"], props([1]), "0");
47assertArrayEquals(["0", "1"], props([1,2]), "01");
48assertArrayEquals(["0", "1", "2"], props([1,2,3]), "012");
Steve Blocka7e24c12009-10-30 11:49:00 +000049
50var o = {};
51var a = [];
52for (var i = 0x0020; i < 0x01ff; i+=2) {
53 var s = 'char:' + String.fromCharCode(i);
54 a.push(s);
55 o[s] = i;
56}
Steve Block3ce2e202009-11-05 08:53:23 +000057assertArrayEquals(a, props(o), "charcodes");
Steve Blocka7e24c12009-10-30 11:49:00 +000058
59var a = [];
Steve Block3ce2e202009-11-05 08:53:23 +000060assertEquals(0, props(a).length, "proplen0");
Steve Blocka7e24c12009-10-30 11:49:00 +000061a[Math.pow(2,30)-1] = 0;
Steve Block3ce2e202009-11-05 08:53:23 +000062assertEquals(1, props(a).length, "proplen1");
Steve Blocka7e24c12009-10-30 11:49:00 +000063a[Math.pow(2,31)-1] = 0;
Steve Block3ce2e202009-11-05 08:53:23 +000064assertEquals(2, props(a).length, "proplen2");
Steve Blocka7e24c12009-10-30 11:49:00 +000065a[1] = 0;
Steve Block3ce2e202009-11-05 08:53:23 +000066assertEquals(3, props(a).length, "proplen3");
Steve Blocka7e24c12009-10-30 11:49:00 +000067
68for (var hest = 'hest' in {}) { }
Steve Block3ce2e202009-11-05 08:53:23 +000069assertEquals('hest', hest, "empty-no-override");
Steve Blocka7e24c12009-10-30 11:49:00 +000070
71var result = '';
72for (var p in {a : [0], b : 1}) { result += p; }
Steve Block3ce2e202009-11-05 08:53:23 +000073assertEquals('ab', result, "ab");
Steve Blocka7e24c12009-10-30 11:49:00 +000074
75var result = '';
76for (var p in {a : {v:1}, b : 1}) { result += p; }
Steve Block3ce2e202009-11-05 08:53:23 +000077assertEquals('ab', result, "ab-nodeep");
Steve Blocka7e24c12009-10-30 11:49:00 +000078
79var result = '';
80for (var p in { get a() {}, b : 1}) { result += p; }
Steve Block3ce2e202009-11-05 08:53:23 +000081assertEquals('ab', result, "abget");
Steve Blocka7e24c12009-10-30 11:49:00 +000082
83var result = '';
84for (var p in { get a() {}, set a(x) {}, b : 1}) { result += p; }
Steve Block3ce2e202009-11-05 08:53:23 +000085assertEquals('ab', result, "abgetset");
Steve Blocka7e24c12009-10-30 11:49:00 +000086
Steve Block8defd9f2010-07-08 12:39:36 +010087
88// Test that for-in in the global scope works with a keyed property as "each".
89// Test outside a loop and in a loop for multiple iterations.
90a = [1,2,3,4];
91x = {foo:5, bar:6, zip:7, glep:9, 10:11};
92delete x.bar;
93y = {}
94
95for (a[2] in x) {
96 y[a[2]] = x[a[2]];
97}
98
99assertEquals(5, y.foo, "y.foo");
100assertEquals("undefined", typeof y.bar, "y.bar");
101assertEquals(7, y.zip, "y.zip");
102assertEquals(9, y.glep, "y.glep");
103assertEquals(11, y[10], "y[10]");
104assertEquals("undefined", typeof y[2], "y[2]");
105assertEquals("undefined", typeof y[0], "y[0]");
106
107for (i=0 ; i < 3; ++i) {
108 y = {}
109
110 for (a[2] in x) {
111 y[a[2]] = x[a[2]];
112 }
113
114 assertEquals(5, y.foo, "y.foo");
115 assertEquals("undefined", typeof y.bar, "y.bar");
116 assertEquals(7, y.zip, "y.zip");
117 assertEquals(9, y.glep, "y.glep");
118 assertEquals(11, y[10], "y[10]");
119 assertEquals("undefined", typeof y[2], "y[2]");
120 assertEquals("undefined", typeof y[0], "y[0]");
121}
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000122
Ben Murdochda12d292016-06-02 14:46:10 +0100123(function testLargeElementKeys() {
124 // Key out of SMI range but well within safe double representaion.
125 var large_key = 2147483650;
126 var o = [];
127 // Trigger dictionary elements with HeapNumber keys.
128 o[large_key] = 0;
129 o[large_key+1] = 1;
130 o[large_key+2] = 2;
131 o[large_key+3] = 3;
132 var keys = [];
133 for (var k in o) {
134 keys.push(k);
135 }
136 assertEquals(["2147483650", "2147483651", "2147483652", "2147483653"], keys);
137})();
138
139(function testLargeElementKeysWithProto() {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000140 var large_key = 2147483650;
141 var o = {__proto__: {}};
142 o[large_key] = 1;
143 o.__proto__[large_key] = 1;
144 var keys = [];
145 for (var k in o) {
146 keys.push(k);
147 }
148 assertEquals(["2147483650"], keys);
149})();
Ben Murdochda12d292016-06-02 14:46:10 +0100150
151(function testNonEnumerableArgumentsIndex() {
152 Object.defineProperty(arguments, 0, {enumerable:false});
153 for (var k in arguments) {
154 assertUnreachable();
155 }
156})();
157
158(function testNonEnumerableSloppyArgumentsIndex(a) {
159 Object.defineProperty(arguments, 0, {enumerable:false});
160 for (var k in arguments) {
161 assertUnreachable();
162 }
163})(true);