node/test/parallel/test-net-persistent-nodelay.js
Roman Reiss cb381fe3e0 net: return this from setNoDelay and setKeepAlive
Modifies the Socket.setNoDelay and Socket.setKeepAlive methods to return
the socket instance instead of undefined, to allow for chaining.

PR-URL: https://github.com/nodejs/io.js/pull/1779
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2015-05-23 18:10:32 +02:00

35 lines
822 B
JavaScript

'use strict';
var common = require('../common');
var assert = require('assert');
var net = require('net');
var TCPWrap = process.binding('tcp_wrap').TCP;
var echoServer = net.createServer(function(connection) {
connection.end();
});
echoServer.listen(common.PORT);
var callCount = 0;
var Socket = net.Socket;
var setNoDelay = TCPWrap.prototype.setNoDelay;
TCPWrap.prototype.setNoDelay = function(enable) {
setNoDelay.call(this, enable);
callCount++;
};
echoServer.on('listening', function() {
var sock1 = new Socket();
// setNoDelay before the handle is created
// there is probably a better way to test this
var s = sock1.setNoDelay();
assert.ok(s instanceof net.Socket);
sock1.connect(common.PORT);
sock1.on('end', function() {
assert.equal(callCount, 1);
echoServer.close();
});
});