summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArrays/from/BigInt/mapfn-is-not-callable.js
blob: 36565b495dcaec7665be6905869501ef02a9d405 (plain)
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
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.from
description: Throw a TypeError exception is mapfn is not callable
info: |
  22.2.2.1 %TypedArray%.from ( source [ , mapfn [ , thisArg ] ] )

  ...
  3. If mapfn was supplied and mapfn is not undefined, then
    a. If IsCallable(mapfn) is false, throw a TypeError exception.
  ...
includes: [testBigIntTypedArray.js]
features: [BigInt, Symbol, Symbol.iterator, TypedArray]
---*/

var getIterator = 0;
var arrayLike = {};
Object.defineProperty(arrayLike, Symbol.iterator, {
  get: function() {
    getIterator++;
  }
});

testWithBigIntTypedArrayConstructors(function(TA) {
  assert.throws(TypeError, function() {
    TA.from(arrayLike, null);
  }, "mapfn is null");

  assert.throws(TypeError, function() {
    TA.from(arrayLike, 42);
  }, "mapfn is a number");

  assert.throws(TypeError, function() {
    TA.from(arrayLike, "");
  }, "mapfn is a string");

  assert.throws(TypeError, function() {
    TA.from(arrayLike, {});
  }, "mapfn is an ordinary object");

  assert.throws(TypeError, function() {
    TA.from(arrayLike, []);
  }, "mapfn is an array");

  assert.throws(TypeError, function() {
    TA.from(arrayLike, true);
  }, "mapfn is a boolean");

  var s = Symbol("1");
  assert.throws(TypeError, function() {
    TA.from(arrayLike, s);
  }, "mapfn is a symbol");

  assert.sameValue(
    getIterator, 0,
    "IsCallable(mapfn) check occurs before getting source[@@iterator]"
  );
});