mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
108 lines
2.6 KiB
108 lines
2.6 KiB
'use strict';
|
|
if (!process.features.tls_npn) {
|
|
console.log('1..0 # Skipped: node compiled without OpenSSL or ' +
|
|
'with old OpenSSL version.');
|
|
return;
|
|
}
|
|
|
|
var common = require('../common'),
|
|
assert = require('assert'),
|
|
fs = require('fs');
|
|
|
|
if (!common.hasCrypto) {
|
|
console.log('1..0 # Skipped: missing crypto');
|
|
return;
|
|
}
|
|
var 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);
|
|
});
|
|
|