mirror of
https://github.com/tc39/test262.git
synced 2025-05-29 11:10:32 +02:00
This contains a few more tests for Array.fromAsync, in addition to what has already been merged and what is under review at #3791. This covers the following items from the testing plan at #3725: - Success cases - Creates promise - Create new array/arraylike in promise (with length = length property) - Input - Invalid input values - nonconforming object (arraylike without length, missing keys) - Covered by polyfill tests - Result promise rejects if length access fails (non-iterable input) - Unaffected by globalThis.Symbol mutation (non-iterable) - this-value - this-value is a constructor - this-value is not a constructor - If this is a constructor, and items doesn't have a Symbol.iterator, returns a new instance of this - Iterator closed when property creation on this fails - Returned promise rejects when ^ - Other tests - Error is thrown for all CreateDataProperty fails - Non-writable properties are overwritten by CreateDataProperty - Input with missing values Co-authored-by: Ms2ger <Ms2ger@igalia.com>
54 lines
2.0 KiB
JavaScript
54 lines
2.0 KiB
JavaScript
// 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, 2, "constructor is called twice");
|
||
assert.compareArray(constructorCalls[0], [], "constructor is called first with no arguments");
|
||
assert.compareArray(constructorCalls[1], [2], "constructor is called second with a length argument");
|
||
});
|