node/test/parallel/test-net-persistent-ref-unref.js
Shubham Urkade 01c5c16aba test: use arrow syntax for anonymous callbacks
PR-URL: https://github.com/nodejs/node/pull/24691
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
2018-11-30 09:35:39 -08:00

42 lines
880 B
JavaScript

// Flags: --expose-internals
'use strict';
require('../common');
const assert = require('assert');
const net = require('net');
const { internalBinding } = require('internal/test/binding');
const TCPWrap = internalBinding('tcp_wrap').TCP;
const echoServer = net.createServer((conn) => {
conn.end();
});
const ref = TCPWrap.prototype.ref;
const unref = TCPWrap.prototype.unref;
let refCount = 0;
TCPWrap.prototype.ref = function() {
ref.call(this);
refCount++;
assert.strictEqual(refCount, 0);
};
TCPWrap.prototype.unref = function() {
unref.call(this);
refCount--;
assert.strictEqual(refCount, -1);
};
echoServer.listen(0);
echoServer.on('listening', function() {
const sock = new net.Socket();
sock.unref();
sock.ref();
sock.connect(this.address().port);
sock.on('end', () => {
assert.strictEqual(refCount, 0);
echoServer.close();
});
});