0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/parallel/test-tls-on-empty-socket.js
Jason Humphrey a1bd070f87 test: use ES6 to update let & const
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>
2016-12-06 13:03:39 -08:00

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');
});