Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/_http_server.js
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ function resOnFinish(req, res, socket, state, server) {
// if the user never called req.read(), and didn't pipe() or
// .resume() or .on('data'), then we call req._dump() so that the
// bytes will be pulled off the wire.
if (!req._consuming && !req._readableState.resumeScheduled)
if (!req._readableState.resumeScheduled)
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this was noted in the original PR. req._consuming is never set.

req._dump();

res.detachSocket(socket);
Expand Down
60 changes: 39 additions & 21 deletions test/sequential/test-http-dump-req-when-res-ends.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,53 +2,71 @@

const common = require('../common');
const http = require('http');
const assert = require('assert');
const fs = require('fs');

const server = http.createServer(function(req, res) {
// this checks if the request gets dumped
let resEnd = null;

const server = http.createServer(common.mustCall(function(req, res) {
// This checks if the request gets dumped
// resume will be triggered by res.end().
req.on('resume', common.mustCall(function() {
console.log('resume called');
// There is no 'data' event handler anymore
// it gets automatically removed when dumping the request.
assert.strictEqual(req.listenerCount('data'), 0);

req.on('data', common.mustCallAtLeast(function(d) {
// Leaving the console.log explicitly, so that
// we can know how many chunks we have received.
console.log('data', d);
}, 1));
}));

// end is not called as we are just exhausting
// the in-memory buffer
req.on('end', common.mustNotCall);

// this 'data' handler will be removed when dumped
req.on('data', common.mustNotCall);
// We explicitly pause the stream
// so that the following on('data') does not cause
// a resume.
req.pause();
req.on('data', function() {});

// start sending the response
// Start sending the response.
res.flushHeaders();

setTimeout(function() {
res.end('hello world');
}, common.platformTimeout(100));
});
resEnd = function() {
setImmediate(function() {
res.end('hello world');
});
};
}));

server.listen(0, function() {
server.listen(0, common.mustCall(function() {
const req = http.request({
method: 'POST',
port: server.address().port
});

// Send the http request without waiting
// for the body
// for the body.
req.flushHeaders();

req.on('response', common.mustCall(function(res) {
// pipe the body as soon as we get the headers of the
// response back
fs.createReadStream(__filename).pipe(req);
// Pipe the body as soon as we get the headers of the
// response back.
const readFileStream = fs.createReadStream(__filename);
readFileStream.on('end', resEnd);

readFileStream.pipe(req);

res.resume();

// wait for the response
// Wait for the response.
res.on('end', function() {
server.close();
});
}));
});

req.on('error', function() {
// An error can happen if there is some data still
// being sent, as the other side is calling .destroy()
// this is safe to ignore.
});
}));