mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
a1bd070f87
Also updating assertStrict and moving the assert required. PR-URL: https://github.com/nodejs/node/pull/9917 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@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');
|
|
});
|