summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/fromAsync/mapfn-result-awaited-once-per-iteration.js
blob: c7d9a0a901e3c47fe036527a7aa256ce87bd565b (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
// |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: >
  The returned value from each invocation of the asynchronous mapping function
  is awaited exactly once.
info: |
  3.j.ii.6. If _mapping_ is *true*, then
    a. Let _mappedValue_ be Call(_mapfn_, _thisArg_, « _nextValue_, 𝔽(_k_) »).
    ...
    c. Set _mappedValue_ to Await(_mappedValue_).
flags: [async]
includes: [asyncHelpers.js, compareArray.js, temporalHelpers.js]
features: [Array.fromAsync]
---*/

const calls = [];
const expected = [
  "call mapping",
  "get thenable_0.then",
  "call thenable_0.then",
  "call mapping",
  "get thenable_1.then",
  "call thenable_1.then",
  "call mapping",
  "get thenable_2.then",
  "call thenable_2.then",
];

function mapping(val, ix) {
  calls.push("call mapping");
  const thenableName = `thenable_${ix}`;
  return TemporalHelpers.propertyBagObserver(calls, {
    then(resolve, reject) {
      calls.push(`call ${thenableName}.then`);
      resolve(val * 2);
    }
  }, thenableName)
}

asyncTest(async () => {
  const result = await Array.fromAsync([1, 2, 3], mapping);
  assert.compareArray(result, [2, 4, 6], "mapping function applied");
  assert.compareArray(calls, expected, "observable operations");
});