1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
// META: global=window,worker
// META: title=Consuming Response body after getting a ReadableStream
// META: script=./response-stream-disturbed-util.js
async function createResponseWithLockedReadableStream(bodySource, callback) {
const response = await responseFromBodySource(bodySource);
response.body.getReader();
return callback(response);
}
for (const bodySource of ["fetch", "stream", "string"]) {
promise_test(function(test) {
return createResponseWithLockedReadableStream(bodySource, function(response) {
return promise_rejects_js(test, TypeError, response.blob());
});
}, `Getting blob after getting a locked Response body (body source: ${bodySource})`);
promise_test(function(test) {
return createResponseWithLockedReadableStream(bodySource, function(response) {
return promise_rejects_js(test, TypeError, response.text());
});
}, `Getting text after getting a locked Response body (body source: ${bodySource})`);
promise_test(function(test) {
return createResponseWithLockedReadableStream(bodySource, function(response) {
return promise_rejects_js(test, TypeError, response.json());
});
}, `Getting json after getting a locked Response body (body source: ${bodySource})`);
promise_test(function(test) {
return createResponseWithLockedReadableStream(bodySource, function(response) {
return promise_rejects_js(test, TypeError, response.arrayBuffer());
});
}, `Getting arrayBuffer after getting a locked Response body (body source: ${bodySource})`);
}
|