summaryrefslogtreecommitdiff
path: root/test/parallel/test-http2-compat-errors.js
diff options
context:
space:
mode:
authorMatteo Collina <hello@matteocollina.com>2017-08-23 18:29:49 +0200
committerJames M Snell <jasnell@gmail.com>2017-08-25 14:28:54 -0700
commit4ca8ff264f368c301827e07956f313cebd1b8de8 (patch)
tree0b742ba1a120036b62cdbea1eafb2ba42d3d8664 /test/parallel/test-http2-compat-errors.js
parent8987ae843e034745f7247f63928d39f06ed7b116 (diff)
downloadandroid-node-v8-4ca8ff264f368c301827e07956f313cebd1b8de8.tar.gz
android-node-v8-4ca8ff264f368c301827e07956f313cebd1b8de8.tar.bz2
android-node-v8-4ca8ff264f368c301827e07956f313cebd1b8de8.zip
http2: refactor error handling
This changes the error handling model of ServerHttp2Stream, ServerHttp2Request and ServerHttp2Response. An 'error' emitted on ServerHttp2Stream will not go to 'uncaughtException' anymore, but to the server 'streamError'. On the stream 'error', ServerHttp2Request will emit 'abort', while ServerHttp2Response would do nothing See: https://github.com/nodejs/node/issues/14963 PR-URL: https://github.com/nodejs/node/pull/14991 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Diffstat (limited to 'test/parallel/test-http2-compat-errors.js')
-rw-r--r--test/parallel/test-http2-compat-errors.js52
1 files changed, 52 insertions, 0 deletions
diff --git a/test/parallel/test-http2-compat-errors.js b/test/parallel/test-http2-compat-errors.js
new file mode 100644
index 0000000000..dacb39c6df
--- /dev/null
+++ b/test/parallel/test-http2-compat-errors.js
@@ -0,0 +1,52 @@
+// Flags: --expose-http2 --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();
+ }));
+}));