-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
161 lines (122 loc) · 3.23 KB
/
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
import {setTimeout as delay} from 'node:timers/promises';
import t from 'libtap';
import Debouncer from '@cfware/debouncer';
class TestObject {
constructor(t, ...args) {
this.runs = 0;
this.start = Date.now() + 2;
this.t = t;
this.d = new Debouncer(() => {
this.runs++;
}, ...args);
}
run(immediately) {
this.d.run(immediately);
}
flush() {
this.d.flush();
}
clear() {
this.d.clear();
}
async checkAfter(ms, expected) {
await delay(ms);
this.t.equal(this.runs, expected, `after ${ms}ms delay`);
}
}
t.test('exports constructor', async t => {
t.type(Debouncer, 'function');
t.throws(() => new Debouncer(), 'Function is required');
t.type(new Debouncer(() => {}), Debouncer);
});
t.test('single call to .run', async t => {
const d = new TestObject(t);
d.run();
return Promise.all([
d.checkAfter(75, 0),
d.checkAfter(125, 1),
d.checkAfter(250, 1)
]);
});
t.test('two calls to .run within first delay', async t => {
const d = new TestObject(t, 100);
d.run();
setTimeout(() => d.run(), 5);
return Promise.all([
d.checkAfter(75, 0),
d.checkAfter(125, 1),
d.checkAfter(250, 1)
]);
});
t.test('two calls after first run', async t => {
const d = new TestObject(t);
d.run();
setTimeout(() => d.run(), 110);
setTimeout(() => d.run(), 150);
return Promise.all([
d.checkAfter(75, 0),
d.checkAfter(125, 1),
d.checkAfter(225, 1),
d.checkAfter(275, 2),
d.checkAfter(375, 2)
]);
});
t.test('flush without run', async t => {
const d = new TestObject(t);
d.flush();
return d.checkAfter(150, 0);
});
t.test('flush after run', async t => {
const d = new TestObject(t);
d.run();
setTimeout(() => d.flush(), 50);
return Promise.all([
d.checkAfter(25, 0),
d.checkAfter(75, 1),
d.checkAfter(250, 1)
]);
});
t.test('immediate flush', async t => {
const d = new TestObject(t);
d.run(true);
return Promise.all([
d.checkAfter(0, 1),
d.checkAfter(250, 1)
]);
});
t.test('clear without run', async t => {
const d = new TestObject(t);
d.clear();
return d.checkAfter(150, 0);
});
t.test('clear during delay', async t => {
const d = new TestObject(t);
d.run();
setTimeout(() => d.clear(), 50);
return d.checkAfter(175, 0);
});
t.test('maximum delays', async t => {
// 100ms minimum delay, 200ms maximum.
const d = new TestObject(t, 100, 2);
d.run();
d.flush();
// Initial schedule is for +100ms
d.run();
// This will defer to 160ms
setTimeout(() => d.run(), 60);
// This will defer to 200ms
setTimeout(() => d.run(), 140);
// The will not defer, already scheduled at 200ms / maximum delay.
setTimeout(() => d.run(), 180);
// This schedules for 320ms
setTimeout(() => d.run(), 220);
// This will defer to 380ms
setTimeout(() => d.run(), 280);
return Promise.all([
d.checkAfter(180, 1),
d.checkAfter(220, 2),
d.checkAfter(360, 2),
d.checkAfter(400, 3),
d.checkAfter(500, 3)
]);
});