-
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: move events to the JSStreamSocket
When using a JSStreamSocket, the HTTP2Session constructor will replace the socket object http2 events should be attached to the JSStreamSocket object because the http2 session handle lives there Fixes: #35695 PR-URL: #35772 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ricky Zhou <0x19951125@gmail.com>
- Loading branch information
1 parent
de6598f
commit dc2935d
Showing
2 changed files
with
61 additions
and
3 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
if (!common.hasCrypto) | ||
common.skip('missing crypto'); | ||
const h2 = require('http2'); | ||
const tls = require('tls'); | ||
const fixtures = require('../common/fixtures'); | ||
const { Duplex } = require('stream'); | ||
|
||
const server = h2.createSecureServer({ | ||
key: fixtures.readKey('agent1-key.pem'), | ||
cert: fixtures.readKey('agent1-cert.pem') | ||
}); | ||
|
||
class JSSocket extends Duplex { | ||
constructor(socket) { | ||
super({ emitClose: true }); | ||
socket.on('close', () => this.destroy()); | ||
socket.on('data', (data) => this.push(data)); | ||
this.socket = socket; | ||
} | ||
|
||
_write(data, encoding, callback) { | ||
this.socket.write(data, encoding, callback); | ||
} | ||
|
||
_read(size) { | ||
} | ||
|
||
_final(cb) { | ||
cb(); | ||
} | ||
} | ||
|
||
server.listen(0, common.mustCall(function() { | ||
const socket = tls.connect({ | ||
rejectUnauthorized: false, | ||
host: 'localhost', | ||
port: this.address().port, | ||
ALPNProtocols: ['h2'] | ||
}, () => { | ||
const proxy = new JSSocket(socket); | ||
const client = h2.connect(`https://localhost:${this.address().port}`, { | ||
createConnection: () => proxy | ||
}); | ||
const req = client.request(); | ||
|
||
setTimeout(() => socket.destroy(), 200); | ||
setTimeout(() => client.close(), 400); | ||
setTimeout(() => server.close(), 600); | ||
|
||
req.on('close', common.mustCall(() => { })); | ||
}); | ||
})); |