mirror of
https://github.com/nodejs/node.git
synced 2025-05-10 19:17:56 +00:00

PR-URL: https://github.com/nodejs/node/pull/12735 Refs: https://github.com/nodejs/node/pull/12455 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
43 lines
883 B
JavaScript
43 lines
883 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
const assert = require('assert');
|
|
const tls = require('tls');
|
|
|
|
const fs = require('fs');
|
|
const net = require('net');
|
|
|
|
let out = '';
|
|
|
|
const server = tls.createServer({
|
|
key: fs.readFileSync(`${common.fixturesDir}/keys/agent1-key.pem`),
|
|
cert: fs.readFileSync(`${common.fixturesDir}/keys/agent1-cert.pem`)
|
|
}, function(c) {
|
|
c.end('hello');
|
|
}).listen(0, function() {
|
|
const socket = new net.Socket();
|
|
|
|
const s = tls.connect({
|
|
socket: socket,
|
|
rejectUnauthorized: false
|
|
}, function() {
|
|
s.on('data', function(chunk) {
|
|
out += chunk;
|
|
});
|
|
s.on('end', function() {
|
|
s.destroy();
|
|
server.close();
|
|
});
|
|
});
|
|
|
|
socket.connect(this.address().port);
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.strictEqual(out, 'hello');
|
|
});
|