summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/fromAsync/this-constructor.js
blob: e8c2c1948f9d161f18678aa6b1ae15a200b2eeb8 (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
// |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: >
  Constructs the this-value once if asyncItems is iterable, twice if not, and
  length and element properties are set correctly on the result
info: |
  3.e. If IsConstructor(_C_) is *true*, then
    i. Let _A_ be ? Construct(_C_).
  ...
  j. If _iteratorRecord_ is not *undefined*, then
    ...
  k. Else,
    ...
    iv. If IsConstructor(_C_) is *true*, then
      1. Let _A_ be ? Construct(_C_, « 𝔽(_len_) »).
includes: [compareArray.js, asyncHelpers.js]
flags: [async]
features: [Array.fromAsync]
---*/

asyncTest(async function () {
  const constructorCalls = [];

  function MyArray(...args) {
    constructorCalls.push(args);
  }

  let result = await Array.fromAsync.call(MyArray, [1, 2]);
  assert(result instanceof MyArray, "result is an instance of the constructor this-value");
  assert.sameValue(result.length, 2, "length is set on result");
  assert.sameValue(result[0], 1, "element 0 is set on result");
  assert.sameValue(result[1], 2, "element 1 is set on result");
  assert.sameValue(constructorCalls.length, 1, "constructor is called once");
  assert.compareArray(constructorCalls[0], [], "constructor is called with no arguments");

  constructorCalls.splice(0);  // reset

  result = await Array.fromAsync.call(MyArray, {
    length: 2,
    0: 1,
    1: 2
  });
  assert(result instanceof MyArray, "result is an instance of the constructor this-value");
  assert.sameValue(result.length, 2, "length is set on result");
  assert.sameValue(result[0], 1, "element 0 is set on result");
  assert.sameValue(result[1], 2, "element 1 is set on result");
  assert.sameValue(constructorCalls.length, 1, "constructor is called once");
  assert.compareArray(constructorCalls[0], [2], "constructor is called with a length argument");
});