diff options
author | James M Snell <jasnell@gmail.com> | 2017-11-15 10:55:31 -0800 |
---|---|---|
committer | Anna Henningsen <anna@addaleax.net> | 2017-11-21 12:47:54 +0100 |
commit | 69e6c5a212622ec15b8c2cf904480b6582c6c3a5 (patch) | |
tree | a6368dc8e37112d82ceb8b4dff6120b4bf027429 /test/parallel/test-http2-pipe.js | |
parent | 2ba93f6ed7c96684ed7aeaa32db59ae8e5885f03 (diff) | |
download | node-new-69e6c5a212622ec15b8c2cf904480b6582c6c3a5.tar.gz |
http2: major update to internals
This update does several significant things:
1. It eliminates the base Nghttp2* classes and folds those
in to node::http2::Http2Session and node::http2::Http2Stream
2. It makes node::http2::Http2Stream a StreamBase instance and
sends that out to JS-land to act as the [kHandle] for the
JavaScript Http2Stream class.
3. It shifts some of the callbacks from C++ off of the JavaScript
Http2Session class to the Http2Stream class.
4. It refactors the data provider structure for FD and Stream
based sending to help encapsulate those functions easier
5. It streamlines some of the functions at the C++ layer to
eliminate now unnecessary redirections
6. It cleans up node_http2.cc for better readability and
maintainability
7. It refactors some of the debug output
8. Because Http2Stream instances are now StreamBases, they are
now also trackable using async-hooks
9. The Stream::OnRead algorithm has been simplified with a
couple bugs fixed.
10. I've eliminated node_http2_core.h and node_http2_core-inl.h
11. Detect invalid handshake a report protocol error to session
12. Refactor out of memory error, improve other errors
13. Add Http2Session.prototype.ping
PR-URL: https://github.com/nodejs/node/pull/17105
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Sebastiaan Deckers <sebdeckers83@gmail.com>
Diffstat (limited to 'test/parallel/test-http2-pipe.js')
-rw-r--r-- | test/parallel/test-http2-pipe.js | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/test/parallel/test-http2-pipe.js b/test/parallel/test-http2-pipe.js index 819fab5154..8b446f4f88 100644 --- a/test/parallel/test-http2-pipe.js +++ b/test/parallel/test-http2-pipe.js @@ -8,6 +8,7 @@ const assert = require('assert'); const http2 = require('http2'); const fs = require('fs'); const path = require('path'); +const Countdown = require('../common/countdown'); // piping should work as expected with createWriteStream @@ -31,19 +32,16 @@ server.listen(0, common.mustCall(() => { const port = server.address().port; const client = http2.connect(`http://localhost:${port}`); - let remaining = 2; - function maybeClose() { - if (--remaining === 0) { - server.close(); - client.destroy(); - } - } + const countdown = new Countdown(2, common.mustCall(() => { + server.close(); + client.destroy(); + })); const req = client.request({ ':method': 'POST' }); req.on('response', common.mustCall()); req.resume(); - req.on('end', common.mustCall(maybeClose)); + req.on('end', common.mustCall(() => countdown.dec())); const str = fs.createReadStream(loc); - str.on('end', common.mustCall(maybeClose)); + str.on('end', common.mustCall(() => countdown.dec())); str.pipe(req); })); |