-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
http2: wait for secureConnect before initializing
PR-URL: #32958 Fixes: #32922 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
- Loading branch information
1 parent
21d314e
commit 4ef91a6
Showing
3 changed files
with
83 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
const assert = require('assert'); | ||
|
||
if (!common.hasCrypto) | ||
common.skip('missing crypto'); | ||
|
||
const http2 = require('http2'); | ||
const net = require('net'); | ||
|
||
const { | ||
HTTP2_HEADER_PATH, | ||
} = http2.constants; | ||
|
||
// Create a normal session, as a control case | ||
function normalSession(cb) { | ||
http2.connect('https://google.com', (clientSession) => { | ||
let error = null; | ||
const req = clientSession.request({ [HTTP2_HEADER_PATH]: '/' }); | ||
req.on('error', (err) => { | ||
error = err; | ||
}); | ||
req.on('response', (_headers) => { | ||
req.on('data', (_chunk) => { }); | ||
req.on('end', () => { | ||
clientSession.close(); | ||
return cb(error); | ||
}); | ||
}); | ||
}); | ||
} | ||
normalSession(common.mustCall(function(err) { | ||
assert.ifError(err); | ||
})); | ||
|
||
// Create a session using a socket that has not yet finished connecting | ||
function socketNotFinished(done) { | ||
const socket2 = net.connect(443, 'google.com'); | ||
http2.connect('https://google.com', { socket2 }, (clientSession) => { | ||
let error = null; | ||
const req = clientSession.request({ [HTTP2_HEADER_PATH]: '/' }); | ||
req.on('error', (err) => { | ||
error = err; | ||
}); | ||
req.on('response', (_headers) => { | ||
req.on('data', (_chunk) => { }); | ||
req.on('end', () => { | ||
clientSession.close(); | ||
socket2.destroy(); | ||
return done(error); | ||
}); | ||
}); | ||
}); | ||
} | ||
socketNotFinished(common.mustCall(function(err) { | ||
assert.ifError(err); | ||
})); | ||
|
||
// Create a session using a socket that has finished connecting | ||
function socketFinished(done) { | ||
const socket = net.connect(443, 'google.com', () => { | ||
http2.connect('https://google.com', { socket }, (clientSession) => { | ||
let error = null; | ||
const req = clientSession.request({ [HTTP2_HEADER_PATH]: '/' }); | ||
req.on('error', (err) => { | ||
error = err; | ||
}); | ||
req.on('response', (_headers) => { | ||
req.on('data', (_chunk) => { }); | ||
req.on('end', () => { | ||
clientSession.close(); | ||
return done(error); | ||
}); | ||
}); | ||
}); | ||
}); | ||
} | ||
socketFinished(common.mustCall(function(err) { | ||
assert.ifError(err); | ||
})); |