This repository was archived by the owner on Jun 6, 2021. It is now read-only.
forked from kiwiirc/kiwiirc
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathBatchAdd.spec.js
173 lines (154 loc) · 5.37 KB
/
BatchAdd.spec.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
import batchedAdd from '@/libs/batchedAdd';
describe('batchedAdd.vue', () => {
it('should return a batching function', () => {
let batch = batchedAdd();
expect(batch).toBeInstanceOf(Function);
});
it('should expose its queue', () => {
let batch = batchedAdd();
expect(batch.queue).toBeInstanceOf(Function);
expect(batch.queue()).toEqual([]);
});
it('should process three items without a batch', (done) => {
let itemCount = 0;
let singleItem = () => {
itemCount++;
if (itemCount === 3) {
done();
}
};
let batchItems = () => {
done(new Error('batch item caught'));
};
let batch = batchedAdd(singleItem, batchItems);
batch('item1');
batch('item2');
batch('item3');
});
it('should process 100 items on the same js tick without a batch', (done) => {
let itemCount = 0;
let singleItem = () => {
itemCount++;
if (itemCount === 100) {
done();
}
};
let batchItems = () => {
done(new Error('batch item caught'));
};
let batch = batchedAdd(singleItem, batchItems);
for (let i = 0; i < 100; i++) {
batch('item' + i);
}
});
it('should process 102 single items, then a batch of 3', (done) => {
let singleCount = 0;
let singleItem = () => {
singleCount++;
};
let batchItems = (items) => {
if (singleCount !== 102) {
return done(new Error('Expected 102 single items, found ' + singleCount));
}
if (items.length === 1) {
return done(new Error('Expected 3 batched items, found ' + items.length));
}
return done();
};
let batch = batchedAdd(singleItem, batchItems);
for (let i = 0; i < 100; i++) {
batch('item' + i);
}
setTimeout(() => batch('item1'), 10);
setTimeout(() => batch('item2'), 20);
// The above loop + 2 timeouts = 3 ticks, the below are further ticks to be batched
setTimeout(() => batch('item3'), 30);
setTimeout(() => batch('item4'), 40);
setTimeout(() => batch('item5'), 50);
});
it('should process a batched item after three single items on different js ticks', (done) => {
let singleCount = 0;
let singleItem = () => {
singleCount++;
if (singleCount > 3) {
done(new Error('Expected 3 single items before a batch, found ' + singleCount));
}
};
let batchItems = () => {
if (singleCount !== 3) {
done(new Error('Expected 3 single items before a batch, found ' + singleCount));
} else {
done();
}
};
let batch = batchedAdd(singleItem, batchItems);
setTimeout(() => batch('item1'), 10);
setTimeout(() => batch('item2'), 20);
setTimeout(() => batch('item3'), 30);
setTimeout(() => batch('item4'), 40);
});
it('should process 3 items in a batch', (done) => {
let singleItem = (item) => {};
let batchItems = (items) => {
if (items.length !== 3) {
done(new Error(`Expected 3 items in a batch, found ${items.length}`));
} else {
done();
}
};
let batch = batchedAdd(singleItem, batchItems);
setTimeout(() => batch('item1'), 10);
setTimeout(() => batch('item2'), 20);
setTimeout(() => batch('item3'), 30);
setTimeout(() => batch('item4'), 40);
setTimeout(() => batch('item5'), 50);
setTimeout(() => batch('item6'), 60);
});
it('should process a single item after a batch has finished', (done) => {
let singleCount = 0;
let batchCount = 0;
let singleItem = () => {
if (singleCount === 3 && batchCount === 1) {
done();
}
singleCount++;
};
let batchItems = (items) => {
if (batchCount > 0) {
done(new Error('Processing a batch more than once'));
}
batchCount++;
};
let batch = batchedAdd(singleItem, batchItems);
setTimeout(() => batch('item1'), 10);
setTimeout(() => batch('item2'), 20);
setTimeout(() => batch('item3'), 30);
// Batch kicks in here
setTimeout(() => batch('item4'), 40);
setTimeout(() => batch('item5'), 50);
setTimeout(() => batch('item6'), 60);
setTimeout(() => {
// Should revert back to being a single item
batch('item7');
}, 1200);
});
it('should process 4 single items', (done) => {
let singleCount = 0;
let singleItem = () => {
singleCount++;
if (singleCount === 4) {
done();
}
};
let batchItems = (items) => {
done(new Error('Items should not be batched'));
};
let batch = batchedAdd(singleItem, batchItems);
setTimeout(() => batch('item1'), 10);
setTimeout(() => batch('item2'), 20);
setTimeout(() => batch('item3'), 30);
setTimeout(() => {
batch('item4');
}, 1200);
}, 3000);
});