summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/fromAsync/asyncitems-arraylike-too-long.js
blob: c634be42ec6ddc0c5eea55733f85ab49885faaa3 (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
// |reftest| async
// Copyright (C) 2023 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-array.fromasync
description: >
  Promise is rejected if the length of the array-like to copy is out of range
info: |
  j. If _iteratorRecord_ is not *undefined*, then
    ...
  k. Else,
    ...
    iv. If IsConstructor(_C_) is *true*, then
      ...
    v. Else,
      1. Let _A_ be ? ArrayCreate(_len_).

  ArrayCreate, step 1:
    1. If _length_ > 2³² - 1, throw a *RangeError* exception.
includes: [asyncHelpers.js]
flags: [async]
features: [Array.fromAsync]
---*/

asyncTest(async function () {
  const notConstructor = {};

  await assert.throwsAsync(RangeError, () => Array.fromAsync.call(notConstructor, {
    length: 4294967296  // 2³²
  }), "Array-like with excessive length");
});