node/test/parallel/test-net-large-string.js
Jackson Tian 4d78121b77 lib: simplify code with String.prototype.repeat()
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>
2016-03-21 16:42:58 -07:00

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);
});