-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes: #17169 PR-URL: #17646 Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
- Loading branch information
1 parent
31c5db6
commit bdb535c
Showing
1 changed file
with
6 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,27 @@ | ||
'use strict'; | ||
require('../common'); | ||
const assert = require('assert'); | ||
const http = require('http'); | ||
const net = require('net'); | ||
const Countdown = require('../common/countdown'); | ||
|
||
const big = Buffer.alloc(16 * 1024, 'A'); | ||
|
||
const COUNT = 1e4; | ||
|
||
let received = 0; | ||
const countdown = new Countdown(COUNT, () => { | ||
server.close(); | ||
client.end(); | ||
}); | ||
|
||
let client; | ||
const server = http.createServer(function(req, res) { | ||
res.end(big, function() { | ||
if (++received === COUNT) { | ||
server.close(); | ||
client.end(); | ||
} | ||
countdown.dec(); | ||
}); | ||
}).listen(0, function() { | ||
const req = new Array(COUNT + 1).join('GET / HTTP/1.1\r\n\r\n'); | ||
client = net.connect(this.address().port, function() { | ||
client.write(req); | ||
}); | ||
|
||
// Just let the test terminate instead of hanging | ||
client.on('close', function() { | ||
if (received !== COUNT) | ||
server.close(); | ||
}); | ||
client.resume(); | ||
}); | ||
|
||
process.on('exit', function() { | ||
// The server should pause connection on pipeline flood, but it shoul still | ||
// resume it and finish processing the requests, when its output queue will | ||
// be empty again. | ||
assert.strictEqual(received, COUNT); | ||
}); |