summaryrefslogtreecommitdiff
path: root/test/parallel/test-handle-wrap-isrefed.js
blob: e4036e75f6b99cb00000fb157d3ba198b1eeb326 (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
'use strict';

const common = require('../common');
const strictEqual = require('assert').strictEqual;

function makeAssert(message) {
  return function(actual, expected) {
    strictEqual(actual, expected, message);
  };
}


// child_process
{
  const assert = makeAssert('isRefed() not working on process_wrap');
  const spawn = require('child_process').spawn;
  const cmd = common.isWindows ? 'rundll32' : 'ls';
  const cp = spawn(cmd);
  assert(Object.getPrototypeOf(cp._handle).hasOwnProperty('isRefed'), true);
  assert(cp._handle.isRefed(), true);
  cp.unref();
  assert(cp._handle.isRefed(), false);
  cp.ref();
  assert(cp._handle.isRefed(), true);
  cp._handle.close(common.mustCall(() => assert(cp._handle.isRefed(), false)));
}


// dgram
{
  const assert = makeAssert('isRefed() not working on udp_wrap');
  const dgram = require('dgram');

  const sock4 = dgram.createSocket('udp4');
  assert(Object.getPrototypeOf(sock4._handle).hasOwnProperty('isRefed'), true);
  assert(sock4._handle.isRefed(), true);
  sock4.unref();
  assert(sock4._handle.isRefed(), false);
  sock4.ref();
  assert(sock4._handle.isRefed(), true);
  sock4._handle.close(
      common.mustCall(() => assert(sock4._handle.isRefed(), false)));

  const sock6 = dgram.createSocket('udp6');
  assert(Object.getPrototypeOf(sock6._handle).hasOwnProperty('isRefed'), true);
  assert(sock6._handle.isRefed(), true);
  sock6.unref();
  assert(sock6._handle.isRefed(), false);
  sock6.ref();
  assert(sock6._handle.isRefed(), true);
  sock6._handle.close(
      common.mustCall(() => assert(sock6._handle.isRefed(), false)));
}


// pipe
{
  const assert = makeAssert('isRefed() not working on pipe_wrap');
  const Pipe = process.binding('pipe_wrap').Pipe;
  const handle = new Pipe();
  assert(Object.getPrototypeOf(handle).hasOwnProperty('isRefed'), true);
  assert(handle.isRefed(), true);
  handle.unref();
  assert(handle.isRefed(), false);
  handle.ref();
  assert(handle.isRefed(), true);
  handle.close(common.mustCall(() => assert(handle.isRefed(), false)));
}


// tcp
{
  const assert = makeAssert('isRefed() not working on tcp_wrap');
  const net = require('net');
  const server = net.createServer(() => {}).listen(common.PORT);
  assert(Object.getPrototypeOf(server._handle).hasOwnProperty('isRefed'), true);
  assert(server._handle.isRefed(), true);
  assert(server._unref, false);
  server.unref();
  assert(server._handle.isRefed(), false);
  assert(server._unref, true);
  server.ref();
  assert(server._handle.isRefed(), true);
  assert(server._unref, false);
  server._handle.close(
      common.mustCall(() => assert(server._handle.isRefed(), false)));
}


// timers
{
  const assert = makeAssert('isRefed() not working on timer_wrap');
  const timer = setTimeout(() => {}, 500);
  timer.unref();
  assert(Object.getPrototypeOf(timer._handle).hasOwnProperty('isRefed'), true);
  assert(timer._handle.isRefed(), false);
  timer.ref();
  assert(timer._handle.isRefed(), true);
  timer._handle.close(
      common.mustCall(() => assert(timer._handle.isRefed(), false)));
}