-
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: convert existing buffer when calling .setEncoding
Convert already-stored chunks when `.setEncoding()` is called so that subsequent `data` events will receive decoded strings, as they expect. Fixes: #27932 PR-URL: #27936 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Rich Trott <[email protected]>
- Loading branch information
Showing
2 changed files
with
74 additions
and
1 deletion.
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
60 changes: 60 additions & 0 deletions
60
test/parallel/test-stream-readable-setEncoding-existing-buffers.js
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,60 @@ | ||
'use strict'; | ||
require('../common'); | ||
const { Readable } = require('stream'); | ||
const assert = require('assert'); | ||
|
||
{ | ||
// Call .setEncoding() while there are bytes already in the buffer. | ||
const r = new Readable({ read() {} }); | ||
|
||
r.push(Buffer.from('a')); | ||
r.push(Buffer.from('b')); | ||
|
||
r.setEncoding('utf8'); | ||
const chunks = []; | ||
r.on('data', (chunk) => chunks.push(chunk)); | ||
|
||
process.nextTick(() => { | ||
assert.deepStrictEqual(chunks, ['ab']); | ||
}); | ||
} | ||
|
||
{ | ||
// Call .setEncoding() while the buffer contains a complete, | ||
// but chunked character. | ||
const r = new Readable({ read() {} }); | ||
|
||
r.push(Buffer.from([0xf0])); | ||
r.push(Buffer.from([0x9f])); | ||
r.push(Buffer.from([0x8e])); | ||
r.push(Buffer.from([0x89])); | ||
|
||
r.setEncoding('utf8'); | ||
const chunks = []; | ||
r.on('data', (chunk) => chunks.push(chunk)); | ||
|
||
process.nextTick(() => { | ||
assert.deepStrictEqual(chunks, ['🎉']); | ||
}); | ||
} | ||
|
||
{ | ||
// Call .setEncoding() while the buffer contains an incomplete character, | ||
// and finish the character later. | ||
const r = new Readable({ read() {} }); | ||
|
||
r.push(Buffer.from([0xf0])); | ||
r.push(Buffer.from([0x9f])); | ||
|
||
r.setEncoding('utf8'); | ||
|
||
r.push(Buffer.from([0x8e])); | ||
r.push(Buffer.from([0x89])); | ||
|
||
const chunks = []; | ||
r.on('data', (chunk) => chunks.push(chunk)); | ||
|
||
process.nextTick(() => { | ||
assert.deepStrictEqual(chunks, ['🎉']); | ||
}); | ||
} |