mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
73533a1932
Because of the specific serialization and processing requirements of HTTP/2, sockets should not be directly manipulated. This forbids any interactions with destroy, emit, end, pause, read, resume and write methods of the socket. It also redirects setTimeout to session instead of socket. PR-URL: https://github.com/nodejs/node/pull/16330 Fixes: https://github.com/nodejs/node/issues/16252 Refs: https://github.com/nodejs/node/pull/16211 Reviewed-By: James M Snell <jasnell@gmail.com>
63 lines
1.5 KiB
JavaScript
63 lines
1.5 KiB
JavaScript
// Flags: --expose-internals
|
|
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
const assert = require('assert');
|
|
const h2 = require('http2');
|
|
const { kSocket } = require('internal/http2/util');
|
|
|
|
const {
|
|
HTTP2_HEADER_METHOD,
|
|
HTTP2_HEADER_PATH,
|
|
HTTP2_METHOD_POST
|
|
} = h2.constants;
|
|
|
|
const server = h2.createServer();
|
|
|
|
// we use the lower-level API here
|
|
server.on('stream', common.mustCall(onStream));
|
|
|
|
function onStream(stream) {
|
|
stream.respond({
|
|
'content-type': 'text/html',
|
|
':status': 200
|
|
});
|
|
stream.write('test');
|
|
|
|
const socket = stream.session[kSocket];
|
|
|
|
// When the socket is destroyed, the close events must be triggered
|
|
// on the socket, server and session.
|
|
socket.on('close', common.mustCall());
|
|
server.on('close', common.mustCall());
|
|
stream.session.on('close', common.mustCall(() => server.close()));
|
|
|
|
// Also, the aborted event must be triggered on the stream
|
|
stream.on('aborted', common.mustCall());
|
|
|
|
assert.notStrictEqual(stream.session, undefined);
|
|
socket.destroy();
|
|
stream.on('destroy', common.mustCall(() => {
|
|
assert.strictEqual(stream.session, undefined);
|
|
}));
|
|
}
|
|
|
|
server.listen(0);
|
|
|
|
server.on('listening', common.mustCall(() => {
|
|
const client = h2.connect(`http://localhost:${server.address().port}`);
|
|
|
|
const req = client.request({
|
|
[HTTP2_HEADER_PATH]: '/',
|
|
[HTTP2_HEADER_METHOD]: HTTP2_METHOD_POST });
|
|
|
|
req.on('aborted', common.mustCall());
|
|
req.resume();
|
|
req.on('end', common.mustCall());
|
|
|
|
client.on('close', common.mustCall());
|
|
}));
|