summaryrefslogtreecommitdiff
path: root/test/parallel/test-stream2-decode-partial.js
diff options
context:
space:
mode:
authorBrian White <mscdex@mscdex.net>2016-02-14 12:25:40 -0500
committerBrian White <mscdex@mscdex.net>2016-02-17 14:15:47 -0500
commit92212014ffc95a8bc5e56fcc2c076bac63c20c23 (patch)
treebbad5eaaea43383a56be4d1a8511aa66833dc32c /test/parallel/test-stream2-decode-partial.js
parent7885b1d7aa11434ae5692241ea2fdd4baccd10e5 (diff)
downloadandroid-node-v8-92212014ffc95a8bc5e56fcc2c076bac63c20c23.tar.gz
android-node-v8-92212014ffc95a8bc5e56fcc2c076bac63c20c23.tar.bz2
android-node-v8-92212014ffc95a8bc5e56fcc2c076bac63c20c23.zip
stream: fix no data on partial decode
Before this commit, it was possible to push a partial character to a readable stream where it was decoded as an empty string and then added to the internal buffer. This caused the stream to not emit any data, even when the rest of the character bytes were pushed separately, because of a non-zero length check of the first chunk in the internal buffer. Fixes: https://github.com/nodejs/node/issues/5223 PR-URL: https://github.com/nodejs/node/pull/5226 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'test/parallel/test-stream2-decode-partial.js')
-rw-r--r--test/parallel/test-stream2-decode-partial.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/parallel/test-stream2-decode-partial.js b/test/parallel/test-stream2-decode-partial.js
new file mode 100644
index 0000000000..b58e192b9c
--- /dev/null
+++ b/test/parallel/test-stream2-decode-partial.js
@@ -0,0 +1,23 @@
+'use strict';
+require('../common');
+const Readable = require('_stream_readable');
+const assert = require('assert');
+
+var buf = '';
+const euro = new Buffer([0xE2, 0x82, 0xAC]);
+const cent = new Buffer([0xC2, 0xA2]);
+const source = Buffer.concat([euro, cent]);
+
+const readable = Readable({ encoding: 'utf8' });
+readable.push(source.slice(0, 2));
+readable.push(source.slice(2, 4));
+readable.push(source.slice(4, 6));
+readable.push(null);
+
+readable.on('data', function(data) {
+ buf += data;
+});
+
+process.on('exit', function() {
+ assert.strictEqual(buf, '€¢');
+});