mirror of
https://github.com/tc39/test262.git
synced 2025-05-26 01:30:28 +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>
41 lines
1.2 KiB
JavaScript
41 lines
1.2 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: >
|
|
Use the intrinsic @@iterator and @@asyncIterator to check iterability
|
|
includes: [compareArray.js, asyncHelpers.js]
|
|
flags: [async]
|
|
features: [Array.fromAsync]
|
|
---*/
|
|
|
|
asyncTest(async function () {
|
|
// Replace the user-reachable Symbol.iterator and Symbol.asyncIterator with
|
|
// fake symbol keys
|
|
const originalSymbol = globalThis.Symbol;
|
|
const fakeIteratorSymbol = Symbol("iterator");
|
|
const fakeAsyncIteratorSymbol = Symbol("asyncIterator");
|
|
globalThis.Symbol = {
|
|
iterator: fakeIteratorSymbol,
|
|
asyncIterator: fakeAsyncIteratorSymbol,
|
|
};
|
|
|
|
const input = {
|
|
length: 3,
|
|
0: 0,
|
|
1: 1,
|
|
2: 2,
|
|
[fakeIteratorSymbol]() {
|
|
throw new Test262Error("The fake Symbol.iterator method should not be called");
|
|
},
|
|
[fakeAsyncIteratorSymbol]() {
|
|
throw new Test262Error("The fake Symbol.asyncIterator method should not be called");
|
|
}
|
|
};
|
|
const output = await Array.fromAsync(input);
|
|
assert.compareArray(output, [0, 1, 2]);
|
|
|
|
globalThis.Symbol = originalSymbol;
|
|
});
|