You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

49 lines
1.2 KiB

'use strict';
// Create an ssl server. First connection, validate that not resume.
// Cache session and close connection. Use session on second connection.
// ASSERT resumption.
var common = require('../common');
var assert = require('assert');
if (!common.hasCrypto) {
common.skip('missing crypto');
return;
}
var tls = require('tls');
var fs = require('fs');
var options = {
key: fs.readFileSync(common.fixturesDir + '/keys/agent2-key.pem'),
cert: fs.readFileSync(common.fixturesDir + '/keys/agent2-cert.pem')
};
var big = Buffer.alloc(2 * 1024 * 1024, 'Y');
// create server
var server = tls.createServer(options, common.mustCall(function(socket) {
socket.end(big);
socket.destroySoon();
}));
// start listening
server.listen(0, common.mustCall(function() {
var client = tls.connect({
port: this.address().port,
rejectUnauthorized: false
}, common.mustCall(function() {
var bytesRead = 0;
client.on('readable', function() {
var d = client.read();
if (d)
bytesRead += d.length;
});
client.on('end', common.mustCall(function() {
server.close();
assert.strictEqual(big.length, bytesRead);
}));
}));
}));