summaryrefslogtreecommitdiff
path: root/test/parallel/test-string-decoder-end.js
diff options
context:
space:
mode:
authorJustin Ridgewell <justin@ridgewell.name>2018-02-01 01:12:05 -0500
committerAnna Henningsen <anna@addaleax.net>2018-02-02 20:31:39 +0100
commitd2a6110d3fa78ef6680a9ef5faa279a4f35f486c (patch)
tree60f96b0c62aac6b9deb6feca0b7e50e9e157c3d0 /test/parallel/test-string-decoder-end.js
parent68783ae0b823c584f625c045a134bfff63f4d1b3 (diff)
downloadandroid-node-v8-d2a6110d3fa78ef6680a9ef5faa279a4f35f486c.tar.gz
android-node-v8-d2a6110d3fa78ef6680a9ef5faa279a4f35f486c.tar.bz2
android-node-v8-d2a6110d3fa78ef6680a9ef5faa279a4f35f486c.zip
string_decoder: reset decoder on end
This resets the StringDecoder's state after calling `#end`. Further writes to the decoder will act as if it were a brand new instance, allowing simple reuse. PR-URL: https://github.com/nodejs/node/pull/18494 Fixes: https://github.com/nodejs/node/issues/16564 Refs: https://github.com/nodejs/node/pull/16594 Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'test/parallel/test-string-decoder-end.js')
-rw-r--r--test/parallel/test-string-decoder-end.js51
1 files changed, 51 insertions, 0 deletions
diff --git a/test/parallel/test-string-decoder-end.js b/test/parallel/test-string-decoder-end.js
index 0284ee9f6c..2762ef0962 100644
--- a/test/parallel/test-string-decoder-end.js
+++ b/test/parallel/test-string-decoder-end.js
@@ -39,6 +39,46 @@ for (let i = 1; i <= 16; i++) {
encodings.forEach(testEncoding);
+testEnd('utf8', Buffer.of(0xE2), Buffer.of(0x61), '\uFFFDa');
+testEnd('utf8', Buffer.of(0xE2), Buffer.of(0x82), '\uFFFD\uFFFD');
+testEnd('utf8', Buffer.of(0xE2), Buffer.of(0xE2), '\uFFFD\uFFFD');
+testEnd('utf8', Buffer.of(0xE2, 0x82), Buffer.of(0x61), '\uFFFDa');
+testEnd('utf8', Buffer.of(0xE2, 0x82), Buffer.of(0xAC), '\uFFFD\uFFFD');
+testEnd('utf8', Buffer.of(0xE2, 0x82), Buffer.of(0xE2), '\uFFFD\uFFFD');
+testEnd('utf8', Buffer.of(0xE2, 0x82, 0xAC), Buffer.of(0x61), '€a');
+
+testEnd('utf16le', Buffer.of(0x3D), Buffer.of(0x61, 0x00), 'a');
+testEnd('utf16le', Buffer.of(0x3D), Buffer.of(0xD8, 0x4D, 0xDC), '\u4DD8');
+testEnd('utf16le', Buffer.of(0x3D, 0xD8), Buffer.of(), '\uD83D');
+testEnd('utf16le', Buffer.of(0x3D, 0xD8), Buffer.of(0x61, 0x00), '\uD83Da');
+testEnd(
+ 'utf16le',
+ Buffer.of(0x3D, 0xD8),
+ Buffer.of(0x4D, 0xDC),
+ '\uD83D\uDC4D'
+);
+testEnd('utf16le', Buffer.of(0x3D, 0xD8, 0x4D), Buffer.of(), '\uD83D');
+testEnd(
+ 'utf16le',
+ Buffer.of(0x3D, 0xD8, 0x4D),
+ Buffer.of(0x61, 0x00),
+ '\uD83Da'
+);
+testEnd('utf16le', Buffer.of(0x3D, 0xD8, 0x4D), Buffer.of(0xDC), '\uD83D');
+testEnd(
+ 'utf16le',
+ Buffer.of(0x3D, 0xD8, 0x4D, 0xDC),
+ Buffer.of(0x61, 0x00),
+ '👍a'
+);
+
+testEnd('base64', Buffer.of(0x61), Buffer.of(), 'YQ==');
+testEnd('base64', Buffer.of(0x61), Buffer.of(0x61), 'YQ==YQ==');
+testEnd('base64', Buffer.of(0x61, 0x61), Buffer.of(), 'YWE=');
+testEnd('base64', Buffer.of(0x61, 0x61), Buffer.of(0x61), 'YWE=YQ==');
+testEnd('base64', Buffer.of(0x61, 0x61, 0x61), Buffer.of(), 'YWFh');
+testEnd('base64', Buffer.of(0x61, 0x61, 0x61), Buffer.of(0x61), 'YWFhYQ==');
+
function testEncoding(encoding) {
bufs.forEach((buf) => {
testBuf(encoding, buf);
@@ -66,3 +106,14 @@ function testBuf(encoding, buf) {
assert.strictEqual(res1, res3, 'one byte at a time should match toString');
assert.strictEqual(res2, res3, 'all bytes at once should match toString');
}
+
+function testEnd(encoding, incomplete, next, expected) {
+ let res = '';
+ const s = new SD(encoding);
+ res += s.write(incomplete);
+ res += s.end();
+ res += s.write(next);
+ res += s.end();
+
+ assert.strictEqual(res, expected);
+}