mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
f55ee6e24a
Make the `http2` module always available. The `--expose-http2` cli flag is made a non-op PR-URL: https://github.com/nodejs/node/pull/15535 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
53 lines
1.4 KiB
JavaScript
53 lines
1.4 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 { Http2Stream } = require('internal/http2/core');
|
|
|
|
// Errors should not be reported both in Http2ServerRequest
|
|
// and Http2ServerResponse
|
|
|
|
let expected = null;
|
|
|
|
const server = h2.createServer(common.mustCall(function(req, res) {
|
|
req.on('error', common.mustNotCall());
|
|
res.on('error', common.mustNotCall());
|
|
req.on('aborted', common.mustCall());
|
|
res.on('aborted', common.mustNotCall());
|
|
|
|
res.write('hello');
|
|
|
|
expected = new Error('kaboom');
|
|
res.stream.destroy(expected);
|
|
server.close();
|
|
}));
|
|
|
|
server.on('streamError', common.mustCall(function(err, stream) {
|
|
assert.strictEqual(err, expected);
|
|
assert.strictEqual(stream instanceof Http2Stream, true);
|
|
}));
|
|
|
|
server.listen(0, common.mustCall(function() {
|
|
const port = server.address().port;
|
|
|
|
const url = `http://localhost:${port}`;
|
|
const client = h2.connect(url, common.mustCall(function() {
|
|
const headers = {
|
|
':path': '/foobar',
|
|
':method': 'GET',
|
|
':scheme': 'http',
|
|
':authority': `localhost:${port}`,
|
|
};
|
|
const request = client.request(headers);
|
|
request.on('data', common.mustCall(function(chunk) {
|
|
// cause an error on the server side
|
|
client.destroy();
|
|
}));
|
|
request.end();
|
|
}));
|
|
}));
|