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

use String.prototype.repeat() to simplify code, less code, more semantically. PR-URL: https://github.com/nodejs/node/pull/5359 Reviewed-By: Michaël Zasso <mic.besace@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
33 lines
714 B
JavaScript
33 lines
714 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
|
|
var kPoolSize = 40 * 1024;
|
|
var data = 'あ'.repeat(kPoolSize);
|
|
var receivedSize = 0;
|
|
var encoding = 'UTF-8';
|
|
|
|
var server = net.createServer(function(socket) {
|
|
socket.setEncoding(encoding);
|
|
socket.on('data', function(data) {
|
|
receivedSize += data.length;
|
|
});
|
|
socket.on('end', function() {
|
|
socket.end();
|
|
});
|
|
});
|
|
|
|
server.listen(common.PORT, function() {
|
|
var client = net.createConnection(common.PORT);
|
|
client.on('end', function() {
|
|
server.close();
|
|
});
|
|
client.write(data, encoding);
|
|
client.end();
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(receivedSize, kPoolSize);
|
|
});
|