-
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: improve
respondWithNewView()
This fixes validating an ArrayBufferView given to ReadableStreamBYOBRequest.respondWithNewView() to improve the web streams compatibility. Signed-off-by: Daeyeon Jeong daeyeon.dev@gmail.com PR-URL: #43866 Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
- Loading branch information
1 parent
81a2194
commit 2266a4b
Showing
3 changed files
with
79 additions
and
0 deletions.
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
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
54 changes: 54 additions & 0 deletions
54
test/parallel/test-whatwg-readablebytestream-bad-buffers-and-views.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,54 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const assert = require('node:assert'); | ||
|
||
let pass = 0; | ||
|
||
{ | ||
// ReadableStream with byte source: respondWithNewView() throws if the | ||
// supplied view's buffer has a different length (in the closed state) | ||
const stream = new ReadableStream({ | ||
pull: common.mustCall(async (c) => { | ||
const view = new Uint8Array(new ArrayBuffer(10), 0, 0); | ||
|
||
c.close(); | ||
|
||
assert.throws(() => c.byobRequest.respondWithNewView(view), { | ||
code: 'ERR_INVALID_ARG_VALUE', | ||
name: 'RangeError', | ||
}); | ||
pass++; | ||
}), | ||
type: 'bytes', | ||
}); | ||
|
||
const reader = stream.getReader({ mode: 'byob' }); | ||
reader.read(new Uint8Array([4, 5, 6])); | ||
} | ||
|
||
{ | ||
// ReadableStream with byte source: respondWithNewView() throws if the | ||
// supplied view's buffer has been detached (in the closed state) | ||
const stream = new ReadableStream({ | ||
pull: common.mustCall((c) => { | ||
c.close(); | ||
|
||
// Detach it by reading into it | ||
const view = new Uint8Array([1, 2, 3]); | ||
reader.read(view); | ||
|
||
assert.throws(() => c.byobRequest.respondWithNewView(view), { | ||
code: 'ERR_INVALID_STATE', | ||
name: 'TypeError', | ||
}); | ||
pass++; | ||
}), | ||
type: 'bytes', | ||
}); | ||
|
||
const reader = stream.getReader({ mode: 'byob' }); | ||
reader.read(new Uint8Array([4, 5, 6])); | ||
} | ||
|
||
process.on('exit', () => assert.strictEqual(pass, 2)); |