0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 07:27:22 +01:00
nodejs/test/disabled/test-tls-large-push.js
Roman Reiss f29762f4dd test: enable linting for tests
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>
2015-05-19 21:21:27 +02:00

66 lines
1.3 KiB
JavaScript

/* eslint-disable no-debugger */
'use strict';
// Server sends a large string. Client counts bytes and pauses every few
// seconds. Makes sure that pause and resume work properly.
var common = require('../common');
var assert = require('assert');
var tls = require('tls');
var fs = require('fs');
var body = '';
process.stdout.write('build body...');
for (var i = 0; i < 10 * 1024 * 1024; i++) {
body += 'hello world\n';
}
process.stdout.write('done\n');
var options = {
key: fs.readFileSync(common.fixturesDir + '/keys/agent2-key.pem'),
cert: fs.readFileSync(common.fixturesDir + '/keys/agent2-cert.pem')
};
var connections = 0;
var server = tls.Server(options, function(socket) {
socket.end(body);
connections++;
});
var recvCount = 0;
server.listen(common.PORT, function() {
var client = tls.connect(common.PORT);
client.on('data', function(d) {
process.stdout.write('.');
recvCount += d.length;
/*
client.pause();
process.nextTick(function() {
client.resume();
});
*/
});
client.on('close', function() {
debugger;
console.log('close');
server.close();
});
});
process.on('exit', function() {
assert.equal(1, connections);
console.log('body.length: %d', body.length);
console.log(' recvCount: %d', recvCount);
assert.equal(body.length, recvCount);
});