mirror of
https://github.com/nodejs/node.git
synced 2024-11-25 08:19:38 +01:00
3e1b1dd4a9
The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
102 lines
2.5 KiB
JavaScript
102 lines
2.5 KiB
JavaScript
if (!process.features.tls_npn) {
|
|
console.error('Skipping because node compiled without OpenSSL or ' +
|
|
'with old OpenSSL version.');
|
|
process.exit(0);
|
|
}
|
|
|
|
var common = require('../common'),
|
|
assert = require('assert'),
|
|
fs = require('fs'),
|
|
tls = require('tls');
|
|
|
|
function filenamePEM(n) {
|
|
return require('path').join(common.fixturesDir, 'keys', n + '.pem');
|
|
}
|
|
|
|
function loadPEM(n) {
|
|
return fs.readFileSync(filenamePEM(n));
|
|
}
|
|
|
|
var serverOptions = {
|
|
key: loadPEM('agent2-key'),
|
|
cert: loadPEM('agent2-cert'),
|
|
crl: loadPEM('ca2-crl'),
|
|
SNICallback: function(servername, cb) {
|
|
cb(null, tls.createSecureContext({
|
|
key: loadPEM('agent2-key'),
|
|
cert: loadPEM('agent2-cert'),
|
|
crl: loadPEM('ca2-crl'),
|
|
}));
|
|
},
|
|
NPNProtocols: ['a', 'b', 'c']
|
|
};
|
|
|
|
var serverPort = common.PORT;
|
|
|
|
var clientsOptions = [{
|
|
port: serverPort,
|
|
key: serverOptions.key,
|
|
cert: serverOptions.cert,
|
|
crl: serverOptions.crl,
|
|
NPNProtocols: ['a', 'b', 'c'],
|
|
rejectUnauthorized: false
|
|
},{
|
|
port: serverPort,
|
|
key: serverOptions.key,
|
|
cert: serverOptions.cert,
|
|
crl: serverOptions.crl,
|
|
NPNProtocols: ['c', 'b', 'e'],
|
|
rejectUnauthorized: false
|
|
},{
|
|
port: serverPort,
|
|
key: serverOptions.key,
|
|
cert: serverOptions.cert,
|
|
crl: serverOptions.crl,
|
|
rejectUnauthorized: false
|
|
},{
|
|
port: serverPort,
|
|
key: serverOptions.key,
|
|
cert: serverOptions.cert,
|
|
crl: serverOptions.crl,
|
|
NPNProtocols: ['first-priority-unsupported', 'x', 'y'],
|
|
rejectUnauthorized: false
|
|
}];
|
|
|
|
var serverResults = [],
|
|
clientsResults = [];
|
|
|
|
var server = tls.createServer(serverOptions, function(c) {
|
|
serverResults.push(c.npnProtocol);
|
|
});
|
|
server.listen(serverPort, startTest);
|
|
|
|
function startTest() {
|
|
function connectClient(options, callback) {
|
|
var client = tls.connect(options, function() {
|
|
clientsResults.push(client.npnProtocol);
|
|
client.destroy();
|
|
|
|
callback();
|
|
});
|
|
};
|
|
|
|
connectClient(clientsOptions[0], function() {
|
|
connectClient(clientsOptions[1], function() {
|
|
connectClient(clientsOptions[2], function() {
|
|
connectClient(clientsOptions[3], function() {
|
|
server.close();
|
|
});
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(serverResults[0], clientsResults[0]);
|
|
assert.equal(serverResults[1], clientsResults[1]);
|
|
assert.equal(serverResults[2], 'http/1.1');
|
|
assert.equal(clientsResults[2], false);
|
|
assert.equal(serverResults[3], 'first-priority-unsupported');
|
|
assert.equal(clientsResults[3], false);
|
|
});
|