summaryrefslogtreecommitdiff
path: root/test/parallel/test-microtask-queue-integration-domain.js
blob: 7a4ad77cd321e3b5a82d86e8b44f399d8d545e3a (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
'use strict';
var common = require('../common');
var assert = require('assert');
var domain = require('domain');

var implementations = [
  function(fn) {
    Promise.resolve().then(fn);
  },
  function(fn) {
    var obj = {};

    Object.observe(obj, fn);

    obj.a = 1;
  }
];

var expected = 0;
var done = 0;

process.on('exit', function() {
  assert.equal(done, expected);
});

function test(scheduleMicrotask) {
  var nextTickCalled = false;
  expected++;

  scheduleMicrotask(function() {
    process.nextTick(function() {
      nextTickCalled = true;
    });

    setTimeout(function() {
      assert(nextTickCalled);
      done++;
    }, 0);
  });
}

// first tick case
implementations.forEach(test);

// tick callback case
setTimeout(function() {
  implementations.forEach(function(impl) {
    process.nextTick(test.bind(null, impl));
  });
}, 0);