mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
8ff3d61d8b
Favor strict equality checks over loose equality checks in pummel/test-net-* tests. PR-URL: https://github.com/nodejs/node/pull/8135 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
81 lines
1.6 KiB
JavaScript
81 lines
1.6 KiB
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
|
|
// settings
|
|
var bytes = 1024 * 40;
|
|
var concurrency = 100;
|
|
var connections_per_client = 5;
|
|
|
|
// measured
|
|
var total_connections = 0;
|
|
|
|
var body = 'C'.repeat(bytes);
|
|
|
|
var server = net.createServer(function(c) {
|
|
console.log('connected');
|
|
total_connections++;
|
|
console.log('#');
|
|
c.write(body);
|
|
c.end();
|
|
});
|
|
|
|
function runClient(callback) {
|
|
var client = net.createConnection(common.PORT);
|
|
|
|
client.connections = 0;
|
|
|
|
client.setEncoding('utf8');
|
|
|
|
client.on('connect', function() {
|
|
console.log('c');
|
|
client.recved = '';
|
|
client.connections += 1;
|
|
});
|
|
|
|
client.on('data', function(chunk) {
|
|
this.recved += chunk;
|
|
});
|
|
|
|
client.on('end', function() {
|
|
client.end();
|
|
});
|
|
|
|
client.on('error', function(e) {
|
|
console.log('\n\nERROOOOOr');
|
|
throw e;
|
|
});
|
|
|
|
client.on('close', function(had_error) {
|
|
console.log('.');
|
|
assert.equal(false, had_error);
|
|
assert.equal(bytes, client.recved.length);
|
|
|
|
if (client.fd) {
|
|
console.log(client.fd);
|
|
}
|
|
assert.ok(!client.fd);
|
|
|
|
if (this.connections < connections_per_client) {
|
|
this.connect(common.PORT);
|
|
} else {
|
|
callback();
|
|
}
|
|
});
|
|
}
|
|
|
|
server.listen(common.PORT, function() {
|
|
var finished_clients = 0;
|
|
for (var i = 0; i < concurrency; i++) {
|
|
runClient(function() {
|
|
if (++finished_clients === concurrency) server.close();
|
|
});
|
|
}
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(connections_per_client * concurrency, total_connections);
|
|
console.log('\nokay!');
|
|
});
|