summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Promise/any/iter-next-val-err-no-close.js
blob: 73bd0c57242d02ee0516cd958bc957238a11e7ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// |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: >
  Error when accessing an iterator result's `value` property (not closing
  iterator)
info: |
  Let result be PerformPromiseAny(iteratorRecord, C, promiseCapability).
  If result is an abrupt completion, then
    If iteratorRecord.[[Done]] is false, set result to IteratorClose(iteratorRecord, result).
    IfAbruptRejectPromise(result, promiseCapability).

  ...

  Runtime Semantics: PerformPromiseAny

  ...
  Repeat
    Let nextValue be IteratorValue(next).
    If nextValue is an abrupt completion, set iteratorRecord.[[Done]] to true.
    ReturnIfAbrupt(nextValue).

features: [Promise.any, Symbol.iterator]
flags: [async]
---*/
let callCount = 0;
let returnCount = 0;
let error = new Test262Error();
let poisoned = {
  done: false
};
Object.defineProperty(poisoned, 'value', {
  get() {
    callCount++;
    throw error;
  }
});
let iterNextValThrows = {
  [Symbol.iterator]() {
    callCount++;
    return {
      next() {
        callCount++;
        return poisoned;
      },
      return() {
        returnCount++;
        return {};
      }
    };
  }
};

Promise.any(iterNextValThrows).then(() => {
  $DONE('The promise should be rejected, but was resolved');
}, (reason) => {
  assert(error instanceof Test262Error);
  assert.sameValue(reason, error);
  assert.sameValue(callCount, 3, 'callCount === 3');
  assert.sameValue(returnCount, 0);
}).then($DONE, $DONE);