summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fetch/api/response/response-stream-bad-chunk.any.js
blob: d3d92e16772d10a8c91ee42d4c6bcaf0d4cc4fa0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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('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');