-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcached_sync_iterable_test.js
170 lines (141 loc) · 5.19 KB
/
cached_sync_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
import assert from "assert";
import {CachedSyncIterable} from "../src/index";
suite("CachedSyncIterable", function() {
suite("constructor errors", function(){
test("no argument", function() {
function run() {
new CachedSyncIterable();
}
assert.throws(run, TypeError);
assert.throws(run, /iteration protocol/);
});
test("null argument", function() {
function run() {
new CachedSyncIterable(null);
}
assert.throws(run, TypeError);
assert.throws(run, /iteration protocol/);
});
test("bool argument", function() {
function run() {
new CachedSyncIterable(1);
}
assert.throws(run, TypeError);
assert.throws(run, /iteration protocol/);
});
test("number argument", function() {
function run() {
new CachedSyncIterable(1);
}
assert.throws(run, TypeError);
assert.throws(run, /iteration protocol/);
});
});
suite("from()", function() {
test("pass any iterable", function() {
const iterable = CachedSyncIterable.from([1, 2]);
assert.deepEqual([...iterable], [1, 2]);
});
test("pass another CachedSyncIterable", function() {
const iterable1 = new CachedSyncIterable([1, 2]);
const iterable2 = CachedSyncIterable.from(iterable1);
assert.equal(iterable1, iterable2);
});
});
suite("sync iteration", function(){
let o1, o2;
suiteSetup(function() {
o1 = Object();
o2 = Object();
});
test("eager iterable", function() {
const iterable = new CachedSyncIterable([o1, o2]);
assert.deepEqual([...iterable], [o1, o2]);
});
test("eager iterable works more than once", function() {
const iterable = new CachedSyncIterable([o1, o2]);
assert.deepEqual([...iterable], [o1, o2]);
assert.deepEqual([...iterable], [o1, o2]);
});
test("lazy iterable", function() {
function *generate() {
yield *[o1, o2];
}
const iterable = new CachedSyncIterable(generate());
assert.deepEqual([...iterable], [o1, o2]);
});
test("lazy iterable works more than once", function() {
function *generate() {
let i = 2;
while (--i) {
yield Object();
}
}
const iterable = new CachedSyncIterable(generate());
const first = [...iterable];
assert.deepEqual([...iterable], first);
});
});
suite("touchNext", function(){
let o1, o2;
suiteSetup(function() {
o1 = Object();
o2 = Object();
});
test("consumes an element into the cache", function() {
const iterable = new CachedSyncIterable([o1, o2]);
assert.equal(iterable.length, 0);
iterable.touchNext();
assert.equal(iterable.length, 1);
});
test("allows to consume multiple elements into the cache", function() {
const iterable = new CachedSyncIterable([o1, o2]);
iterable.touchNext();
iterable.touchNext();
assert.equal(iterable.length, 2);
});
test("allows to consume multiple elements at once", function() {
const iterable = new CachedSyncIterable([o1, o2]);
iterable.touchNext(2);
assert.equal(iterable.length, 2);
});
test("stops at the last element", function() {
const iterable = new CachedSyncIterable([o1, o2]);
iterable.touchNext();
iterable.touchNext();
iterable.touchNext();
assert.equal(iterable.length, 3);
iterable.touchNext();
assert.equal(iterable.length, 3);
});
test("works on an empty iterable", function() {
const iterable = new CachedSyncIterable([]);
iterable.touchNext();
iterable.touchNext();
iterable.touchNext();
assert.equal(iterable.length, 1);
});
test("iteration for such cache works", function() {
const iterable = new CachedSyncIterable([o1, o2]);
iterable.touchNext();
iterable.touchNext();
iterable.touchNext();
assert.deepEqual([...iterable], [o1, o2]);
});
test("returns the most recent {value, done} object", function() {
const iterable = new CachedSyncIterable([o1, o2]);
assert.deepEqual(
iterable.touchNext(),
{value: o1, done: false});
assert.deepEqual(
iterable.touchNext(),
{value: o2, done: false});
assert.deepEqual(
iterable.touchNext(),
{value: undefined, done: true});
assert.deepEqual(
iterable.touchNext(),
{value: undefined, done: true});
});
});
});