summaryrefslogtreecommitdiff
path: root/test/built-ins/Promise/prototype/then/rxn-handler-fulfilled-next.js
blob: 460ee909c9529d7dcd3398ce7bf41d8c5fa70c7d (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
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: All queued jobs should be executed in series
es6id: 25.4.2.1
info: |
    [...]
    7. If handlerResult is an abrupt completion, then
       a. Let status be Call(promiseCapability.[[Reject]], undefined,
          «handlerResult.[[value]]»).
       b. NextJob Completion(status).
    8. Let status be Call(promiseCapability.[[Resolve]], undefined,
       «handlerResult.[[value]]»).
    9. NextJob Completion(status).
flags: [async]
---*/

var promise = new Promise(function(resolve) {
  resolve();
});
var log = '';

promise.then(function() {
  log += 'a';
}, function() {
  log += 'A';
});

promise.then(function() {
  log += 'b';
}, function() {
  log += 'B';
});

promise.then(function() {
  log += 'c';
}, function() {
  log += 'C';
});

promise.then(function() {
  if (log !== 'abc') {
    $DONE(
      'Expected each "onFulfilled" handler to be invoked exactly once in series. ' +
      'Expected: abc. Actual: ' + log
    );
    return;
  }

  $DONE();
}, function() {
  $DONE('This promise should not be rejected.');
});