1# Copyright 2013 the V8 project authors. All rights reserved. 2# Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 3# 4# Redistribution and use in source and binary forms, with or without 5# modification, are permitted provided that the following conditions 6# are met: 7# 1. Redistributions of source code must retain the above copyright 8# notice, this list of conditions and the following disclaimer. 9# 2. Redistributions in binary form must reproduce the above copyright 10# notice, this list of conditions and the following disclaimer in the 11# documentation and/or other materials provided with the distribution. 12# 13# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY 14# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 15# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 16# DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY 17# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 18# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 19# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 20# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 21# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 22# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 24Test some array functions on non-array objects. 25 26On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 27 28 29PASS properties(['b', 'a']) is '0:b, 1:a, length:2(DontDelete, DontEnum)' 30PASS properties({ length:2, 0:'b', 1:'a' }) is '0:b, 1:a, length:2' 31PASS properties(new OneItemConstructor) is '0:a(FromPrototype), length:1(FromPrototype)' 32PASS properties(new TwoItemConstructor) is '0:b(FromPrototype), 1:a(FromPrototype), length:2(FromPrototype)' 33PASS Array.prototype.toString.call({}) is "[object Object]" 34PASS Array.prototype.toString.call(new Date) is "[object Date]" 35PASS Array.prototype.toString.call({sort: function() { return 'sort' }}) is "[object Object]" 36PASS Array.prototype.toString.call({join: function() { return 'join' }}) is "join" 37PASS Array.prototype.toString.call({__proto__: Array.prototype, 0: 'a', 1: 'b', 2: 'c', length: 3}) is "a,b,c" 38PASS ({__proto__: Array.prototype, 0: 'a', 1: 'b', 2: 'c', length: 3}).toString() is "a,b,c" 39PASS Array.prototype.toString.call({__proto__: Array.prototype, 0: 'a', 1: 'b', 2: 'c', length: 3, join: function() { return 'join' }}) is "join" 40PASS ({__proto__: Array.prototype, 0: 'a', 1: 'b', 2: 'c', length: 3, join: function() { return 'join' }}).toString() is "join" 41PASS Array.prototype.toString.call(42) is "Number.prototype.join:42" 42PASS [0, 1, 2].toString() is "array-join" 43FAIL Array.prototype.toLocaleString.call({}) should throw an exception. Was . 44PASS Array.prototype.concat.call(x = { length:2, 0:'b', 1:'a' }) is [x] 45PASS Array.prototype.join.call({}) is '' 46PASS Array.prototype.join.call(['b', 'a']) is 'b,a' 47PASS Array.prototype.join.call({ length:2, 0:'b', 1:'a' }) is 'b,a' 48PASS Array.prototype.join.call(new TwoItemConstructor) is 'b,a' 49PASS Array.prototype.pop.call({}) is undefined 50PASS Array.prototype.pop.call({ length:2, 0:'b', 1:'a' }) is 'a' 51PASS Array.prototype.pop.call({ length:2, 0:'b', 1:'a' }) is 'a' 52PASS Array.prototype.pop.call(new TwoItemConstructor) is 'a' 53PASS Array.prototype.pop.call(x = {}); properties(x) is 'length:0' 54PASS Array.prototype.pop.call(x = ['b', 'a']); properties(x) is '0:b, length:1(DontDelete, DontEnum)' 55PASS Array.prototype.pop.call(x = { length:2, 0:'b', 1:'a' }); properties(x) is '0:b, length:1' 56PASS Array.prototype.pop.call(x = new TwoItemConstructor); properties(x) is '0:b(FromPrototype), 1:a(FromPrototype), length:1' 57PASS Array.prototype.push.call({}) is 0 58PASS Array.prototype.push.call(['b', 'a']) is 2 59PASS Array.prototype.push.call({ length:2, 0:'b', 1:'a' }) is 2 60PASS Array.prototype.push.call(new TwoItemConstructor) is 2 61PASS Array.prototype.push.call(x = {}); properties(x) is 'length:0' 62PASS Array.prototype.push.call(x = ['b', 'a']); properties(x) is '0:b, 1:a, length:2(DontDelete, DontEnum)' 63PASS Array.prototype.push.call(x = { length:2, 0:'b', 1:'a' }); properties(x) is '0:b, 1:a, length:2' 64PASS Array.prototype.push.call(x = new TwoItemConstructor); properties(x) is '0:b(FromPrototype), 1:a(FromPrototype), length:2' 65PASS Array.prototype.push.call({}, 'c') is 1 66PASS Array.prototype.push.call(['b', 'a'], 'c') is 3 67PASS Array.prototype.push.call({ length:2, 0:'b', 1:'a' }, 'c') is 3 68PASS Array.prototype.push.call(new TwoItemConstructor, 'c') is 3 69PASS Array.prototype.push.call(x = {}, 'c'); properties(x) is '0:c, length:1' 70PASS Array.prototype.push.call(x = ['b', 'a'], 'c'); properties(x) is '0:b, 1:a, 2:c, length:3(DontDelete, DontEnum)' 71PASS Array.prototype.push.call(x = { length:2, 0:'b', 1:'a' }, 'c'); properties(x) is '0:b, 1:a, 2:c, length:3' 72PASS Array.prototype.push.call(x = new TwoItemConstructor, 'c'); properties(x) is '0:b(FromPrototype), 1:a(FromPrototype), 2:c, length:3' 73PASS properties(Array.prototype.reverse.call({})) is '' 74PASS properties(Array.prototype.reverse.call(['b', 'a'])) is '0:a, 1:b, length:2(DontDelete, DontEnum)' 75PASS properties(Array.prototype.reverse.call({ length:2, 0:'b', 1:'a' })) is '0:a, 1:b, length:2' 76PASS properties(Array.prototype.reverse.call(new OneItemConstructor)) is '0:a(FromPrototype), length:1(FromPrototype)' 77PASS properties(Array.prototype.reverse.call(new TwoItemConstructor)) is '0:a, 1:b, length:2(FromPrototype)' 78PASS Array.prototype.shift.call({}) is undefined 79PASS Array.prototype.shift.call(['b', 'a']) is 'b' 80PASS Array.prototype.shift.call({ length:2, 0:'b', 1:'a' }) is 'b' 81PASS Array.prototype.shift.call(new TwoItemConstructor) is 'b' 82PASS Array.prototype.shift.call(x = {}); properties(x) is 'length:0' 83PASS Array.prototype.shift.call(x = ['b', 'a']); properties(x) is '0:a, length:1(DontDelete, DontEnum)' 84PASS Array.prototype.shift.call(x = { length:2, 0:'b', 1:'a' }); properties(x) is '0:a, length:1' 85PASS Array.prototype.shift.call(x = new TwoItemConstructor); properties(x) is '0:a, 1:a(FromPrototype), length:1' 86PASS Array.prototype.slice.call({}, 0, 1) is [] 87PASS Array.prototype.slice.call(['b', 'a'], 0, 1) is ['b'] 88PASS Array.prototype.slice.call({ length:2, 0:'b', 1:'a' }, 0, 1) is ['b'] 89PASS Array.prototype.slice.call(new TwoItemConstructor, 0, 1) is ['b'] 90PASS properties(Array.prototype.sort.call({})) is '' 91PASS properties(Array.prototype.sort.call(['b', 'a'])) is '0:a, 1:b, length:2(DontDelete, DontEnum)' 92PASS properties(Array.prototype.sort.call({ length:2, 0:'b', 1:'a' })) is '0:a, 1:b, length:2' 93PASS properties(Array.prototype.sort.call(new OneItemConstructor)) is '0:a(FromPrototype), length:1(FromPrototype)' 94PASS properties(Array.prototype.sort.call(new TwoItemConstructor)) is '0:a, 1:b, length:2(FromPrototype)' 95PASS Array.prototype.splice.call({}, 0, 1) is [] 96PASS Array.prototype.splice.call(['b', 'a'], 0, 1) is ['b'] 97PASS Array.prototype.splice.call({ length:2, 0:'b', 1:'a' }, 0, 1) is ['b'] 98PASS Array.prototype.splice.call(new TwoItemConstructor, 0, 1) is ['b'] 99PASS Array.prototype.splice.call(x = {}, 0, 1); properties(x) is 'length:0' 100PASS Array.prototype.splice.call(x = ['b', 'a'], 0, 1); properties(x) is '0:a, length:1(DontDelete, DontEnum)' 101PASS Array.prototype.splice.call(x = { length:2, 0:'b', 1:'a' }, 0, 1); properties(x) is '0:a, length:1' 102PASS Array.prototype.splice.call(x = new TwoItemConstructor, 0, 1); properties(x) is '0:a, 1:a(FromPrototype), length:1' 103PASS Array.prototype.unshift.call({}) is 0 104PASS Array.prototype.unshift.call(['b', 'a']) is 2 105PASS Array.prototype.unshift.call({ length:2, 0:'b', 1:'a' }) is 2 106PASS Array.prototype.unshift.call(new TwoItemConstructor) is 2 107PASS Array.prototype.unshift.call(x = {}); properties(x) is 'length:0' 108PASS Array.prototype.unshift.call(x = ['b', 'a']); properties(x) is '0:b, 1:a, length:2(DontDelete, DontEnum)' 109PASS Array.prototype.unshift.call(x = { length:2, 0:'b', 1:'a' }); properties(x) is '0:b, 1:a, length:2' 110PASS Array.prototype.unshift.call(x = new TwoItemConstructor); properties(x) is '0:b(FromPrototype), 1:a(FromPrototype), length:2' 111PASS Array.prototype.unshift.call({}, 'c') is 1 112PASS Array.prototype.unshift.call(['b', 'a'], 'c') is 3 113PASS Array.prototype.unshift.call({ length:2, 0:'b', 1:'a' }, 'c') is 3 114PASS Array.prototype.unshift.call(new TwoItemConstructor, 'c') is 3 115PASS Array.prototype.unshift.call(x = {}, 'c'); properties(x) is '0:c, length:1' 116PASS Array.prototype.unshift.call(x = ['b', 'a'], 'c'); properties(x) is '0:c, 1:b, 2:a, length:3(DontDelete, DontEnum)' 117PASS Array.prototype.unshift.call(x = { length:2, 0:'b', 1:'a' }, 'c'); properties(x) is '0:c, 1:b, 2:a, length:3' 118PASS Array.prototype.unshift.call(x = new TwoItemConstructor, 'c'); properties(x) is '0:c, 1:b, 2:a, length:3' 119PASS successfullyParsed is true 120 121TEST COMPLETE 122 123