mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +01:00
f29762f4dd
Enable linting for the test directory. A number of changes was made so all tests conform the current rules used by lib and src directories. The only exception for tests is that unreachable (dead) code is allowed. test-fs-non-number-arguments-throw had to be excluded from the changes because of a weird issue on Windows CI. PR-URL: https://github.com/nodejs/io.js/pull/1721 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
45 lines
982 B
JavaScript
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!');
|