Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(265)

Unified Diff: test/mjsunit/harmony/proxies-is-extensible.js

Issue 1441043002: [proxies] Implement [[PreventExtensions]] and [[IsExtensible]]. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase. Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/mjsunit/harmony/proxies-is-extensible.js
diff --git a/test/mjsunit/harmony/proxies-is-extensible.js b/test/mjsunit/harmony/proxies-is-extensible.js
new file mode 100644
index 0000000000000000000000000000000000000000..f597d0d0a63989d2f485dc6ad26b125f3fa9137b
--- /dev/null
+++ b/test/mjsunit/harmony/proxies-is-extensible.js
@@ -0,0 +1,74 @@
+// Copyright 2015 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Flags: --harmony-proxies --harmony-reflect
+
+
+(function () {
+ // No trap.
+
+ var target = {};
+ var handler = {};
+ var proxy = new Proxy(target, handler);
+
+ assertTrue(Reflect.isExtensible(target));
+ assertTrue(Reflect.isExtensible(proxy));
+ assertTrue(Reflect.preventExtensions(proxy));
+ assertFalse(Reflect.isExtensible(target));
+ assertFalse(Reflect.isExtensible(proxy));
+})();
+
+
+(function () {
+ // "Undefined" trap.
+
+ var target = {};
+ var handler = { isExtensible: null };
+ var proxy = new Proxy(target, handler);
+
+ assertTrue(Reflect.isExtensible(target));
+ assertTrue(Reflect.isExtensible(proxy));
+ assertTrue(Reflect.preventExtensions(proxy));
+ assertFalse(Reflect.isExtensible(target));
+ assertFalse(Reflect.isExtensible(proxy));
+})();
+
+
+(function () {
+ // Invalid trap.
+
+ var target = {};
+ var handler = { isExtensible: true };
+ var proxy = new Proxy(target, handler);
+
+ assertThrows(() => {Reflect.isExtensible(proxy)}, TypeError);
+})();
+
+
+(function () {
+ var target = {};
+ var handler = { isExtensible() {return "bla"} };
+ var proxy = new Proxy(target, handler);
+
+ // Trap returns trueish and target is extensible.
+ assertTrue(Reflect.isExtensible(proxy));
+
+ // Trap returns trueish but target is not extensible.
+ Reflect.preventExtensions(target);
+ assertThrows(() => {Reflect.isExtensible(proxy)}, TypeError);
+})();
+
+
+(function () {
+ var target = {};
+ var handler = { isExtensible() {return 0} };
+ var proxy = new Proxy(target, handler);
+
+ // Trap returns falsish but target is extensible.
+ assertThrows(() => {Reflect.isExtensible(proxy)}, TypeError);
+
+ // Trap returns falsish and target is not extensible.
+ Reflect.preventExtensions(target);
+ assertFalse(Reflect.isExtensible(proxy));
+})();
« no previous file with comments | « test/cctest/interpreter/test-bytecode-generator.cc ('k') | test/mjsunit/harmony/proxies-prevent-extensions.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698