summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Promise/resolve/S25.Promise_resolve_foreign_thenable_2.js
blob: bc748bf8fe8b0180ddc873f4368d4846e9cb77b6 (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
// |reftest| async
// Copyright 2014 Cubane Canada, Inc.  All rights reserved.
// See LICENSE for details.

/*---
info: |
   Promise.resolve
es6id: S25.4.4.5
author: Sam Mikes
description: Promise.resolve delegates to foreign thenable
includes: [promiseHelper.js]
flags: [async]
---*/

var sequence = [];

var thenable = {
  then: function(onResolve, onReject) {

    sequence.push(3);
    assert.sameValue(sequence.length, 3);
    checkSequence(sequence, "thenable.then called");

    assert.sameValue(this, thenable, "thenable.then called with `thenable` as `this`");

    return onResolve('resolved');
  }
};

sequence.push(1);
assert.sameValue(sequence.length, 1);
checkSequence(sequence, "no async calls yet");

var p = Promise.resolve(thenable);

sequence.push(2);
assert.sameValue(sequence.length, 2);
checkSequence(sequence, "thenable.then queued but not yet called");

p.then(function(r) {
  sequence.push(4);
  assert.sameValue(sequence.length, 4);
  checkSequence(sequence, "all done");

  assert.sameValue(r, 'resolved');
}).then($DONE, $DONE);