0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 15:30:56 +01:00
nodejs/test/pummel/test-tcp-many-clients.js

83 lines
1.6 KiB
JavaScript
Raw Normal View History

require("../common");
2010-03-10 01:27:49 +01:00
net = require("net");
// settings
var bytes = 1024*40;
var concurrency = 100;
var connections_per_client = 5;
// measured
var total_connections = 0;
var body = "";
for (var i = 0; i < bytes; i++) {
body += "C";
}
2010-03-10 01:27:49 +01:00
var server = net.createServer(function (c) {
c.addListener("connect", function () {
total_connections++;
print("#");
c.write(body);
c.end();
});
});
2010-02-26 21:06:32 +01:00
server.listen(PORT);
function runClient (callback) {
2010-03-10 01:27:49 +01:00
var client = net.createConnection(PORT);
client.connections = 0;
2010-03-10 01:27:49 +01:00
client.setEncoding("utf8");
client.addListener("connect", function () {
2009-08-19 17:28:41 +02:00
print("c");
client.recved = "";
client.connections += 1;
});
client.addListener("data", function (chunk) {
this.recved += chunk;
});
2010-03-10 01:27:49 +01:00
client.addListener("end", function () {
client.end();
});
2010-03-10 01:27:49 +01:00
client.addListener("error", function (e) {
puts("\n\nERROOOOOr");
throw e;
});
client.addListener("close", function (had_error) {
print(".");
assert.equal(false, had_error);
assert.equal(bytes, client.recved.length);
2010-03-10 01:27:49 +01:00
if (client.fd) {
puts(client.fd);
}
assert.ok(!client.fd);
if (this.connections < connections_per_client) {
2010-02-26 21:06:32 +01:00
this.connect(PORT);
} else {
2009-08-26 22:03:19 +02:00
callback();
}
});
}
2010-03-10 01:27:49 +01:00
server.addListener('listening', function () {
var finished_clients = 0;
for (var i = 0; i < concurrency; i++) {
runClient(function () {
if (++finished_clients == concurrency) server.close();
});
}
});
process.addListener("exit", function () {
assert.equal(connections_per_client * concurrency, total_connections);
puts("\nokay!");
});