mirror of
https://github.com/tc39/test262.git
synced 2025-05-30 19:50: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>
76 lines
2.3 KiB
JavaScript
76 lines
2.3 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: >
|
|
Order of user-observable operations on a custom this-value and its instances
|
|
includes: [compareArray.js, asyncHelpers.js]
|
|
flags: [async]
|
|
features: [Array.fromAsync]
|
|
---*/
|
|
|
|
function formatPropertyName(propertyKey, objectName = "") {
|
|
switch (typeof propertyKey) {
|
|
case "symbol":
|
|
if (Symbol.keyFor(propertyKey) !== undefined) {
|
|
return `${objectName}[Symbol.for('${Symbol.keyFor(propertyKey)}')]`;
|
|
} else if (propertyKey.description.startsWith('Symbol.')) {
|
|
return `${objectName}[${propertyKey.description}]`;
|
|
} else {
|
|
return `${objectName}[Symbol('${propertyKey.description}')]`
|
|
}
|
|
case "string":
|
|
if (propertyKey !== String(Number(propertyKey)))
|
|
return objectName ? `${objectName}.${propertyKey}` : propertyKey;
|
|
// fall through
|
|
default:
|
|
// integer or string integer-index
|
|
return `${objectName}[${propertyKey}]`;
|
|
}
|
|
}
|
|
|
|
asyncTest(async function () {
|
|
const expectedCalls = [
|
|
"construct MyArray",
|
|
"defineProperty A[0]",
|
|
"defineProperty A[1]",
|
|
"set A.length"
|
|
];
|
|
const actualCalls = [];
|
|
|
|
function MyArray(...args) {
|
|
actualCalls.push("construct MyArray");
|
|
return new Proxy(Object.create(null), {
|
|
set(target, key, value) {
|
|
actualCalls.push(`set ${formatPropertyName(key, "A")}`);
|
|
return Reflect.set(target, key, value);
|
|
},
|
|
defineProperty(target, key, descriptor) {
|
|
actualCalls.push(`defineProperty ${formatPropertyName(key, "A")}`);
|
|
return Reflect.defineProperty(target, key, descriptor);
|
|
}
|
|
});
|
|
}
|
|
|
|
let result = await Array.fromAsync.call(MyArray, [1, 2]);
|
|
assert.compareArray(expectedCalls, actualCalls, "order of operations for array argument");
|
|
|
|
actualCalls.splice(0); // reset
|
|
|
|
// Note https://github.com/tc39/proposal-array-from-async/issues/35
|
|
const expectedCallsForArrayLike = [
|
|
"construct MyArray",
|
|
"construct MyArray",
|
|
"defineProperty A[0]",
|
|
"defineProperty A[1]",
|
|
"set A.length"
|
|
];
|
|
result = await Array.fromAsync.call(MyArray, {
|
|
length: 2,
|
|
0: 1,
|
|
1: 2
|
|
});
|
|
assert.compareArray(expectedCallsForArrayLike, actualCalls, "order of operations for array-like argument");
|
|
});
|