mirror of https://github.com/lukechilds/node.git
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.
42 lines
917 B
42 lines
917 B
'use strict';
|
|
const common = require('../common');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
const tls = require('tls');
|
|
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
const cert = fs.readFileSync(path.join(common.fixturesDir, 'test_cert.pem'));
|
|
const key = fs.readFileSync(path.join(common.fixturesDir, 'test_key.pem'));
|
|
|
|
const server = tls.createServer({
|
|
cert: cert,
|
|
key: key
|
|
}, function(c) {
|
|
// Nop
|
|
setTimeout(function() {
|
|
c.end();
|
|
server.close();
|
|
}, 20);
|
|
}).listen(0, common.mustCall(function() {
|
|
const conn = tls.connect({
|
|
cert: cert,
|
|
key: key,
|
|
rejectUnauthorized: false,
|
|
port: this.address().port
|
|
}, function() {
|
|
setTimeout(function() {
|
|
conn.destroy();
|
|
}, 20);
|
|
});
|
|
|
|
// SSL_write() call's return value, when called 0 bytes, should not be
|
|
// treated as error.
|
|
conn.end('');
|
|
|
|
conn.on('error', common.fail);
|
|
}));
|
|
|