function-call.js 10.6 KB
Newer Older
1 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 28 29 30 31 32 33 34 35 36 37 38 39 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
// Copyright 2011 the V8 project authors. All rights reserved.
// 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.


var should_throw_on_null_and_undefined =
    [Object.prototype.toLocaleString,
     Object.prototype.valueOf,
     Object.prototype.hasOwnProperty,
     Object.prototype.isPrototypeOf,
     Object.prototype.propertyIsEnumerable,
     Array.prototype.concat,
     Array.prototype.join,
     Array.prototype.pop,
     Array.prototype.push,
     Array.prototype.reverse,
     Array.prototype.shift,
     Array.prototype.slice,
     Array.prototype.sort,
     Array.prototype.splice,
     Array.prototype.unshift,
     Array.prototype.indexOf,
     Array.prototype.lastIndexOf,
     Array.prototype.every,
     Array.prototype.some,
     Array.prototype.forEach,
     Array.prototype.map,
     Array.prototype.filter,
     Array.prototype.reduce,
     Array.prototype.reduceRight,
     String.prototype.charAt,
     String.prototype.charCodeAt,
     String.prototype.concat,
     String.prototype.indexOf,
     String.prototype.lastIndexOf,
     String.prototype.localeCompare,
     String.prototype.match,
     String.prototype.replace,
     String.prototype.search,
     String.prototype.slice,
     String.prototype.split,
     String.prototype.substring,
     String.prototype.toLowerCase,
     String.prototype.toLocaleLowerCase,
     String.prototype.toUpperCase,
     String.prototype.toLocaleUpperCase,
70
     String.prototype.trim];
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

// Non generic natives do not work on any input other than the specific
// type, but since this change will allow call to be invoked with undefined
// or null as this we still explicitly test that we throw on these here.
var non_generic =
    [Array.prototype.toString,
     Array.prototype.toLocaleString,
     Function.prototype.toString,
     Function.prototype.call,
     Function.prototype.apply,
     String.prototype.toString,
     String.prototype.valueOf,
     Boolean.prototype.toString,
     Boolean.prototype.valueOf,
     Number.prototype.toString,
     Number.prototype.valueOf,
     Number.prototype.toFixed,
     Number.prototype.toExponential,
     Number.prototype.toPrecision,
     Date.prototype.toString,
     Date.prototype.toDateString,
     Date.prototype.toTimeString,
     Date.prototype.toLocaleString,
     Date.prototype.toLocaleDateString,
     Date.prototype.toLocaleTimeString,
     Date.prototype.valueOf,
     Date.prototype.getTime,
     Date.prototype.getFullYear,
     Date.prototype.getUTCFullYear,
     Date.prototype.getMonth,
     Date.prototype.getUTCMonth,
     Date.prototype.getDate,
     Date.prototype.getUTCDate,
     Date.prototype.getDay,
     Date.prototype.getUTCDay,
     Date.prototype.getHours,
     Date.prototype.getUTCHours,
     Date.prototype.getMinutes,
     Date.prototype.getUTCMinutes,
     Date.prototype.getSeconds,
     Date.prototype.getUTCSeconds,
     Date.prototype.getMilliseconds,
     Date.prototype.getUTCMilliseconds,
     Date.prototype.getTimezoneOffset,
     Date.prototype.setTime,
     Date.prototype.setMilliseconds,
     Date.prototype.setUTCMilliseconds,
     Date.prototype.setSeconds,
     Date.prototype.setUTCSeconds,
     Date.prototype.setMinutes,
     Date.prototype.setUTCMinutes,
     Date.prototype.setHours,
     Date.prototype.setUTCHours,
     Date.prototype.setDate,
     Date.prototype.setUTCDate,
     Date.prototype.setMonth,
     Date.prototype.setUTCMonth,
     Date.prototype.setFullYear,
     Date.prototype.setUTCFullYear,
     Date.prototype.toUTCString,
     Date.prototype.toISOString,
     Date.prototype.toJSON,
     RegExp.prototype.exec,
     RegExp.prototype.test,
135 136
     RegExp.prototype.toString,
     Error.prototype.toString];
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151


// Mapping functions.
var mapping_functions =
    [Array.prototype.every,
     Array.prototype.some,
     Array.prototype.forEach,
     Array.prototype.map,
     Array.prototype.filter];

// Reduce functions.
var reducing_functions =
    [Array.prototype.reduce,
     Array.prototype.reduceRight];

152 153
function checkExpectedMessage(e) {
  assertTrue(e.message.indexOf("called on null or undefined") >= 0 ||
154 155
      e.message.indexOf("invoked on undefined or null value") >= 0 ||
      e.message.indexOf("Cannot convert undefined or null to object") >= 0);
156 157
}

158 159 160 161 162
// Test that all natives using the ToObject call throw the right exception.
for (var i = 0; i < should_throw_on_null_and_undefined.length; i++) {
  // Sanity check that all functions are correct
  assertEquals(typeof(should_throw_on_null_and_undefined[i]), "function");

163
  var exception = false;
164
  try {
165 166 167 168
    // We need to pass a dummy object argument ({}) to these functions because
    // of Object.prototype.isPrototypeOf's special behavior, see issue 3483
    // for more details.
    should_throw_on_null_and_undefined[i].call(null, {});
169
  } catch (e) {
170
    exception = true;
171
    checkExpectedMessage(e);
172
  }
173
  assertTrue(exception);
174

175
  exception = false;
176
  try {
177
    should_throw_on_null_and_undefined[i].call(undefined, {});
178
  } catch (e) {
179
    exception = true;
180
    checkExpectedMessage(e);
181
  }
182
  assertTrue(exception);
183

184
  exception = false;
185
  try {
186
    should_throw_on_null_and_undefined[i].apply(null, [{}]);
187
  } catch (e) {
188
    exception = true;
189
    checkExpectedMessage(e);
190
  }
191
  assertTrue(exception);
192

193
  exception = false;
194
  try {
195
    should_throw_on_null_and_undefined[i].apply(undefined, [{}]);
196
  } catch (e) {
197
    exception = true;
198
    checkExpectedMessage(e);
199
  }
200
  assertTrue(exception);
201 202 203 204 205 206
}

// Test that all natives that are non generic throw on null and undefined.
for (var i = 0; i < non_generic.length; i++) {
  // Sanity check that all functions are correct
  assertEquals(typeof(non_generic[i]), "function");
207 208

  exception = false;
209 210 211
  try {
    non_generic[i].call(null);
  } catch (e) {
212
    exception = true;
213 214
    assertTrue(e instanceof TypeError);
  }
215
  assertTrue(exception);
216

217
  exception = false;
218 219 220
  try {
    non_generic[i].call(null);
  } catch (e) {
221
    exception = true;
222 223
    assertTrue(e instanceof TypeError);
  }
224
  assertTrue(exception);
225

226
  exception = false;
227 228 229
  try {
    non_generic[i].apply(null);
  } catch (e) {
230
    exception = true;
231 232
    assertTrue(e instanceof TypeError);
  }
233
  assertTrue(exception);
234

235
  exception = false;
236 237 238
  try {
    non_generic[i].apply(null);
  } catch (e) {
239
    exception = true;
240 241
    assertTrue(e instanceof TypeError);
  }
242
  assertTrue(exception);
243 244 245 246 247
}


// Test that we still throw when calling with thisArg null or undefined
// through an array mapping function.
248 249 250
// We need to make sure that the elements of `array` are all object values,
// see issue 3483 for more details.
var array = [{}, [], new Number, new Map, new WeakSet];
251 252
for (var j = 0; j < mapping_functions.length; j++) {
  for (var i = 0; i < should_throw_on_null_and_undefined.length; i++) {
253
    exception = false;
254 255 256 257 258
    try {
      mapping_functions[j].call(array,
                                should_throw_on_null_and_undefined[i],
                                null);
    } catch (e) {
259
      exception = true;
260
      checkExpectedMessage(e);
261
    }
262
    assertTrue(exception);
263

264
    exception = false;
265 266 267 268 269
    try {
      mapping_functions[j].call(array,
                                should_throw_on_null_and_undefined[i],
                                undefined);
    } catch (e) {
270
      exception = true;
271
      checkExpectedMessage(e);
272
    }
273
    assertTrue(exception);
274 275 276 277 278
  }
}

for (var j = 0; j < mapping_functions.length; j++) {
  for (var i = 0; i < non_generic.length; i++) {
279
    exception = false;
280 281 282 283 284
    try {
      mapping_functions[j].call(array,
                                non_generic[i],
                                null);
    } catch (e) {
285
      exception = true;
286 287
      assertTrue(e instanceof TypeError);
    }
288
    assertTrue(exception);
289

290
    exception = false;
291 292 293 294 295
    try {
      mapping_functions[j].call(array,
                                non_generic[i],
                                undefined);
    } catch (e) {
296
      exception = true;
297 298
      assertTrue(e instanceof TypeError);
    }
299
    assertTrue(exception);
300 301 302 303 304 305 306
  }
}


// Reduce functions do a call with null as this argument.
for (var j = 0; j < reducing_functions.length; j++) {
  for (var i = 0; i < should_throw_on_null_and_undefined.length; i++) {
307
    exception = false;
308 309 310
    try {
      reducing_functions[j].call(array, should_throw_on_null_and_undefined[i]);
    } catch (e) {
311
      exception = true;
312
      checkExpectedMessage(e);
313
    }
314
    assertTrue(exception);
315

316
    exception = false;
317 318 319
    try {
      reducing_functions[j].call(array, should_throw_on_null_and_undefined[i]);
    } catch (e) {
320
      exception = true;
321
      checkExpectedMessage(e);
322
    }
323
    assertTrue(exception);
324 325 326 327 328
  }
}

for (var j = 0; j < reducing_functions.length; j++) {
  for (var i = 0; i < non_generic.length; i++) {
329
    exception = false;
330 331 332
    try {
      reducing_functions[j].call(array, non_generic[i]);
    } catch (e) {
333
      exception = true;
334 335
      assertTrue(e instanceof TypeError);
    }
336
    assertTrue(exception);
337

338
    exception = false;
339 340 341
    try {
      reducing_functions[j].call(array, non_generic[i]);
    } catch (e) {
342
      exception = true;
343 344
      assertTrue(e instanceof TypeError);
    }
345
    assertTrue(exception);
346 347 348 349 350 351 352 353 354 355
  }
}


// Object.prototype.toString()
assertEquals(Object.prototype.toString.call(null),
             '[object Null]')

assertEquals(Object.prototype.toString.call(undefined),
             '[object Undefined]')