blob: 65dea6a5992c2debe1a141bcf60af621c7e4ea41 [file] [log] [blame]
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001// Copyright 2015 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00005var target = {
6 target: 1
7};
8target.__proto__ = {
9 target_proto: 2
10};
11
12var handler = {
13 ownKeys: function(target) {
14 return ["foo", "bar", Symbol("baz"), "non-enum", "not-found"];
15 },
16 getOwnPropertyDescriptor: function(target, name) {
17 if (name == "non-enum") return {configurable: true};
18 if (name == "not-found") return undefined;
19 return {enumerable: true, configurable: true};
20 }
21}
22
23var proxy = new Proxy(target, handler);
24
25// Object.keys() ignores symbols and non-enumerable keys.
26assertEquals(["foo", "bar"], Object.keys(proxy));
27
28// Edge case: no properties left after filtering.
29handler.getOwnPropertyDescriptor = undefined;
30assertEquals([], Object.keys(proxy));
31
32// Throwing shouldn't crash.
33handler.getOwnPropertyDescriptor = function() { throw new Number(1); };
34assertThrows("Object.keys(proxy)", Number);
35
36// Fall through to target if there is no trap.
37handler.ownKeys = undefined;
38assertEquals(["target"], Object.keys(proxy));
39assertEquals(["target"], Object.keys(target));
Ben Murdochc5610432016-08-08 18:44:38 +010040
41var proxy2 = new Proxy(proxy, {});
42assertEquals(["target"], Object.keys(proxy2));
43
44
45(function testForSymbols() {
46 var symbol = Symbol();
47 var p = new Proxy({}, {ownKeys() { return ["1", symbol, "2"] }});
48 assertEquals(["1","2"], Object.getOwnPropertyNames(p));
49 assertEquals([symbol], Object.getOwnPropertySymbols(p));
50})();