forked from WebKit/WebKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadable-byte-stream-controller.js
429 lines (354 loc) · 11.6 KB
/
readable-byte-stream-controller.js
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
'use strict';
if (self.importScripts) {
self.importScripts('../resources/testharness.js');
}
test(function() {
const rs = new ReadableStream({
type: "bytes"
});
}, "Creating a ReadableStream with an underlyingSource with type property set to 'bytes' should succeed");
test(function() {
let controller;
const rs = new ReadableStream({
start: function(c) {
controller = c;
},
type: "bytes"
});
assert_throws_js(TypeError,
function() { controller.error.apply(rs); });
}, "Calling error() with a this object different from ReadableByteStreamController should throw a TypeError");
test(function() {
let controller;
const rs = new ReadableStream({
start: function(c) {
controller = c;
},
type: "bytes"
});
assert_throws_js(TypeError,
function() { controller.close.apply(rs); });
}, "Calling close() with a this object different from ReadableByteStreamController should throw a TypeError");
test(function() {
let controller;
const rs = new ReadableStream({
start: function(c) {
controller = c;
},
type: "bytes"
});
assert_throws_js(TypeError,
function() { controller.enqueue.apply(rs, new Int8Array(1)); });
}, "Calling enqueue() with a this object different from ReadableByteStreamController should throw a TypeError");
test(function() {
let controller;
const rs = new ReadableStream({
start: function(c) {
controller = c;
},
type: "bytes"
});
controller.enqueue(new Int8Array(2));
controller.close();
assert_throws_js(TypeError,
function() { controller.enqueue(new Int8Array(1)); });
}, "Calling enqueue() when close has been requested but not yet performed should throw a TypeError");
test(function() {
let controller;
const rs = new ReadableStream({
start: function(c) {
controller = c;
},
type: "bytes"
});
controller.close();
assert_throws_js(TypeError,
function() {
controller.enqueue(new Int8Array(1));
});
}, "Calling enqueue() when stream is not readable should throw a TypeError");
test(function() {
let controller;
const rs = new ReadableStream({
start: function(c) {
controller = c;
},
type: "bytes"
});
const invalidChunk = function() {};
assert_throws_js(TypeError,
function() { controller.enqueue(invalidChunk); });
}, "Calling enqueue() with a chunk that is not an object should trhow a TypeError");
test(function() {
let controller;
const rs = new ReadableStream({
start: function(c) {
controller = c;
},
type: "bytes"
});
const invalidChunk = {};
assert_throws_js(TypeError,
function() { controller.enqueue(invalidChunk); });
}, "Calling enqueue() with a chunk that is not an ArrayBufferView should throw a TypeError");
test(function() {
let controller;
const rs = new ReadableStream({
start: function(c) {
controller = c;
},
type: "bytes"
});
assert_throws_js(TypeError,
function() {
controller.close();
controller.error();
});
}, "Calling error() after calling close() should throw a TypeError");
test(function() {
let controller;
const rs = new ReadableStream({
start: function(c) {
controller = c;
},
type: "bytes"
});
assert_throws_js(TypeError,
function() {
controller.error();
controller.error();
});
}, "Calling error() after calling error() should throw a TypeError");
test(function() {
let controller;
const rs = new ReadableStream({
start: function(c) {
controller = c;
},
type: "bytes"
});
assert_throws_js(TypeError,
function() {
controller.close();
controller.close();
});
}, "Calling close() after calling close() should throw a TypeError");
test(function() {
let controller;
const rs = new ReadableStream({
start: function(c) {
controller = c;
},
type: "bytes"
});
assert_throws_js(TypeError,
function() {
controller.error();
controller.close();
});
}, "Calling close() after calling error() should throw a TypeError");
promise_test(function(test) {
let controller;
const rs = new ReadableStream({
start: function(c) {
controller = c;
},
type: "bytes"
});
const myError = new Error("my error");
controller.error(myError);
return promise_rejects_exactly(test, myError, rs.getReader().read());
}, "Calling read() on a reader associated to a controller that has been errored should fail with provided error");
promise_test(function() {
let controller;
const rs = new ReadableStream({
start: function(c) {
controller = c;
},
type: "bytes"
});
controller.close();
return rs.getReader().read().then(
function(res) {
assert_object_equals(res, {value: undefined, done: true});
}
);
}, "Calling read() on a reader associated to a controller that has been closed should not be rejected");
promise_test(function(test) {
let controller;
const rs = new ReadableStream({
start: function(c) {
controller = c;
},
type: "bytes"
});
const myError = new Error("My error");
let readingPromise = rs.getReader().read();
controller.error(myError);
return promise_rejects_exactly(test, myError, readingPromise);
}, "Pending reading promise should be rejected if controller is errored (case where autoAllocateChunkSize is undefined)");
promise_test(function(test) {
let controller;
const rs = new ReadableStream({
autoAllocateChunkSize: 128,
start: function(c) {
controller = c;
},
type: "bytes"
});
const myError = new Error("My error");
let readingPromise = rs.getReader().read();
controller.error(myError);
return promise_rejects_exactly(test, myError, readingPromise);
}, "Pending reading promise should be rejected if controller is errored (case where autoAllocateChunkSize is specified)");
promise_test(function() {
let controller;
const rs = new ReadableStream({
start: function(c) {
controller = c;
},
type: "bytes"
});
const buffer = new Uint8Array([3]);
controller.enqueue(buffer);
return rs.getReader().read().then(
function(res) {
assert_object_equals(res, {value: buffer, done: false});
}
);
}, "Enqueuing a chunk, getting a reader and calling read should result in a promise resolved with said chunk");
promise_test(function() {
let controller;
const rs = new ReadableStream({
start: function(c) {
controller = c;
},
type: "bytes"
});
let promise = rs.getReader().read();
const buffer = new Uint8Array([1]);
controller.enqueue(buffer);
return promise.then(
function(res) {
assert_object_equals(res, {value: buffer, done: false});
}
);
}, "Getting a reader, calling read and enqueuing a chunk should result in the read promise being resolved with said chunk");
promise_test(function() {
let controller;
const rs = new ReadableStream({
start: function(c) {
controller = c;
},
type: "bytes"
});
const reader = rs.getReader();
const buffer = new Uint8Array([1]);
controller.enqueue(buffer);
return reader.read().then(
function(res) {
assert_object_equals(res, {value: buffer, done: false});
}
);
}, "Getting a reader, enqueuing a chunk and finally calling read should result in a promise resolved with said chunk");
test(function() {
let controller;
const rs = new ReadableStream({
start: function(c) {
controller = c;
},
type: "bytes"
});
assert_equals(controller.desiredSize, 0, "by default initial value of desiredSize should be 0");
}, "By default initial value of desiredSize should be 0");
promise_test(function() {
const rs = new ReadableStream({
type: "bytes"
});
return rs.cancel().then(
function(res) {
assert_object_equals(res, undefined);
}
);
}, "Calling cancel() on a readable ReadableStream that is not locked to a reader should return a promise whose fulfillment handler returns undefined");
promise_test(function() {
let pullCalls = 0;
const rs = new ReadableStream({
pull: function () {
pullCalls++;
},
type: "bytes"
});
return new Promise(function(resolve, reject) {
setTimeout(function() {
if (pullCalls === 0)
resolve("ok");
else
reject("No call should have been made to pull function");
}, 200);
});
}, "Test that pull is not called when a new ReadableStream is created with default strategy parameters and a ReadableByteStreamController");
promise_test(function() {
let pullCalls = 0;
const rs = new ReadableStream({
pull: function () {
pullCalls++;
},
type: "bytes"
}, {
highWaterMark: 1
});
return new Promise(function(resolve, reject) {
setTimeout(function() {
if (pullCalls === 1)
resolve("ok");
else
reject("1 call should have been made to pull function");
}, 200);
});
}, "Test that pull is called once when a new ReadableStream is created with a highWaterMark of 1 and a ReadableByteStreamController");
promise_test(function() {
const myError = new Error("Pull failed");
const rs = new ReadableStream({
pull: function () {
throw myError;
},
type: "bytes"
}, {
highWaterMark: 1
});
return new Promise(function(resolve, reject) {
setTimeout(function() {
rs.cancel().then(
function (res) { reject("Cancel should return a promise resolved with rejection"); },
function (err) {
if (err === myError)
resolve();
else
reject("Reason for rejection should be the error that was thrown in pull");
}
)
}, 200)});
}, "For a ReadableStream created with a highWaterMark of 1 and a ReadableByteStreamController, calling cancel after pull has thrown an error should result in a promise rejected with the same error");
promise_test(function() {
const myError = new Error("Start failed");
const rs = new ReadableStream({
start: function () {
return new Promise(function(resolve, reject) { reject(myError); });
},
type: "bytes"
});
return new Promise(function(resolve, reject) {
setTimeout(function() {
rs.cancel().then(
function (res) { reject("An error should have been thrown"); },
function (err) {
if (err === myError)
resolve();
else
reject("Reason for rejection should be the error that led the promise returned by start to fail");
}
)
}, 200)});
}, "Calling cancel after creating a ReadableStream with an underlyingByteStream's start function returning a rejected promise should result in a promise rejected with the same error");
done();