node/test/parallel/test-socket-write-after-fin.js
Santiago Gimeno eaab17c6a7 test: move some test from sequential to parallel
The only test with modifications is `test-stdin-child-proc` that was
passing when it should not because the exit code of the child process
was not being checked.

PR-URL: https://github.com/nodejs/node/pull/6087
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: Claudio Rodriguez <cjrodr@yahoo.com>
2016-04-08 17:12:33 -07:00

45 lines
982 B
JavaScript

'use strict';
var common = 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(common.PORT);
var sock = net.connect(common.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!');