2017-05-18 06:43:09 +02:00
|
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
2017-07-01 01:29:09 +02:00
|
|
|
if (!common.hasCrypto)
|
2017-05-21 19:26:37 +02:00
|
|
|
common.skip('missing crypto');
|
2017-05-18 06:43:09 +02:00
|
|
|
|
|
|
|
// Refs: https://github.com/nodejs/node/issues/13045
|
|
|
|
// An HTTP Agent reuses a TLSSocket, and makes a failed call to `asyncReset`.
|
|
|
|
|
|
|
|
const assert = require('assert');
|
|
|
|
const https = require('https');
|
2017-07-18 00:33:46 +02:00
|
|
|
const fixtures = require('../common/fixtures');
|
2017-05-18 06:43:09 +02:00
|
|
|
|
|
|
|
const serverOptions = {
|
2017-07-18 00:33:46 +02:00
|
|
|
key: fixtures.readKey('agent1-key.pem'),
|
|
|
|
cert: fixtures.readKey('agent1-cert.pem'),
|
|
|
|
ca: fixtures.readKey('ca1-cert.pem')
|
2017-05-18 06:43:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const server = https.createServer(serverOptions, common.mustCall((req, res) => {
|
|
|
|
res.end('hello world\n');
|
|
|
|
}, 2));
|
|
|
|
|
|
|
|
server.listen(0, common.mustCall(function() {
|
|
|
|
const port = this.address().port;
|
|
|
|
const clientOptions = {
|
|
|
|
agent: new https.Agent({
|
|
|
|
keepAlive: true,
|
|
|
|
rejectUnauthorized: false
|
|
|
|
}),
|
|
|
|
port: port
|
|
|
|
};
|
|
|
|
|
|
|
|
const req = https.get(clientOptions, common.mustCall((res) => {
|
|
|
|
assert.strictEqual(res.statusCode, 200);
|
|
|
|
res.on('error', (err) => assert.fail(err));
|
|
|
|
res.socket.on('error', (err) => assert.fail(err));
|
|
|
|
res.resume();
|
|
|
|
// drain the socket and wait for it to be free to reuse
|
|
|
|
res.socket.once('free', () => {
|
|
|
|
// This is the pain point. Internally the Agent will call
|
|
|
|
// `socket._handle.asyncReset()` and if the _handle does not implement
|
|
|
|
// `asyncReset` this will throw TypeError
|
|
|
|
const req2 = https.get(clientOptions, common.mustCall((res2) => {
|
|
|
|
assert.strictEqual(res.statusCode, 200);
|
|
|
|
res2.on('error', (err) => assert.fail(err));
|
|
|
|
res2.socket.on('error', (err) => assert.fail(err));
|
|
|
|
// this should be the end of the test
|
|
|
|
res2.destroy();
|
|
|
|
server.close();
|
|
|
|
}));
|
|
|
|
req2.on('error', (err) => assert.fail(err));
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
req.on('error', (err) => assert.fail(err));
|
|
|
|
}));
|