-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcached_async_iterable_test.js
344 lines (289 loc) · 11.3 KB
/
cached_async_iterable_test.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
import assert from "assert";
import {CachedAsyncIterable} from "../src/index";
/**
* Return a promise for an array with all the elements of the iterable.
*
* It uses for-await to support async iterables which can't be spread with
* ...iterable. See https://github.com/tc39/proposal-async-iteration/issues/103
*
*/
async function toArray(iterable) {
const result = [];
for await (const elem of iterable) {
result.push(elem);
}
return result;
}
suite("CachedAsyncIterable", function() {
suite("constructor errors", function(){
test("no argument", function() {
function run() {
new CachedAsyncIterable();
}
assert.throws(run, TypeError);
assert.throws(run, /iteration protocol/);
});
test("null argument", function() {
function run() {
new CachedAsyncIterable(null);
}
assert.throws(run, TypeError);
assert.throws(run, /iteration protocol/);
});
test("bool argument", function() {
function run() {
new CachedAsyncIterable(1);
}
assert.throws(run, TypeError);
assert.throws(run, /iteration protocol/);
});
test("number argument", function() {
function run() {
new CachedAsyncIterable(1);
}
assert.throws(run, TypeError);
assert.throws(run, /iteration protocol/);
});
});
suite("from()", function() {
test("pass any iterable", async function() {
const iterable = CachedAsyncIterable.from([1, 2]);
// No cached elements yet.
assert.deepEqual([...iterable], []);
// Deplete the original iterable.
assert.deepEqual(await toArray(iterable), [1, 2]);
});
test("pass another CachedAsyncIterable", function() {
const iterable1 = new CachedAsyncIterable([1, 2]);
const iterable2 = CachedAsyncIterable.from(iterable1);
assert.equal(iterable1, iterable2);
});
});
suite.skip("sync iteration over cached elements", function(){
let o1, o2;
suiteSetup(function() {
o1 = Object();
o2 = Object();
});
test("sync iterable with no cached elements yet", function() {
function *generate() {
yield *[o1, o2];
}
const iterable = new CachedAsyncIterable(generate());
assert.deepEqual([...iterable], []);
});
test("sync iterable with a few elements cached so far", async function() {
function *generate() {
yield *[o1, o2];
}
const iterable = new CachedAsyncIterable(generate());
await iterable.touchNext();
assert.deepEqual([...iterable], [o1]);
});
test("iterable with all cached elements", async function() {
function *generate() {
yield *[o1, o2];
}
const iterable = new CachedAsyncIterable(generate());
await iterable.touchNext();
await iterable.touchNext();
assert.deepEqual([...iterable], [o1, o2]);
});
test("async iterable with no cached elements yet", async function() {
async function *generate() {
yield *[o1, o2];
}
const iterable = new CachedAsyncIterable(generate());
assert.deepEqual([...iterable], []);
});
test("async iterable with a few elements cached so far", async function() {
async function *generate() {
yield *[o1, o2];
}
const iterable = new CachedAsyncIterable(generate());
await iterable.touchNext();
let x = [...iterable];
assert.deepEqual([...iterable], [o1])
});
test("async iterable with all cached elements", async function() {
async function *generate() {
yield *[o1, o2];
}
const iterable = new CachedAsyncIterable(generate());
await iterable.touchNext();
await iterable.touchNext();
assert.deepEqual([...iterable], [o1, o2]);
});
});
suite("async iteration", function(){
let o1, o2;
suiteSetup(function() {
o1 = Object();
o2 = Object();
});
test("lazy iterable", async function() {
async function *generate() {
yield *[o1, o2];
}
const iterable = new CachedAsyncIterable(generate());
assert.deepEqual(await toArray(iterable), [o1, o2]);
});
test("lazy iterable works more than once", async function() {
async function *generate() {
let i = 2;
while (--i) {
yield Object();
}
}
const iterable = new CachedAsyncIterable(generate());
const first = await toArray(iterable);
assert.deepEqual(await toArray(iterable), first);
});
test("lazy iterable can be called multiple times in parallel", async function() {
let counter = 0;
async function *generate() {
while (true) {
counter++;
yield null;
}
}
// We're testing that if the first call to asyncIterator has been
// made, but the value of it has not been returned yet,
// the consecutive call returns the same Promise rather than,
// attempting to fetch the next item from the iterator.
const iterable = new CachedAsyncIterable(generate());
const [val1, val2] = await Promise.all([
iterable[Symbol.asyncIterator]().next(),
iterable[Symbol.asyncIterator]().next(),
]);
assert.equal(counter, 1);
assert.equal(val1, val2);
});
test("iterable's next can be called multiple times in parallel", async function() {
let counter = 0;
async function *generate() {
while (true) {
counter++;
yield null;
}
}
const iterable = new CachedAsyncIterable(generate());
const iterator = iterable[Symbol.asyncIterator]();
let val1 = await iterator.next();
let val2 = await iterator.next();
assert.equal(counter, 2);
assert.notEqual(val1, val2);
});
});
suite("async touchNext", function(){
let o1, o2, generateMessages;
suiteSetup(function() {
o1 = Object();
o2 = Object();
generateMessages = async function *generateMessages() {
yield *[o1, o2];
}
});
test("consumes an element into the cache", async function() {
const iterable = new CachedAsyncIterable(generateMessages());
assert.equal(iterable.length, 0);
await iterable.touchNext();
assert.equal(iterable.length, 1);
});
test("allows to consume multiple elements into the cache", async function() {
const iterable = new CachedAsyncIterable(generateMessages());
await iterable.touchNext();
await iterable.touchNext();
assert.equal(iterable.length, 2);
});
test("allows to consume multiple elements at once", async function() {
const iterable = new CachedAsyncIterable(generateMessages());
await iterable.touchNext(2);
assert.equal(iterable.length, 2);
});
test("stops at the last element", async function() {
const iterable = new CachedAsyncIterable(generateMessages());
await iterable.touchNext();
await iterable.touchNext();
await iterable.touchNext();
assert.equal(iterable.length, 3);
await iterable.touchNext();
assert.equal(iterable.length, 3);
});
test("works on an empty iterable", async function() {
async function *generateEmptyMessages() {
yield *[];
}
const iterable = new CachedAsyncIterable(generateEmptyMessages());
await iterable.touchNext();
await iterable.touchNext();
await iterable.touchNext();
assert.equal(iterable.length, 1);
});
test("iteration for such cache works", async function() {
const iterable = new CachedAsyncIterable(generateMessages());
await iterable.touchNext();
await iterable.touchNext();
await iterable.touchNext();
// It's a bit quirky compared to the sync counterpart,
// but there's no good way to fold async iterator into
// an array.
let values = [];
for await (let elem of iterable) {
values.push(elem);
}
assert.deepEqual(values, [o1, o2]);
});
test("async version handles sync iterator", async function() {
const iterable = new CachedAsyncIterable([o1, o2]);
await iterable.touchNext();
await iterable.touchNext();
await iterable.touchNext();
// It's a bit quirky compared to the sync counterpart,
// but there's no good way to fold async iterator into
// an array.
let values = [];
for await (let elem of iterable) {
values.push(elem);
}
assert.deepEqual(values, [o1, o2]);
});
test("returns the most recent {value, done} object", async function() {
const iterable = new CachedAsyncIterable([o1, o2]);
assert.deepEqual(
await iterable.touchNext(),
{value: o1, done: false});
assert.deepEqual(
await iterable.touchNext(),
{value: o2, done: false});
assert.deepEqual(
await iterable.touchNext(),
{value: undefined, done: true});
assert.deepEqual(
await iterable.touchNext(),
{value: undefined, done: true});
});
test("touchNext can be called multiple times in parallel", async function() {
let counter = 0;
async function *generate() {
let value = 5;
while (value-- > 0) {
counter++;
yield await Promise.resolve(value);
}
}
// We're testing that if the first call to asyncIterator has been
// made, but the value of it has not been returned yet,
// the consequitive call returns the same Promise rather than,
// attempting to fetch the next item from the iterator.
const iterable = new CachedAsyncIterable(generate());
await Promise.all([
iterable.touchNext(2),
iterable[Symbol.asyncIterator]().next(),
iterable.touchNext(2),
iterable[Symbol.asyncIterator]().next(),
]);
assert.equal(counter, 4);
});
});
});