mirror of
https://github.com/nodejs/node.git
synced 2025-05-21 12:25:12 +00:00

This helps to prevent issues where a failed test can keep a bound socket open long enough to cause other tests to fail with EADDRINUSE because the same port number is used. PR-URL: https://github.com/nodejs/node/pull/7045 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org>
45 lines
1020 B
JavaScript
45 lines
1020 B
JavaScript
'use strict';
|
|
require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
var serverData = '';
|
|
var gotServerEnd = false;
|
|
var clientData = '';
|
|
var gotClientEnd = false;
|
|
|
|
var server = net.createServer({ allowHalfOpen: true }, function(sock) {
|
|
sock.setEncoding('utf8');
|
|
sock.on('data', function(c) {
|
|
serverData += c;
|
|
});
|
|
sock.on('end', function() {
|
|
gotServerEnd = true;
|
|
sock.end(serverData);
|
|
server.close();
|
|
});
|
|
});
|
|
server.listen(0, function() {
|
|
var sock = net.connect(this.address().port);
|
|
sock.setEncoding('utf8');
|
|
sock.on('data', function(c) {
|
|
clientData += c;
|
|
});
|
|
|
|
sock.on('end', function() {
|
|
gotClientEnd = true;
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(serverData, clientData);
|
|
assert.equal(serverData, 'hello1hello2hello3\nTHUNDERMUSCLE!');
|
|
assert(gotClientEnd);
|
|
assert(gotServerEnd);
|
|
console.log('ok');
|
|
});
|
|
|
|
sock.write('hello1');
|
|
sock.write('hello2');
|
|
sock.write('hello3\n');
|
|
sock.end('THUNDERMUSCLE!');
|
|
});
|