mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 05:40:47 +00:00

* Make common.skip() exit. Also add common.printSkipMessage() for partial skips. * Don't make needless things before skip PR-URL: https://github.com/nodejs/node/pull/14021 Fixes: https://github.com/nodejs/node/issues/14016 Reviewed-By: Refael Ackermann <refack@gmail.com>
33 lines
754 B
JavaScript
33 lines
754 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
|
|
const assert = require('assert');
|
|
const tls = require('tls');
|
|
const fs = require('fs');
|
|
|
|
const options = {
|
|
key: fs.readFileSync(`${common.fixturesDir}/keys/agent1-key.pem`),
|
|
cert: fs.readFileSync(`${common.fixturesDir}/keys/agent1-cert.pem`)
|
|
};
|
|
|
|
const server = tls.createServer(options, function(s) {
|
|
s.end('hello');
|
|
}).listen(0, function() {
|
|
const opts = {
|
|
port: this.address().port,
|
|
rejectUnauthorized: false
|
|
};
|
|
|
|
server.on('connection', common.mustCall(function(socket) {
|
|
assert.strictEqual(socket.server, server);
|
|
server.close();
|
|
}));
|
|
|
|
const client = tls.connect(opts, function() {
|
|
client.end();
|
|
});
|
|
});
|