1
0
Fork 0
firefox/testing/web-platform/tests/fetch/api/response/response-stream-bad-chunk.any.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

25 lines
1.2 KiB
JavaScript

// META: global=window,worker
// META: title=Response causes TypeError from bad chunk type
function runChunkTest(responseReaderMethod, testDescription) {
promise_test(test => {
let stream = new ReadableStream({
start(controller) {
controller.enqueue("not Uint8Array");
controller.close();
}
});
return promise_rejects_js(test, TypeError,
new Response(stream)[responseReaderMethod](),
'TypeError should propagate'
)
}, testDescription)
}
runChunkTest('arrayBuffer', 'ReadableStream with non-Uint8Array chunk passed to Response.arrayBuffer() causes TypeError');
runChunkTest('blob', 'ReadableStream with non-Uint8Array chunk passed to Response.blob() causes TypeError');
runChunkTest('bytes', 'ReadableStream with non-Uint8Array chunk passed to Response.bytes() causes TypeError');
runChunkTest('formData', 'ReadableStream with non-Uint8Array chunk passed to Response.formData() causes TypeError');
runChunkTest('json', 'ReadableStream with non-Uint8Array chunk passed to Response.json() causes TypeError');
runChunkTest('text', 'ReadableStream with non-Uint8Array chunk passed to Response.text() causes TypeError');