Skip to content

Commit

Permalink
test: buffer.write with longer string scenario
Browse files Browse the repository at this point in the history
Make sure longer strings are written up to the buffer end

Refs: nodejs#32119
  • Loading branch information
HarshithaKP committed Mar 6, 2020
1 parent 757e203 commit 2fdbb5e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/parallel/test-buffer-write.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ for (let i = 1; i < 4; i++) {
const z = Buffer.alloc(4, 0);
assert.strictEqual(z.write('\u0001', 3, 'ucs2'), 0);
assert.strictEqual(Buffer.compare(z, Buffer.alloc(4, 0)), 0);
// Make sure longer strings are written up to the buffer end.
assert.strictEqual(z.write('abcd', 2), 2);

// Large overrun could corrupt the process
assert.strictEqual(Buffer.alloc(4)
Expand Down

0 comments on commit 2fdbb5e

Please sign in to comment.