summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Promise/race/reject-from-same-thenable.js
blob: 25601b936141a7e20c5e03694d79a8dacf698692 (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
65
// Copyright (C) 2020 Rick Waldron. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-performpromiserace
description: >
  Promise.race does not prevent resolve from being called multiple times.
info: |
  PerformPromiseRace

  Repeat,
    Let next be IteratorStep(iteratorRecord).
    If next is an abrupt completion, set iteratorRecord.[[Done]] to true.
    ReturnIfAbrupt(next).
    If next is false, then
      Set iteratorRecord.[[Done]] to true.
      Return resultCapability.[[Promise]].
    Let nextValue be IteratorValue(next).
    If nextValue is an abrupt completion, set iteratorRecord.[[Done]] to true.
    ReturnIfAbrupt(nextValue).
    Let nextPromise be ? Call(promiseResolve, constructor, « nextValue »).
    Perform ? Invoke(nextPromise, "then", « resultCapability.[[Resolve]], resultCapability.[[Reject]] »).

includes: [promiseHelper.js]
---*/

let callCount = 0;
let sequence = [];

function Constructor(executor) {
  function reject(value) {
    callCount += 1;
    sequence.push(value);
  }
  executor(() => {
    throw new Test262Error();
  }, reject);
}
Constructor.resolve = function(v) {
  return v;
};

let pReject;

let a = {
  then(_, rejecter) {
    pReject = rejecter;
  }
};

assert.sameValue(callCount, 0, 'callCount before call to race()');

Promise.race.call(Constructor, [a]);

assert.sameValue(callCount, 0, 'callCount after call to race()');

pReject(1);
pReject(2);
pReject(3);

assert.sameValue(callCount, 3, 'callCount after resolving a');
assert.sameValue(sequence.length, 3);
checkSequence(sequence);

reportCompare(0, 0);