summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Promise/any/resolved-sequence-with-rejections.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /js/src/tests/test262/built-ins/Promise/any/resolved-sequence-with-rejections.js
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/tests/test262/built-ins/Promise/any/resolved-sequence-with-rejections.js')
-rw-r--r--js/src/tests/test262/built-ins/Promise/any/resolved-sequence-with-rejections.js65
1 files changed, 65 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Promise/any/resolved-sequence-with-rejections.js b/js/src/tests/test262/built-ins/Promise/any/resolved-sequence-with-rejections.js
new file mode 100644
index 0000000000..5562617df6
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Promise/any/resolved-sequence-with-rejections.js
@@ -0,0 +1,65 @@
+// |reftest| async
+// Copyright (C) 2020 Rick Waldron. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-promise.any
+description: Resolution ticks are set in a predictable sequence
+info: |
+ Runtime Semantics: PerformPromiseAny ( iteratorRecord, constructor, resultCapability )
+
+ Let remainingElementsCount be a new Record { [[Value]]: 1 }.
+ ...
+
+ Set remainingElementsCount.[[Value]] to remainingElementsCount.[[Value]] - 1.
+ If remainingElementsCount.[[Value]] is 0, then
+ Let error be a newly created AggregateError object.
+ Perform ! DefinePropertyOrThrow(error, "errors",
+ Property Descriptor {
+ [[Configurable]]: true,
+ [[Enumerable]]: false,
+ [[Writable]]: true,
+ [[Value]]: errors
+ }).
+ Return ? Call(promiseCapability.[[Reject]], undefined, « error »).
+ ...
+flags: [async]
+includes: [promiseHelper.js]
+features: [Promise.any]
+---*/
+
+let sequence = [];
+
+let p1 = new Promise((_, reject) => {
+ reject('foo');
+});
+let p2 = new Promise((_, reject) => {
+ reject('bar');
+});
+
+sequence.push(1);
+
+p1.catch(() => {
+ sequence.push(3);
+ assert.sameValue(sequence.length, 3);
+ checkSequence(sequence, 'Expected to be called first.');
+}).catch($DONE);
+
+Promise.any([p1, p2]).then(() => {
+ sequence.push(5);
+ assert.sameValue(sequence.length, 5);
+ checkSequence(sequence, 'Expected to be called third.');
+}).then($DONE, outcome => {
+ assert(outcome instanceof AggregateError);
+ assert.sameValue(outcome.errors.length, 2);
+ assert.sameValue(outcome.errors[0], 'foo');
+ assert.sameValue(outcome.errors[1], 'bar');
+}).then($DONE, $DONE);
+
+p2.catch(() => {
+ sequence.push(4);
+ assert.sameValue(sequence.length, 4);
+ checkSequence(sequence, 'Expected to be called second.');
+}).catch($DONE);
+
+sequence.push(2);