test262/test/built-ins/Promise/any/iter-arg-is-poisoned.js

43 lines
993 B
JavaScript
Raw Normal View History

2019-11-27 22:07:46 +01:00
// Copyright (C) 2019 Sergey Rubanov. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-promise.any
description: >
Reject with abrupt completion from GetIterator
info: |
Promise.any ( iterable )
...
4. Let iteratorRecord be GetIterator(iterable).
5. IfAbruptRejectPromise(iteratorRecord, promiseCapability).
...
#sec-getiterator
GetIterator ( obj [ , hint [ , method ] ] )
...
Let iterator be ? Call(method, obj).
...
features: [Promise.any, Symbol.iterator]
flags: [async]
---*/
var poison = [];
var error = new Test262Error();
Object.defineProperty(poison, Symbol.iterator, {
get() {
throw error;
}
});
try {
Promise.any(poison).then(function() {
$DONE('The promise should be rejected, but was resolved');
}, function(err) {
assert.sameValue(err, error);
}).then($DONE, $DONE);
} catch (error) {
$DONE(`The promise should be rejected, but threw an exception: ${error.message}`);
}