Skip to content

Commit 98dd270

Browse files
committed
lib: added test case for consumers.js and blob.js
Added test cases for the code changes. Fixes: nodejs#39804 Refs: https://fetch.spec.whatwg.org/#body-mixin
1 parent 0a2fcb8 commit 98dd270

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

test/parallel/test-blob.js

+9
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,15 @@ assert.throws(() => new Blob({}), {
8787
}));
8888
}
8989

90+
{
91+
const b = new Blob(['hello', Buffer.from('world\ud801')]);
92+
assert.strictEqual(b.size, 13);
93+
b.text().then(common.mustCall((text) => {
94+
assert.strictEqual(text, 'helloworld\ufffd');
95+
assert.strictEqual(text.length, 11);
96+
}));
97+
}
98+
9099
{
91100
const b = new Blob(
92101
[

test/parallel/test-stream-consumers.js

+12
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,18 @@ const kArrayBuffer =
7373
setTimeout(() => passthrough.end('there'), 10);
7474
}
7575

76+
{
77+
const passthrough = new PassThrough();
78+
79+
text(passthrough).then(common.mustCall(async (str) => {
80+
assert.strictEqual(str.length, 11);
81+
assert.deepStrictEqual(str, 'hellothere\ufffd');
82+
}));
83+
84+
passthrough.write('hello');
85+
setTimeout(() => passthrough.end('there\ud801'), 10);
86+
}
87+
7688
{
7789
const passthrough = new PassThrough();
7890

0 commit comments

Comments
 (0)