diff --git a/test/built-ins/Object/prototype/extensibility.js b/test/built-ins/Object/prototype/extensibility.js new file mode 100644 index 0000000000000000000000000000000000000000..e8a2fd2a8eedca5dc5f4e57e1ab2a20f9ad38a84 --- /dev/null +++ b/test/built-ins/Object/prototype/extensibility.js @@ -0,0 +1,29 @@ +// Copyright (C) 2016 the V8 project authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +id: sec-properties-of-the-object-prototype-object +description: > + Object.prototype is still extensible and may have extensions prevented +info: > + 19.1.3 Properties of the Object Prototype Object + + The value of the [[Prototype]] internal slot of the Object prototype object is + null and the initial value of the [[Extensible]] internal slot is true. +---*/ + +assert( + Object.isExtensible(Object.prototype), + "Object.prototype is extensible" +); + +assert.sameValue( + Object.preventExtensions(Object.prototype), + Object.prototype, + "Object.prototype may have extensions prevented" +); + +assert.sameValue( + Object.isExtensible(Object.prototype), + false, + "Object.prototype is not extensible after a preventExtensions operation" +); diff --git a/test/built-ins/Object/prototype/proto.js b/test/built-ins/Object/prototype/proto.js new file mode 100644 index 0000000000000000000000000000000000000000..8e75d586e982149e914cead9c097eabae3d8d33f --- /dev/null +++ b/test/built-ins/Object/prototype/proto.js @@ -0,0 +1,14 @@ +// Copyright (C) 2016 the V8 project authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +id: sec-properties-of-the-object-prototype-object +description: > + The value of the [[Prototype]] internal slot of Object.prototype is null +info: > + 19.1.3 Properties of the Object Prototype Object + + The value of the [[Prototype]] internal slot of the Object prototype object is + null and the initial value of the [[Extensible]] internal slot is true. +---*/ + +assert.sameValue(Object.getPrototypeOf(Object.prototype), null); diff --git a/test/built-ins/Object/prototype/setPrototypeOf-with-different-values.js b/test/built-ins/Object/prototype/setPrototypeOf-with-different-values.js new file mode 100644 index 0000000000000000000000000000000000000000..999a247a1f09216a8b50aa275f1738cda14fc1a9 --- /dev/null +++ b/test/built-ins/Object/prototype/setPrototypeOf-with-different-values.js @@ -0,0 +1,52 @@ +// Copyright (C) 2016 the V8 project authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +id: sec-immutable-prototype-exotic-objects-setprototypeof-v +description: > + Object.prototype's [[SetPrototypeOf]] returns false if value is not the same +info: > + 9.4.7.1 [[SetPrototypeOf]] (V) + + ... + 2. Let current be the value of the [[Prototype]] internal slot of O. + 3. If SameValue(V, current), return true. + 4. Return false. + + 19.1.3 Properties of the Object Prototype Object + + The value of the [[Prototype]] internal slot of the Object prototype object is + null and the initial value of the [[Extensible]] internal slot is true. +features: [Reflect.setPrototypeOf] +---*/ + +var ObjProto = Object.prototype; + +assert.throws(TypeError, function() { + Object.setPrototypeOf(ObjProto, {}); +}, "Object.setPrototypeOf(ObjProto, {}) throws a TypeError"); + +assert.throws(TypeError, function() { + Object.setPrototypeOf(ObjProto, Array.prototype); +}, "Object.setPrototypeOf(ObjProto, Array.prototype) throws a TypeError"); + +assert.throws(TypeError, function() { + Object.setPrototypeOf(ObjProto, ObjProto); +}, "Object.setPrototypeOf(ObjProto, ObjProto) throws a TypeError"); + +assert.sameValue( + Reflect.setPrototypeOf(ObjProto, {}), + false, + "Reflect.setPrototypeOf(ObjProto, {}) returns false" +); + +assert.sameValue( + Reflect.setPrototypeOf(ObjProto, Array.prototype), + false, + "Reflect.setPrototypeOf(ObjProto, Array.prototype) returns false" +); + +assert.sameValue( + Reflect.setPrototypeOf(ObjProto, ObjProto), + false, + "Reflect.setPrototypeOf(ObjProto, ObjProto) returns false" +); diff --git a/test/built-ins/Object/prototype/setPrototypeOf-with-same-value.js b/test/built-ins/Object/prototype/setPrototypeOf-with-same-value.js new file mode 100644 index 0000000000000000000000000000000000000000..4822e4795583922a8b5db6bc7b33eb47b9ce8b1e --- /dev/null +++ b/test/built-ins/Object/prototype/setPrototypeOf-with-same-value.js @@ -0,0 +1,44 @@ +// Copyright (C) 2016 the V8 project authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +id: sec-immutable-prototype-exotic-objects-setprototypeof-v +description: > + Object.prototype's [[SetPrototypeOf]] returns true if value is same +info: > + 9.4.7.1 [[SetPrototypeOf]] (V) + + ... + 2. Let current be the value of the [[Prototype]] internal slot of O. + 3. If SameValue(V, current), return true. + 4. Return false. + + 19.1.3 Properties of the Object Prototype Object + + The value of the [[Prototype]] internal slot of the Object prototype object is + null and the initial value of the [[Extensible]] internal slot is true. +features: [Reflect.setPrototypeOf] +---*/ + +var ObjProto = Object.prototype; + +assert.sameValue( + Object.setPrototypeOf(ObjProto, null), + ObjProto, + "Object.setPrototypeOf(ObjProto, null) returns the Object.prototype" +); + +assert( + Object.isExtensible(ObjProto), + "Object.prototype is still extensible after a setPrototypeOf operation - #1" +); + +assert.sameValue( + Reflect.setPrototypeOf(ObjProto, null), + true, + "Reflect.setPrototypeOf(ObjProto, null) returns true" +); + +assert( + Object.isExtensible(ObjProto), + "Object.prototype is still extensible after a setPrototypeOf operation - #2" +);