test262/test/built-ins/Array/fromAsync/mapfn-result-awaited-once-per-iteration.js
Philip Chimento c4d8f01d3d Array.fromAsync: Tests for mapfn and thisArg arguments
- normal case with synchronous and asynchronous mapfn
- a non-callable value is passed as mapfn
- behaviour of various values of thisArg in strict and sloppy mode
- mapfn result is awaited once per iteration
- iterator is closed when mapfn throws
2023-03-07 11:13:00 +01:00

48 lines
1.3 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 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");
});