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.
146 lines
3.5 KiB
146 lines
3.5 KiB
'use strict';
|
|
|
|
const common = require('../common');
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
|
|
const assert = require('assert');
|
|
const https = require('https');
|
|
|
|
const agent = new https.Agent();
|
|
|
|
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 expectedHeader = /^HTTP\/1\.1 200 OK/;
|
|
const expectedBody = /hello world\n/;
|
|
const expectCertError = /^Error: unable to verify the first certificate$/;
|
|
|
|
const checkRequest = (socket, server) => {
|
|
let result = '';
|
|
socket.on('connect', common.mustCall((data) => {
|
|
socket.write('GET / HTTP/1.1\r\n\r\n');
|
|
socket.end();
|
|
}));
|
|
socket.on('data', common.mustCall((chunk) => {
|
|
result += chunk;
|
|
}));
|
|
socket.on('end', common.mustCall(() => {
|
|
assert(expectedHeader.test(result));
|
|
assert(expectedBody.test(result));
|
|
server.close();
|
|
}));
|
|
};
|
|
|
|
function createServer() {
|
|
return https.createServer(options, (req, res) => {
|
|
res.end('hello world\n');
|
|
});
|
|
}
|
|
|
|
// use option connect
|
|
{
|
|
const server = createServer();
|
|
server.listen(0, common.mustCall(() => {
|
|
const port = server.address().port;
|
|
const host = 'localhost';
|
|
const options = {
|
|
port: port,
|
|
host: host,
|
|
rejectUnauthorized: false,
|
|
_agentKey: agent.getName({
|
|
port: port,
|
|
host: host,
|
|
}),
|
|
};
|
|
|
|
const socket = agent.createConnection(options);
|
|
checkRequest(socket, server);
|
|
}));
|
|
}
|
|
|
|
// use port and option connect
|
|
{
|
|
const server = createServer();
|
|
server.listen(0, common.mustCall(() => {
|
|
const port = server.address().port;
|
|
const host = 'localhost';
|
|
const options = {
|
|
rejectUnauthorized: false,
|
|
_agentKey: agent.getName({
|
|
port: port,
|
|
host: host,
|
|
}),
|
|
};
|
|
const socket = agent.createConnection(port, options);
|
|
checkRequest(socket, server);
|
|
}));
|
|
}
|
|
|
|
// use port and host and option connect
|
|
{
|
|
const server = createServer();
|
|
server.listen(0, common.mustCall(() => {
|
|
const port = server.address().port;
|
|
const host = 'localhost';
|
|
const options = {
|
|
rejectUnauthorized: false,
|
|
_agentKey: agent.getName({
|
|
port: port,
|
|
host: host,
|
|
}),
|
|
};
|
|
const socket = agent.createConnection(port, host, options);
|
|
checkRequest(socket, server);
|
|
}));
|
|
}
|
|
|
|
// use port and host and option does not have agentKey
|
|
{
|
|
const server = createServer();
|
|
server.listen(0, common.mustCall(() => {
|
|
const port = server.address().port;
|
|
const host = 'localhost';
|
|
const options = {
|
|
rejectUnauthorized: false,
|
|
};
|
|
const socket = agent.createConnection(port, host, options);
|
|
checkRequest(socket, server);
|
|
}));
|
|
}
|
|
|
|
// options is null
|
|
{
|
|
const server = createServer();
|
|
server.listen(0, common.mustCall(() => {
|
|
const port = server.address().port;
|
|
const host = 'localhost';
|
|
const options = null;
|
|
const socket = agent.createConnection(port, host, options);
|
|
socket.on('error', common.mustCall((e) => {
|
|
assert(expectCertError.test(e.toString()));
|
|
server.close();
|
|
}));
|
|
}));
|
|
}
|
|
|
|
// options is undefined
|
|
{
|
|
const server = createServer();
|
|
server.listen(0, common.mustCall(() => {
|
|
const port = server.address().port;
|
|
const host = 'localhost';
|
|
const options = undefined;
|
|
const socket = agent.createConnection(port, host, options);
|
|
socket.on('error', common.mustCall((e) => {
|
|
assert(expectCertError.test(e.toString()));
|
|
server.close();
|
|
}));
|
|
}));
|
|
}
|
|
|