| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 1 | // Copyright 2008 the V8 project authors. All rights reserved. |
| 2 | // Redistribution and use in source and binary forms, with or without |
| 3 | // modification, are permitted provided that the following conditions are |
| 4 | // met: |
| 5 | // |
| 6 | // * Redistributions of source code must retain the above copyright |
| 7 | // notice, this list of conditions and the following disclaimer. |
| 8 | // * Redistributions in binary form must reproduce the above |
| 9 | // copyright notice, this list of conditions and the following |
| 10 | // disclaimer in the documentation and/or other materials provided |
| 11 | // with the distribution. |
| 12 | // * Neither the name of Google Inc. nor the names of its |
| 13 | // contributors may be used to endorse or promote products derived |
| 14 | // from this software without specific prior written permission. |
| 15 | // |
| 16 | // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 17 | // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 18 | // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 19 | // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 20 | // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 21 | // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 22 | // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 23 | // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 | // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 | // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 | // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | |
| 28 | function f0() { |
| 29 | return this; |
| 30 | } |
| 31 | |
| 32 | function f1(a) { |
| 33 | return a; |
| 34 | } |
| 35 | |
| 36 | assertTrue(this === f0.apply(), "1-0"); |
| 37 | |
| 38 | assertTrue(this === f0.apply(this), "2a"); |
| 39 | assertTrue(this === f0.apply(this, new Array(1)), "2b"); |
| 40 | assertTrue(this === f0.apply(this, new Array(2)), "2c"); |
| 41 | assertTrue(this === f0.apply(this, new Array(4242)), "2d"); |
| 42 | |
| 43 | assertTrue(this === f0.apply(null), "3a"); |
| 44 | assertTrue(this === f0.apply(null, new Array(1)), "3b"); |
| 45 | assertTrue(this === f0.apply(null, new Array(2)), "3c"); |
| 46 | assertTrue(this === f0.apply(this, new Array(4242)), "3d"); |
| 47 | |
| 48 | assertTrue(this === f0.apply(void 0), "4a"); |
| 49 | assertTrue(this === f0.apply(void 0, new Array(1)), "4b"); |
| 50 | assertTrue(this === f0.apply(void 0, new Array(2)), "4c"); |
| 51 | |
| 52 | assertTrue(void 0 === f1.apply(), "1-1"); |
| 53 | |
| 54 | assertTrue(void 0 === f1.apply(this), "5a"); |
| 55 | assertTrue(void 0 === f1.apply(this, new Array(1)), "5b"); |
| 56 | assertTrue(void 0 === f1.apply(this, new Array(2)), "5c"); |
| 57 | assertTrue(void 0 === f1.apply(this, new Array(4242)), "5d"); |
| 58 | assertTrue(42 === f1.apply(this, new Array(42, 43)), "5e"); |
| 59 | assertEquals("foo", f1.apply(this, new Array("foo", "bar", "baz", "bo")), "5f"); |
| 60 | |
| 61 | assertTrue(void 0 === f1.apply(null), "6a"); |
| 62 | assertTrue(void 0 === f1.apply(null, new Array(1)), "6b"); |
| 63 | assertTrue(void 0 === f1.apply(null, new Array(2)), "6c"); |
| 64 | assertTrue(void 0 === f1.apply(null, new Array(4242)), "6d"); |
| 65 | assertTrue(42 === f1.apply(null, new Array(42, 43)), "6e"); |
| 66 | assertEquals("foo", f1.apply(null, new Array("foo", "bar", "baz", "bo")), "6f"); |
| 67 | |
| 68 | assertTrue(void 0 === f1.apply(void 0), "7a"); |
| 69 | assertTrue(void 0 === f1.apply(void 0, new Array(1)), "7b"); |
| 70 | assertTrue(void 0 === f1.apply(void 0, new Array(2)), "7c"); |
| 71 | assertTrue(void 0 === f1.apply(void 0, new Array(4242)), "7d"); |
| 72 | assertTrue(42 === f1.apply(void 0, new Array(42, 43)), "7e"); |
| 73 | assertEquals("foo", f1.apply(void 0, new Array("foo", "bar", "ba", "b")), "7f"); |
| 74 | |
| 75 | var arr = new Array(42, "foo", "fish", "horse"); |
| 76 | function j(a, b, c, d, e, f, g, h, i, j, k, l) { |
| 77 | return "" + a + b + c + d + e + f + g + h + i + j + k + l; |
| 78 | } |
| 79 | |
| 80 | |
| 81 | var expect = "42foofishhorse"; |
| 82 | for (var i = 0; i < 8; i++) |
| 83 | expect += "undefined"; |
| 84 | assertEquals(expect, j.apply(undefined, arr), "apply to undefined"); |
| 85 | |
| 86 | assertThrows("f0.apply(this, 1);"); |
| 87 | assertThrows("f0.apply(this, 1, 2);"); |
| 88 | assertThrows("f0.apply(this, 1, new Array(2));"); |
| 89 | |
| 90 | function f() { |
| 91 | var doo = ""; |
| 92 | for (var i = 0; i < arguments.length; i++) { |
| 93 | doo += arguments[i]; |
| 94 | } |
| 95 | return doo; |
| 96 | } |
| 97 | |
| 98 | assertEquals("42foofishhorse", f.apply(this, arr), "apply to this"); |
| 99 | |
| 100 | function s() { |
| 101 | var doo = this; |
| 102 | for (var i = 0; i < arguments.length; i++) { |
| 103 | doo += arguments[i]; |
| 104 | } |
| 105 | return doo; |
| 106 | } |
| 107 | |
| 108 | assertEquals("bar42foofishhorse", s.apply("bar", arr), "apply to string"); |
| 109 | |
| 110 | function al() { |
| 111 | assertEquals(345, this); |
| 112 | return arguments.length + arguments[arguments.length - 1]; |
| 113 | } |
| 114 | |
| Kristian Monsen | 9dcf7e2 | 2010-06-28 14:14:28 +0100 | [diff] [blame] | 115 | var stack_corner_case_failure = false; |
| 116 | |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 117 | for (var j = 1; j < 0x40000000; j <<= 1) { |
| 118 | try { |
| 119 | var a = new Array(j); |
| 120 | a[j - 1] = 42; |
| 121 | assertEquals(42 + j, al.apply(345, a)); |
| 122 | } catch (e) { |
| Kristian Monsen | 9dcf7e2 | 2010-06-28 14:14:28 +0100 | [diff] [blame] | 123 | if (e.toString().indexOf("Maximum call stack size exceeded") != -1) { |
| 124 | // For some combinations of build settings, it may be the case that the |
| 125 | // stack here is just tall enough to contain the array whose size is |
| 126 | // specified by j but is not tall enough to contain the activation |
| 127 | // record for the apply call. Allow one such corner case through, |
| 128 | // checking that the length check will do the right thing for an array |
| 129 | // the next size up. |
| 130 | assertEquals(false, stack_corner_case_failure); |
| 131 | stack_corner_case_failure = true; |
| 132 | continue; |
| 133 | } |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 134 | assertTrue(e.toString().indexOf("Function.prototype.apply") != -1, |
| 135 | "exception does not contain Function.prototype.apply: " + |
| 136 | e.toString()); |
| 137 | for (; j < 0x40000000; j <<= 1) { |
| 138 | var caught = false; |
| 139 | try { |
| 140 | a = new Array(j); |
| 141 | a[j - 1] = 42; |
| 142 | al.apply(345, a); |
| Kristian Monsen | 9dcf7e2 | 2010-06-28 14:14:28 +0100 | [diff] [blame] | 143 | assertUnreachable("Apply of array with length " + a.length + |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 144 | " should have thrown"); |
| 145 | } catch (e) { |
| 146 | assertTrue(e.toString().indexOf("Function.prototype.apply") != -1, |
| 147 | "exception does not contain Function.prototype.apply [" + |
| 148 | "length = " + j + "]: " + e.toString()); |
| 149 | caught = true; |
| 150 | } |
| 151 | assertTrue(caught, "exception not caught"); |
| 152 | } |
| 153 | break; |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | var primes = new Array(0); |
| 158 | |
| 159 | function isPrime(possible_prime) { |
| 160 | for (var d = 0; d < primes.length; d++) { |
| 161 | var p = primes[d]; |
| 162 | if (possible_prime % p == 0) |
| 163 | return false; |
| 164 | if (p * p > possible_prime) |
| 165 | return true; |
| 166 | } |
| 167 | return true; |
| 168 | } |
| 169 | |
| 170 | for (var i = 2; i < 10000; i++) { |
| 171 | if (isPrime(i)) { |
| 172 | primes.push(i); |
| 173 | } |
| 174 | } |
| 175 | |
| 176 | assertEquals(1229, primes.length); |
| 177 | |
| 178 | var same_primes = Array.prototype.constructor.apply(Array, primes); |
| 179 | |
| 180 | for (var i = 0; i < primes.length; i++) |
| 181 | assertEquals(primes[i], same_primes[i], "prime" + primes[i]); |
| 182 | assertEquals(primes.length, same_primes.length, "prime-length"); |
| 183 | |
| 184 | |
| 185 | Array.prototype["1"] = "sep"; |
| 186 | |
| 187 | var holey = new Array(3); |
| 188 | holey[0] = "mor"; |
| 189 | holey[2] = "er"; |
| 190 | |
| 191 | assertEquals("morseper", String.prototype.concat.apply("", holey), |
| 192 | "moreseper0"); |
| 193 | assertEquals("morseper", String.prototype.concat.apply("", holey, 1), |
| 194 | "moreseper1"); |
| 195 | assertEquals("morseper", String.prototype.concat.apply("", holey, 1, 2), |
| 196 | "moreseper2"); |
| 197 | assertEquals("morseper", String.prototype.concat.apply("", holey, 1, 2, 3), |
| 198 | "morseper3"); |
| 199 | assertEquals("morseper", String.prototype.concat.apply("", holey, 1, 2, 3, 4), |
| 200 | "morseper4"); |
| 201 | |
| 202 | primes[0] = ""; |
| 203 | primes[1] = holey; |
| 204 | assertThrows("String.prototype.concat.apply.apply('foo', primes)"); |
| 205 | assertEquals("morseper", |
| 206 | String.prototype.concat.apply.apply(String.prototype.concat, primes), |
| 207 | "moreseper-prime"); |
| 208 | |
| 209 | delete(Array.prototype["1"]); |