deno.land / std@0.157.0 / async / tee_test.ts

نووسراو ببینە
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
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.import { tee } from "./tee.ts";import { assertEquals } from "../testing/asserts.ts";
/** An example async generator */const gen = async function* iter() { yield 1; yield 2; yield 3;};
/** Testing utility for accumulating the values in async iterable. */async function accumulate<T>(src: AsyncIterable<T>): Promise<T[]> { const res: T[] = []; for await (const item of src) { res.push(item); } return res;}
Deno.test("async/tee - 2 branches", async () => { const iter = gen(); const [res0, res1] = tee(iter).map(accumulate); assertEquals( await Promise.all([res0, res1]), [ [1, 2, 3], [1, 2, 3], ], );});
Deno.test("async/tee - 3 branches - immediate consumption", async () => { const iter = gen(); const [res0, res1, res2] = tee(iter, 3).map(accumulate); assertEquals( await Promise.all([res0, res1, res2]), [ [1, 2, 3], [1, 2, 3], [1, 2, 3], ], );});
Deno.test("async/tee - 3 branches - delayed consumption", async () => { const iter = gen(); const iters = tee(iter, 3);
await new Promise<void>((resolve) => { setTimeout(() => resolve(), 20); });
assertEquals( await Promise.all(iters.map(accumulate)), [ [1, 2, 3], [1, 2, 3], [1, 2, 3], ], );});
Deno.test("async/tee - concurent .next calls", async () => { const [left] = tee(gen()); const l = left[Symbol.asyncIterator](); assertEquals(await Promise.all([l.next(), l.next(), l.next(), l.next()]), [{ value: 1, done: false, }, { value: 2, done: false, }, { value: 3, done: false, }, { value: undefined, done: true, }]);});
std

Version Info

Tagged at
a year ago