mirror of
https://github.com/nodejs/node.git
synced 2025-05-04 23:42:17 +00:00

The tap skipping output is so prevalent yet obscure in nature that we ought to move it into it's own function in test/common.js PR-URL: https://github.com/nodejs/node/pull/6697 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
38 lines
852 B
JavaScript
38 lines
852 B
JavaScript
'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 keysDir = path.join(common.fixturesDir, 'keys');
|
|
|
|
const ca = fs.readFileSync(path.join(keysDir, 'ca1-cert.pem'));
|
|
const cert = fs.readFileSync(path.join(keysDir, 'agent1-cert.pem'));
|
|
const key = fs.readFileSync(path.join(keysDir, 'agent1-key.pem'));
|
|
|
|
const server = tls.createServer({
|
|
cert: cert,
|
|
key: key
|
|
}, function(c) {
|
|
c.end();
|
|
}).listen(common.PORT, function() {
|
|
const secureContext = tls.createSecureContext({
|
|
ca: ca
|
|
});
|
|
|
|
const socket = tls.connect({
|
|
secureContext: secureContext,
|
|
servername: 'agent1',
|
|
port: common.PORT
|
|
}, common.mustCall(function() {
|
|
server.close();
|
|
socket.end();
|
|
}));
|
|
});
|