The tap skipping output is so prevalent yet obscure in nature that we ought to move it into it's own function in test/common.js PR-URL: https://github.com/nodejs/node/pull/6697 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
72 lines
1.5 KiB
JavaScript
72 lines
1.5 KiB
JavaScript
'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');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
var tls = require('tls');
|
|
var fs = require('fs');
|
|
|
|
process.stdout.write('build body...');
|
|
var body = 'hello world\n'.repeat(1024 * 1024);
|
|
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({
|
|
port: common.PORT,
|
|
rejectUnauthorized: false
|
|
});
|
|
|
|
client.on('data', function(d) {
|
|
process.stdout.write('.');
|
|
recvCount += d.length;
|
|
|
|
client.pause();
|
|
process.nextTick(function() {
|
|
client.resume();
|
|
});
|
|
});
|
|
|
|
|
|
client.on('close', function() {
|
|
console.error('close');
|
|
server.close();
|
|
clearTimeout(timeout);
|
|
});
|
|
});
|
|
|
|
|
|
function displayCounts() {
|
|
console.log('body.length: %d', body.length);
|
|
console.log(' recvCount: %d', recvCount);
|
|
}
|
|
|
|
|
|
var timeout = setTimeout(displayCounts, 10 * 1000);
|
|
|
|
|
|
process.on('exit', function() {
|
|
displayCounts();
|
|
assert.equal(1, connections);
|
|
assert.equal(body.length, recvCount);
|
|
});
|