-
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.
stream: 'readable' have precedence over flowing
In Streams3 the 'readable' event/.read() method had a lower precedence than the `'data'` event that made them impossible to use them together. This make `.resume()` a no-op if there is a listener for the `'readable'` event, making the stream non-flowing if there is a `'data'` listener. Fixes: #18058 PR-URL: #18994 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
- Loading branch information
Showing
5 changed files
with
269 additions
and
49 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
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
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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const http = require('http'); | ||
const helloWorld = 'Hello World!'; | ||
const helloAgainLater = 'Hello again later!'; | ||
|
||
const server = http.createServer((req, res) => { | ||
res.writeHead(200, { | ||
'Content-Length': '' + (helloWorld.length + helloAgainLater.length) | ||
}); | ||
res.write(helloWorld); | ||
|
||
// we need to make sure the data is flushed | ||
setTimeout(() => { | ||
res.end(helloAgainLater); | ||
}, common.platformTimeout(10)); | ||
}).listen(0, function() { | ||
const opts = { | ||
hostname: 'localhost', | ||
port: server.address().port, | ||
path: '/' | ||
}; | ||
|
||
const expectedData = [helloWorld, helloAgainLater]; | ||
const expectedRead = [helloWorld, null, helloAgainLater, null]; | ||
|
||
const req = http.request(opts, (res) => { | ||
res.on('error', common.mustNotCall); | ||
|
||
res.on('readable', common.mustCall(() => { | ||
let data; | ||
|
||
do { | ||
data = res.read(); | ||
assert.strictEqual(data, expectedRead.shift()); | ||
} while (data !== null); | ||
}, 2)); | ||
|
||
res.setEncoding('utf8'); | ||
res.on('data', common.mustCall((data) => { | ||
assert.strictEqual(data, expectedData.shift()); | ||
}, 2)); | ||
|
||
res.on('end', common.mustCall(() => { | ||
server.close(); | ||
})); | ||
}); | ||
|
||
req.end(); | ||
}); |
Oops, something went wrong.