has-own-property.js 6.51 KB
Newer Older
1
// Copyright 2008 the V8 project authors. All rights reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
//     * Redistributions of source code must retain the above copyright
//       notice, this list of conditions and the following disclaimer.
//     * Redistributions in binary form must reproduce the above
//       copyright notice, this list of conditions and the following
//       disclaimer in the documentation and/or other materials provided
//       with the distribution.
//     * Neither the name of Google Inc. nor the names of its
//       contributors may be used to endorse or promote products derived
//       from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

28
// Normal objects.
29 30 31 32 33 34 35 36 37 38 39
// Check for objects.
assertTrue({x:12}.hasOwnProperty('x'));
assertFalse({x:12}.hasOwnProperty('y'));

// Check for strings.
assertTrue(''.hasOwnProperty('length'));
assertTrue(Object.prototype.hasOwnProperty.call('', 'length'));

// Check for numbers.
assertFalse((123).hasOwnProperty('length'));
assertFalse(Object.prototype.hasOwnProperty.call(123, 'length'));
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171

// Frozen object.
// Check for objects.
assertTrue(Object.freeze({x:12}).hasOwnProperty('x'));
assertFalse(Object.freeze({x:12}).hasOwnProperty('y'));

// Check for strings.
assertTrue(Object.freeze('').hasOwnProperty('length'));
assertTrue(Object.prototype.hasOwnProperty.call(Object.freeze(''), 'length'));

// Check for numbers.
assertFalse(Object.freeze(123).hasOwnProperty('length'));
assertFalse(Object.prototype.hasOwnProperty.call(Object.freeze(123), 'length'));

// Direct vs. inherited properties.
var o = ['exist'];
Object.freeze(o);
assertTrue(o.hasOwnProperty('0'));
assertFalse(o.hasOwnProperty('toString'));
assertFalse(o.hasOwnProperty('hasOwnProperty'));

// Using hasOwnProperty as a property name.
var foo = ['a'];
foo.hasOwnProperty = function() { return false; };
Object.freeze(foo);
assertFalse(foo.hasOwnProperty('0')); // always returns false.

// Use another Object's hasOwnProperty
// and call it with 'this' set to foo.
assertTrue(({}).hasOwnProperty.call(foo, '0'));

// It's also possible to use the hasOwnProperty property
// from the Object prototype for this purpose.
assertTrue(Object.prototype.hasOwnProperty.call(foo, '0'));

// Check for null or undefined
var o = Object.freeze([, null, undefined, 'a', 1, Symbol('2')]);
assertFalse(o.hasOwnProperty('0')); // hole
assertTrue(o.hasOwnProperty('1'));
assertTrue(o.hasOwnProperty('2'));
assertTrue(o.hasOwnProperty('3'));
assertTrue(o.hasOwnProperty('4'));
assertTrue(o.hasOwnProperty('5'));
assertFalse(o.hasOwnProperty('6')); // out of bounds

// Sealed object.
// Check for objects.
assertTrue(Object.seal({x:12}).hasOwnProperty('x'));
assertFalse(Object.seal({x:12}).hasOwnProperty('y'));

// Check for strings.
assertTrue(Object.seal('').hasOwnProperty('length'));
assertTrue(Object.prototype.hasOwnProperty.call(Object.seal(''), 'length'));

// Check for numbers.
assertFalse(Object.seal(123).hasOwnProperty('length'));
assertFalse(Object.prototype.hasOwnProperty.call(Object.seal(123), 'length'));

// Direct vs. inherited properties.
var o = ['exist'];
Object.seal(o);
assertTrue(o.hasOwnProperty('0'));
assertFalse(o.hasOwnProperty('toString'));
assertFalse(o.hasOwnProperty('hasOwnProperty'));

// Using hasOwnProperty as a property name.
var foo = ['a'];
foo.hasOwnProperty = function() { return false; };
Object.seal(foo);
assertFalse(foo.hasOwnProperty('0')); // always returns false.

// Use another Object's hasOwnProperty
// and call it with 'this' set to foo.
assertTrue(({}).hasOwnProperty.call(foo, '0'));

// It's also possible to use the hasOwnProperty property
// from the Object prototype for this purpose.
assertTrue(Object.prototype.hasOwnProperty.call(foo, '0'));

// Check for null or undefined
var o = Object.seal([, null, undefined, 'a', 1, Symbol('2')]);
assertFalse(o.hasOwnProperty('0')); // hole.
assertTrue(o.hasOwnProperty('1'));
assertTrue(o.hasOwnProperty('2'));
assertTrue(o.hasOwnProperty('3'));
assertTrue(o.hasOwnProperty('4'));
assertTrue(o.hasOwnProperty('5'));
assertFalse(o.hasOwnProperty('6')); // out of bounds.

// Non-extensible object.
// Check for objects.
assertTrue(Object.preventExtensions({x:12}).hasOwnProperty('x'));
assertFalse(Object.preventExtensions({x:12}).hasOwnProperty('y'));

// Check for strings.
assertTrue(Object.preventExtensions('').hasOwnProperty('length'));
assertTrue(Object.prototype.hasOwnProperty.call(Object.preventExtensions(''), 'length'));

// Check for numbers.
assertFalse(Object.preventExtensions(123).hasOwnProperty('length'));
assertFalse(Object.prototype.hasOwnProperty.call(Object.preventExtensions(123), 'length'));

// Direct vs. inherited properties.
var o = ['exist'];
Object.preventExtensions(o);
assertTrue(o.hasOwnProperty('0'));
assertFalse(o.hasOwnProperty('toString'));
assertFalse(o.hasOwnProperty('hasOwnProperty'));

// Using hasOwnProperty as a property name.
var foo = ['a'];
foo.hasOwnProperty = function() { return false; };
Object.preventExtensions(foo);
assertFalse(foo.hasOwnProperty('0')); // always returns false.

// Use another Object's hasOwnProperty
// and call it with 'this' set to foo.
assertTrue(({}).hasOwnProperty.call(foo, '0'));

// It's also possible to use the hasOwnProperty property
// from the Object prototype for this purpose.
assertTrue(Object.prototype.hasOwnProperty.call(foo, '0'));

// Check for null or undefined.
var o = Object.preventExtensions([, null, undefined, 'a', 1, Symbol('2')]);
assertFalse(o.hasOwnProperty('0')); // hole.
assertTrue(o.hasOwnProperty('1'));
assertTrue(o.hasOwnProperty('2'));
assertTrue(o.hasOwnProperty('3'));
assertTrue(o.hasOwnProperty('4'));
assertTrue(o.hasOwnProperty('5'));
assertFalse(o.hasOwnProperty('6')); // out of bounds.