mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 14:56:19 +00:00

PR-URL: https://github.com/nodejs/node/pull/17406 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> This is a significant cleanup and refactoring of the cleanup/close/destroy logic for Http2Stream and Http2Session. There are significant changes here in the timing and ordering of cleanup logic, JS apis. and various related necessary edits.
41 lines
1.0 KiB
JavaScript
41 lines
1.0 KiB
JavaScript
// Flags: --expose-internals
|
|
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
const h2 = require('http2');
|
|
const { kSocket } = require('internal/http2/util');
|
|
|
|
const body =
|
|
'<html><head></head><body><h1>this is some data</h2></body></html>';
|
|
|
|
const server = h2.createServer();
|
|
|
|
// we use the lower-level API here
|
|
server.on('stream', common.mustCall((stream) => {
|
|
stream.on('aborted', common.mustCall());
|
|
stream.on('close', common.mustCall());
|
|
stream.respond();
|
|
stream.write(body);
|
|
// purposefully do not end()
|
|
}));
|
|
|
|
server.listen(0, common.mustCall(function() {
|
|
const client = h2.connect(`http://localhost:${this.address().port}`);
|
|
const req = client.request();
|
|
|
|
req.on('response', common.mustCall(() => {
|
|
// send a premature socket close
|
|
client[kSocket].destroy();
|
|
}));
|
|
|
|
req.resume();
|
|
req.on('end', common.mustCall());
|
|
req.on('close', common.mustCall(() => server.close()));
|
|
|
|
// On the client, the close event must call
|
|
client.on('close', common.mustCall());
|
|
}));
|