mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
3d2aef3979
Use assert.strictEqual instead of assert.equal in tests, manually convert types where necessary. PR-URL: https://github.com/nodejs/node/pull/10698 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
53 lines
1.1 KiB
JavaScript
53 lines
1.1 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
const https = require('https');
|
|
|
|
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 TOTAL = 4;
|
|
let waiting = TOTAL;
|
|
|
|
const server = https.Server(options, function(req, res) {
|
|
if (--waiting === 0) server.close();
|
|
|
|
res.writeHead(200, {
|
|
'x-sni': req.socket.servername
|
|
});
|
|
res.end('hello world');
|
|
});
|
|
|
|
server.listen(0, function() {
|
|
function expectResponse(id) {
|
|
return common.mustCall(function(res) {
|
|
res.resume();
|
|
assert.strictEqual(res.headers['x-sni'], 'sni.' + id);
|
|
});
|
|
}
|
|
|
|
const agent = new https.Agent({
|
|
maxSockets: 1
|
|
});
|
|
for (let j = 0; j < TOTAL; j++) {
|
|
https.get({
|
|
agent: agent,
|
|
|
|
path: '/',
|
|
port: this.address().port,
|
|
host: '127.0.0.1',
|
|
servername: 'sni.' + j,
|
|
rejectUnauthorized: false
|
|
}, expectResponse(j));
|
|
}
|
|
});
|